diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/Dimension.java b/src/main/java/de/bixilon/minosoft/game/datatypes/Dimension.java
deleted file mode 100644
index 84a6ec86a..000000000
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/Dimension.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Codename Minosoft
- * Copyright (C) 2020 Moritz Zwerger
- *
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with this program. If not, see .
- *
- * This software is not affiliated with Mojang AB, the original developer of Minecraft.
- */
-
-package de.bixilon.minosoft.game.datatypes;
-
-public enum Dimension {
- NETHER(-1),
- OVERWORLD(0),
- END(1);
-
- final int id;
-
- Dimension(int id) {
- this.id = id;
- }
-
- public static Dimension byId(int id) {
- for (Dimension g : values()) {
- if (g.getId() == id) {
- return g;
- }
- }
- return null;
- }
-
- public int getId() {
- return id;
- }
-}
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/LevelType.java b/src/main/java/de/bixilon/minosoft/game/datatypes/LevelType.java
index 57fb74cbe..97d24ac2b 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/LevelType.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/LevelType.java
@@ -20,7 +20,8 @@ public enum LevelType {
AMPLIFIED("amplified"),
DEFAULT_1_1("default_1_1"),
CUSTOMIZED("customized"),
- BUFFET("buffet");
+ BUFFET("buffet"),
+ UNKNOWN("unknown");
final String type;
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/TextComponent.java b/src/main/java/de/bixilon/minosoft/game/datatypes/TextComponent.java
index 67d884f54..b8ea72aa7 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/TextComponent.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/TextComponent.java
@@ -166,15 +166,13 @@ public class TextComponent {
if (json.has("extra")) {
JsonArray arr = json.getAsJsonArray("extra");
for (int i = 0; i < arr.size(); i++) {
- JsonObject object;
- try {
- object = arr.get(i).getAsJsonObject();
- } catch (Exception e) {
- // reset text
+ if (arr.get(i).isJsonPrimitive()) {
buffer.append(ChatAttributes.RESET);
+ buffer.append(" ");
buffer.append(arr.get(i).getAsString());
continue;
}
+ JsonObject object = arr.get(i).getAsJsonObject();
if (object.has("bold") && object.get("bold").getAsBoolean()) {
buffer.append(ChatAttributes.BOLD);
}
@@ -196,9 +194,22 @@ public class TextComponent {
buffer.append(object.get("text").getAsString());
}
buffer.append(ChatAttributes.RESET);
- return buffer.toString();
}
- return "";
+ if (json.has("with")) {
+ JsonArray arr = json.getAsJsonArray("with");
+ for (int i = 0; i < arr.size(); i++) {
+ if (arr.get(i).isJsonPrimitive()) {
+ buffer.append(ChatAttributes.RESET);
+ buffer.append(" ");
+ buffer.append(arr.get(i).getAsString());
+ continue;
+ }
+ JsonObject object = arr.get(i).getAsJsonObject();
+ buffer.append(object.get("text").getAsString());
+ }
+ buffer.append(ChatAttributes.RESET);
+ }
+ return buffer.toString();
}
@Override
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/Entity.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/Entity.java
index 35c5ebdf3..3b5143aed 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/Entity.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/Entity.java
@@ -95,8 +95,8 @@ public abstract class Entity implements EntityInterface {
this.pitch = pitch;
}
- public void setEquipment(InventorySlots.EntityInventory slot, Slot data) {
- equipment.put(slot, data);
+ public void setEquipment(HashMap slots) {
+ equipment.putAll(slots);
}
public Slot getEquipment(InventorySlots.EntityInventory slot) {
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/ObjectLoader.java b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/ObjectLoader.java
index 9a7cfc3a2..5a233e123 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/ObjectLoader.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/ObjectLoader.java
@@ -19,6 +19,7 @@ import de.bixilon.minosoft.game.datatypes.Mappings;
import de.bixilon.minosoft.game.datatypes.objectLoader.blockIds.BlockIds;
import de.bixilon.minosoft.game.datatypes.objectLoader.blocks.Block;
import de.bixilon.minosoft.game.datatypes.objectLoader.blocks.Blocks;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimensions;
import de.bixilon.minosoft.game.datatypes.objectLoader.effects.MobEffects;
import de.bixilon.minosoft.game.datatypes.objectLoader.enchantments.Enchantments;
import de.bixilon.minosoft.game.datatypes.objectLoader.entities.Entities;
@@ -60,6 +61,9 @@ public class ObjectLoader {
Motives.load(mod, modJSON.getAsJsonObject("motive").getAsJsonObject("entries"), version);
Particles.load(mod, modJSON.getAsJsonObject("particle_type").getAsJsonObject("entries"), version);
MobEffects.load(mod, modJSON.getAsJsonObject("mob_effect").getAsJsonObject("entries"), version);
+ if (modJSON.has("dimension_type")) {
+ Dimensions.load(mod, modJSON.getAsJsonObject("dimension_type").getAsJsonObject("entries"), version);
+ }
break;
case BLOCKS:
Blocks.load(mod, modJSON, version);
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimension.java b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimension.java
new file mode 100644
index 000000000..4c656990b
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimension.java
@@ -0,0 +1,60 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.game.datatypes.objectLoader.dimensions;
+
+public class Dimension {
+ final String mod;
+ final String identifier;
+ final boolean hasSkyLight;
+
+ public Dimension(String mod, String identifier, boolean hasSkyLight) {
+ this.mod = mod;
+ this.identifier = identifier;
+ this.hasSkyLight = hasSkyLight;
+ }
+
+ public String getMod() {
+ return mod;
+ }
+
+ public String getIdentifier() {
+ return identifier;
+ }
+
+ public boolean hasSkyLight() {
+ return hasSkyLight;
+ }
+
+ @Override
+ public String toString() {
+ return String.format("%s:%s", getMod(), getIdentifier());
+ }
+
+ @Override
+ public int hashCode() {
+ return mod.hashCode() * identifier.hashCode();
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (super.equals(obj)) {
+ return true;
+ }
+ if (hashCode() != obj.hashCode()) {
+ return false;
+ }
+ Dimension their = (Dimension) obj;
+ return getIdentifier().equals(their.getIdentifier()) && getMod().equals(their.getMod()) && hasSkyLight() == their.hasSkyLight();
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimensions.java b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimensions.java
new file mode 100644
index 000000000..427c4a747
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/dimensions/Dimensions.java
@@ -0,0 +1,66 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.game.datatypes.objectLoader.dimensions;
+
+import com.google.common.collect.HashBiMap;
+import com.google.gson.JsonObject;
+import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
+
+import java.util.HashMap;
+
+public class Dimensions {
+ static HashMap> dimensionIdMap = new HashMap<>(); // version -> (protocolId > Dimension)
+ static HashBiMap dimensionIdentifierMap = HashBiMap.create(); // Identifier, Dimension
+ static HashMap> customDimensionIdentifierMap = new HashMap<>(); // Mod -> (Identifier, Dimension): used > 1.16
+
+
+ public static Dimension byId(int protocolId, ProtocolVersion version) {
+ if (version.getVersionNumber() < ProtocolVersion.VERSION_1_12_2.getVersionNumber()) {
+ version = ProtocolVersion.VERSION_1_12_2;
+ }
+ return dimensionIdMap.get(version).get(protocolId);
+ }
+
+ public static Dimension byIdentifier(String identifier) {
+ String[] splitted = identifier.split(":", 2);
+ return byIdentifier(splitted[0], splitted[1]);
+ }
+
+ public static Dimension byIdentifier(String mod, String identifier) {
+ if (mod == "minecraft") {
+ return dimensionIdentifierMap.get(identifier);
+ }
+ if (customDimensionIdentifierMap.containsKey(mod)) {
+ return customDimensionIdentifierMap.get(mod).get(identifier);
+ }
+ return null;
+ }
+
+
+ public static void load(String mod, JsonObject json, ProtocolVersion version) {
+ HashBiMap versionIdMapping = HashBiMap.create();
+ for (String identifierName : json.keySet()) {
+ JsonObject identifierJSON = json.getAsJsonObject(identifierName);
+ Dimension dimension = new Dimension(mod, identifierName, identifierJSON.get("has_skylight").getAsBoolean());
+ if (identifierJSON.has("id")) {
+ versionIdMapping.put(identifierJSON.get("id").getAsInt(), dimension);
+ continue;
+ }
+ dimensionIdentifierMap.put(identifierName, dimension);
+ }
+ if (versionIdMapping.size() > 0) {
+ dimensionIdMap.put(version, versionIdMapping);
+ }
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/Recipe.java b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/Recipe.java
index 01be7110b..31dea8e67 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/Recipe.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/Recipe.java
@@ -48,6 +48,12 @@ public class Recipe {
this.result = result;
}
+ public Recipe(RecipeTypes type, Ingredient base, Ingredient addition, Slot result) {
+ this.type = type;
+ this.ingredients = new Ingredient[]{base, addition};
+ this.result = result;
+ }
+
public Recipe(RecipeTypes type, String group, Ingredient ingredient, Slot result, float experience, int cookingTime) {
this.type = type;
this.group = group;
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/RecipeTypes.java b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/RecipeTypes.java
index 9227d44c1..733ca58e9 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/RecipeTypes.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/objectLoader/recipes/RecipeTypes.java
@@ -34,7 +34,8 @@ public enum RecipeTypes {
BLASTING("blasting"),
SMOKING("smoking"),
CAMPFIRE("campfire_cooking"),
- STONE_CUTTING("stonecutting");
+ STONE_CUTTING("stonecutting"),
+ SMITHING("smithing");
final String name;
diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/world/World.java b/src/main/java/de/bixilon/minosoft/game/datatypes/world/World.java
index f42cf729c..460b31b2c 100644
--- a/src/main/java/de/bixilon/minosoft/game/datatypes/world/World.java
+++ b/src/main/java/de/bixilon/minosoft/game/datatypes/world/World.java
@@ -13,10 +13,10 @@
package de.bixilon.minosoft.game.datatypes.world;
-import de.bixilon.minosoft.game.datatypes.Dimension;
import de.bixilon.minosoft.game.datatypes.entities.Entity;
import de.bixilon.minosoft.game.datatypes.objectLoader.blocks.Block;
import de.bixilon.minosoft.game.datatypes.objectLoader.blocks.Blocks;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimension;
import de.bixilon.minosoft.nbt.tag.CompoundTag;
import java.util.HashMap;
diff --git a/src/main/java/de/bixilon/minosoft/protocol/network/Network.java b/src/main/java/de/bixilon/minosoft/protocol/network/Network.java
index 2c6f8711d..848b39b95 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/network/Network.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/network/Network.java
@@ -157,8 +157,9 @@ public class Network {
}
InPacketBuffer inPacketBuffer = new InPacketBuffer(data, connection.getVersion());
+ Packets.Clientbound p = null;
try {
- Packets.Clientbound p = connection.getVersion().getProtocol().getPacketByCommand(connection.getConnectionState(), inPacketBuffer.getCommand());
+ p = connection.getVersion().getProtocol().getPacketByCommand(connection.getConnectionState(), inPacketBuffer.getCommand());
Class extends ClientboundPacket> clazz = Protocol.getPacketByPacket(p);
if (clazz == null) {
@@ -195,7 +196,7 @@ public class Network {
e.printStackTrace();
}
} catch (Exception e) {
- Log.protocol(String.format("An error occurred while parsing an packet: %s", e));
+ Log.protocol(String.format("An error occurred while parsing an packet (%s): %s", p, e));
e.printStackTrace();
}
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockEntityMetadata.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockEntityMetadata.java
index 0822fe753..64676ffdf 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockEntityMetadata.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockEntityMetadata.java
@@ -35,12 +35,12 @@ public class PacketBlockEntityMetadata implements ClientboundPacket {
case VERSION_1_7_10:
position = buffer.readBlockPositionShort();
action = Actions.byId(buffer.readByte(), buffer.getVersion());
- nbt = buffer.readNBT(true);
+ nbt = (CompoundTag) buffer.readNBT(true);
return true;
default:
position = buffer.readPosition();
action = Actions.byId(buffer.readByte(), buffer.getVersion());
- nbt = buffer.readNBT();
+ nbt = (CompoundTag) buffer.readNBT();
return true;
}
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketChunkData.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketChunkData.java
index fba4cdc60..f767db491 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketChunkData.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketChunkData.java
@@ -13,7 +13,7 @@
package de.bixilon.minosoft.protocol.packets.clientbound.play;
-import de.bixilon.minosoft.game.datatypes.Dimension;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimension;
import de.bixilon.minosoft.game.datatypes.world.BlockPosition;
import de.bixilon.minosoft.game.datatypes.world.Chunk;
import de.bixilon.minosoft.game.datatypes.world.ChunkLocation;
@@ -43,7 +43,7 @@ public class PacketChunkData implements ClientboundPacket {
}
public boolean read(InPacketBuffer buffer, Dimension dimension) {
- boolean containsSkyLight = dimension == Dimension.OVERWORLD;
+ boolean containsSkyLight = dimension.hasSkyLight();
if (buffer.getVersion().getVersionNumber() <= ProtocolVersion.VERSION_1_7_10.getVersionNumber()) {
this.location = new ChunkLocation(buffer.readInt(), buffer.readInt());
boolean groundUpContinuous = buffer.readBoolean();
@@ -74,7 +74,7 @@ public class PacketChunkData implements ClientboundPacket {
}
short sectionBitMask = (short) buffer.readVarInt();
if (buffer.getVersion().getVersionNumber() >= ProtocolVersion.VERSION_1_14_4.getVersionNumber()) {
- heightMap = buffer.readNBT();
+ heightMap = (CompoundTag) buffer.readNBT();
}
if (groundUpContinuous) {
if (buffer.getVersion().getVersionNumber() >= ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
@@ -93,7 +93,7 @@ public class PacketChunkData implements ClientboundPacket {
}
int blockEntitiesCount = buffer.readVarInt();
for (int i = 0; i < blockEntitiesCount; i++) {
- CompoundTag tag = buffer.readNBT();
+ CompoundTag tag = (CompoundTag) buffer.readNBT();
blockEntities.put(new BlockPosition(tag.getIntTag("x").getValue(), (short) tag.getIntTag("y").getValue(), tag.getIntTag("z").getValue()), tag);
}
return true;
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketDeclareRecipes.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketDeclareRecipes.java
index cbc94fcdf..cebcf13e9 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketDeclareRecipes.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketDeclareRecipes.java
@@ -79,6 +79,13 @@ public class PacketDeclareRecipes implements ClientboundPacket {
recipe = new Recipe(type, group, ingredient, result);
break;
}
+ case SMITHING: {
+ Ingredient base = buffer.readIngredient();
+ Ingredient addition = buffer.readIngredient();
+ Slot result = buffer.readSlot();
+ recipe = new Recipe(type, base, addition, result);
+ break;
+ }
default:
recipe = new Recipe(type);
break;
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketEntityEquipment.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketEntityEquipment.java
index 41a116295..4e9265f75 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketEntityEquipment.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketEntityEquipment.java
@@ -19,41 +19,53 @@ import de.bixilon.minosoft.logging.Log;
import de.bixilon.minosoft.protocol.packets.ClientboundPacket;
import de.bixilon.minosoft.protocol.protocol.InByteBuffer;
import de.bixilon.minosoft.protocol.protocol.PacketHandler;
+import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
+
+import java.util.HashMap;
+import java.util.Map;
public class PacketEntityEquipment implements ClientboundPacket {
int entityId;
- InventorySlots.EntityInventory slot;
- Slot data;
+ HashMap slots = new HashMap<>();
@Override
public boolean read(InByteBuffer buffer) {
- switch (buffer.getVersion()) {
- case VERSION_1_7_10:
- entityId = buffer.readInt();
- this.slot = InventorySlots.EntityInventory.byId(buffer.readShort(), buffer.getVersion());
- this.data = buffer.readSlot();
- return true;
- case VERSION_1_8:
- entityId = buffer.readVarInt();
- this.slot = InventorySlots.EntityInventory.byId(buffer.readShort(), buffer.getVersion());
- this.data = buffer.readSlot();
- return true;
- default:
- entityId = buffer.readVarInt();
- this.slot = InventorySlots.EntityInventory.byId(buffer.readVarInt(), buffer.getVersion());
- this.data = buffer.readSlot();
- return true;
+ if (buffer.getVersion() == ProtocolVersion.VERSION_1_7_10) {
+ entityId = buffer.readInt();
+ slots.put(InventorySlots.EntityInventory.byId(buffer.readShort(), buffer.getVersion()), buffer.readSlot());
+ return true;
}
+ if (buffer.getVersion() == ProtocolVersion.VERSION_1_8) {
+ entityId = buffer.readVarInt();
+ slots.put(InventorySlots.EntityInventory.byId(buffer.readShort(), buffer.getVersion()), buffer.readSlot());
+ return true;
+ }
+ if (buffer.getVersion().getVersionNumber() < ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
+ entityId = buffer.readVarInt();
+ slots.put(InventorySlots.EntityInventory.byId(buffer.readVarInt(), buffer.getVersion()), buffer.readSlot());
+ return true;
+ }
+ entityId = buffer.readVarInt();
+ boolean slotAvailable = true;
+ while (slotAvailable) {
+ int slotId = buffer.readByte();
+ if (slotId >= 0) {
+ slotAvailable = false;
+ }
+ slotId &= 0x7F;
+ slots.put(InventorySlots.EntityInventory.byId(slotId, buffer.getVersion()), buffer.readSlot());
+ }
+ return true;
}
@Override
public void log() {
- if (data != null) {
- Log.protocol(String.format("Entity equipment changed (entityId=%d, slot=%s): %dx %s", entityId, slot, data.getItemCount(), data.getDisplayName()));
+ if (slots.size() == 1) {
+ Map.Entry set = slots.entrySet().iterator().next();
+ Log.protocol(String.format("Entity equipment changed (entityId=%d, slot=%s): %dx %s", entityId, set.getKey(), set.getValue().getItemCount(), set.getValue().getDisplayName()));
} else {
- // null means nothing, means air
- Log.protocol(String.format("Entity equipment changed (entityId=%d, slot=%s): AIR", entityId, slot));
+ Log.protocol(String.format("Entity equipment changed (entityId=%d, slotCount=%d)", entityId, slots.size()));
}
}
@@ -66,11 +78,7 @@ public class PacketEntityEquipment implements ClientboundPacket {
return entityId;
}
- public InventorySlots.EntityInventory getSlot() {
- return slot;
- }
-
- public Slot getData() {
- return data;
+ public HashMap getSlots() {
+ return slots;
}
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketJoinGame.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketJoinGame.java
index d2102dbde..d7ba6c3f7 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketJoinGame.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketJoinGame.java
@@ -14,16 +14,22 @@
package de.bixilon.minosoft.protocol.packets.clientbound.play;
import de.bixilon.minosoft.game.datatypes.Difficulty;
-import de.bixilon.minosoft.game.datatypes.Dimension;
import de.bixilon.minosoft.game.datatypes.GameMode;
import de.bixilon.minosoft.game.datatypes.LevelType;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimension;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimensions;
import de.bixilon.minosoft.logging.Log;
+import de.bixilon.minosoft.nbt.tag.CompoundTag;
+import de.bixilon.minosoft.nbt.tag.ListTag;
+import de.bixilon.minosoft.nbt.tag.NBTTag;
import de.bixilon.minosoft.protocol.packets.ClientboundPacket;
import de.bixilon.minosoft.protocol.protocol.InByteBuffer;
import de.bixilon.minosoft.protocol.protocol.PacketHandler;
import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
import de.bixilon.minosoft.util.BitByte;
+import java.util.HashMap;
+
public class PacketJoinGame implements ClientboundPacket {
int entityId;
boolean hardcore;
@@ -35,7 +41,7 @@ public class PacketJoinGame implements ClientboundPacket {
LevelType levelType;
boolean reducedDebugScreen;
boolean enableRespawnScreen = true;
-
+ HashMap> dimensions;
@Override
public boolean read(InByteBuffer buffer) {
@@ -49,7 +55,7 @@ public class PacketJoinGame implements ClientboundPacket {
gameModeRaw &= ~0x8;
gameMode = GameMode.byId(gameModeRaw);
- dimension = Dimension.byId(buffer.readByte());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
difficulty = Difficulty.byId(buffer.readByte());
maxPlayers = buffer.readByte();
levelType = LevelType.byType(buffer.readString());
@@ -72,7 +78,7 @@ public class PacketJoinGame implements ClientboundPacket {
gameModeRaw &= ~0x8;
gameMode = GameMode.byId(gameModeRaw);
- dimension = Dimension.byId(buffer.readInt());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
difficulty = Difficulty.byId(buffer.readByte());
maxPlayers = buffer.readByte();
levelType = LevelType.byType(buffer.readString());
@@ -87,7 +93,7 @@ public class PacketJoinGame implements ClientboundPacket {
gameModeRaw &= ~0x8;
gameMode = GameMode.byId(gameModeRaw);
- dimension = Dimension.byId(buffer.readInt());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
maxPlayers = buffer.readByte();
levelType = LevelType.byType(buffer.readString());
viewDistance = buffer.readVarInt();
@@ -102,7 +108,7 @@ public class PacketJoinGame implements ClientboundPacket {
gameModeRaw &= ~0x8;
gameMode = GameMode.byId(gameModeRaw);
- dimension = Dimension.byId(buffer.readInt());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
long hashedSeed = buffer.readLong();
maxPlayers = buffer.readByte();
levelType = LevelType.byType(buffer.readString());
@@ -111,9 +117,31 @@ public class PacketJoinGame implements ClientboundPacket {
enableRespawnScreen = buffer.readBoolean();
return true;
}
+ default: {
+ this.entityId = buffer.readInt();
+ hardcore = buffer.readBoolean();
+ gameMode = GameMode.byId(buffer.readByte());
+ buffer.readByte(); // previous game mode
+ // worlds
+ String[] worlds = buffer.readStringArray(buffer.readVarInt());
+ NBTTag dimensionCodec = buffer.readNBT();
+ dimensions = parseDimensionCodec(dimensionCodec);
+ String[] currentDimensionSplit = buffer.readString().split(":", 2);
+ dimension = dimensions.get(currentDimensionSplit[0]).get(currentDimensionSplit[1]);
+ buffer.readString(); // world name
+ long hashedSeed = buffer.readLong();
+ maxPlayers = buffer.readByte();
+ levelType = LevelType.UNKNOWN;
+ viewDistance = buffer.readVarInt();
+ reducedDebugScreen = buffer.readBoolean();
+ enableRespawnScreen = buffer.readBoolean();
+ boolean isDebug = buffer.readBoolean();
+ if (buffer.readBoolean()) {
+ levelType = LevelType.FLAT;
+ }
+ return true;
+ }
}
-
- return false;
}
@Override
@@ -126,6 +154,21 @@ public class PacketJoinGame implements ClientboundPacket {
h.handle(this);
}
+ private HashMap> parseDimensionCodec(NBTTag nbt) {
+ HashMap> dimensionMap = new HashMap<>();
+ ListTag listTag = ((CompoundTag) nbt).getCompoundTag("minecraft:dimension_type").getListTag("value");
+
+ for (NBTTag tag : listTag.getValue()) {
+ CompoundTag compoundTag = (CompoundTag) tag;
+ String[] name = compoundTag.getStringTag("name").getValue().split(":", 2);
+ if (!dimensionMap.containsKey(name[0])) {
+ dimensionMap.put(name[0], new HashMap<>());
+ }
+ dimensionMap.get(name[0]).put(name[1], new Dimension(name[0], name[1], compoundTag.getByteTag("has_skylight").getValue() == 0x01));
+ }
+ return dimensionMap;
+ }
+
public boolean isHardcore() {
return hardcore;
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketNBTQueryResponse.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketNBTQueryResponse.java
index 285658afa..f5c37a2e0 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketNBTQueryResponse.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketNBTQueryResponse.java
@@ -27,7 +27,7 @@ public class PacketNBTQueryResponse implements ClientboundPacket {
@Override
public boolean read(InByteBuffer buffer) {
transactionId = buffer.readVarInt();
- tag = buffer.readNBT();
+ tag = (CompoundTag) buffer.readNBT();
return true;
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketRespawn.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketRespawn.java
index f5beb553d..7bd82693f 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketRespawn.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketRespawn.java
@@ -14,9 +14,10 @@
package de.bixilon.minosoft.protocol.packets.clientbound.play;
import de.bixilon.minosoft.game.datatypes.Difficulty;
-import de.bixilon.minosoft.game.datatypes.Dimension;
import de.bixilon.minosoft.game.datatypes.GameMode;
import de.bixilon.minosoft.game.datatypes.LevelType;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimension;
+import de.bixilon.minosoft.game.datatypes.objectLoader.dimensions.Dimensions;
import de.bixilon.minosoft.logging.Log;
import de.bixilon.minosoft.protocol.packets.ClientboundPacket;
import de.bixilon.minosoft.protocol.protocol.InByteBuffer;
@@ -27,7 +28,10 @@ public class PacketRespawn implements ClientboundPacket {
Difficulty difficulty;
GameMode gameMode;
LevelType levelType;
-
+ long hashedSeed;
+ boolean isDebug = false;
+ boolean isFlat = false;
+ boolean copyMetaData = false;
@Override
public boolean read(InByteBuffer buffer) {
@@ -39,21 +43,31 @@ public class PacketRespawn implements ClientboundPacket {
case VERSION_1_11_2:
case VERSION_1_12_2:
case VERSION_1_13_2:
- dimension = Dimension.byId(buffer.readInt());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
difficulty = Difficulty.byId(buffer.readByte());
gameMode = GameMode.byId(buffer.readByte());
levelType = LevelType.byType(buffer.readString());
return true;
case VERSION_1_14_4:
- dimension = Dimension.byId(buffer.readInt());
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
+ gameMode = GameMode.byId(buffer.readByte());
+ levelType = LevelType.byType(buffer.readString());
+ return true;
+ case VERSION_1_15_2:
+ dimension = Dimensions.byId(buffer.readInt(), buffer.getVersion());
+ hashedSeed = buffer.readLong();
gameMode = GameMode.byId(buffer.readByte());
levelType = LevelType.byType(buffer.readString());
return true;
default:
- dimension = Dimension.byId(buffer.readInt());
- long hashedSeed = buffer.readLong();
+ dimension = Dimensions.byIdentifier(buffer.readString());
+ buffer.readString(); // world
+ hashedSeed = buffer.readLong();
gameMode = GameMode.byId(buffer.readByte());
- levelType = LevelType.byType(buffer.readString());
+ buffer.readByte(); // previous game mode
+ isDebug = buffer.readBoolean();
+ isFlat = buffer.readBoolean();
+ copyMetaData = buffer.readBoolean();
return true;
}
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketUnlockRecipes.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketUnlockRecipes.java
index db8b11950..199261465 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketUnlockRecipes.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketUnlockRecipes.java
@@ -19,13 +19,18 @@ import de.bixilon.minosoft.logging.Log;
import de.bixilon.minosoft.protocol.packets.ClientboundPacket;
import de.bixilon.minosoft.protocol.protocol.InByteBuffer;
import de.bixilon.minosoft.protocol.protocol.PacketHandler;
+import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
public class PacketUnlockRecipes implements ClientboundPacket {
UnlockRecipeActions action;
boolean isCraftingBookOpen;
- boolean isSmeltingBookOpen;
+ boolean isSmeltingBookOpen = false;
+ boolean isBlastFurnaceBookOpen = false;
+ boolean isSmokerBookOpen = false;
boolean isCraftingFilteringActive;
- boolean isSmeltingFilteringActive;
+ boolean isSmeltingFilteringActive = false;
+ boolean isBlastFurnaceFilteringActive = false;
+ boolean isSmokerFilteringActive = false;
Recipe[] listed;
Recipe[] tagged;
@@ -54,6 +59,12 @@ public class PacketUnlockRecipes implements ClientboundPacket {
isCraftingFilteringActive = buffer.readBoolean();
isSmeltingBookOpen = buffer.readBoolean();
isSmeltingFilteringActive = buffer.readBoolean();
+ if (buffer.getVersion().getVersionNumber() >= ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
+ isBlastFurnaceBookOpen = buffer.readBoolean();
+ isBlastFurnaceFilteringActive = buffer.readBoolean();
+ isSmokerBookOpen = buffer.readBoolean();
+ isSmokerFilteringActive = buffer.readBoolean();
+ }
listed = new Recipe[buffer.readVarInt()];
for (int i = 0; i < listed.length; i++) {
listed[i] = Recipes.getRecipe(buffer.readString());
@@ -86,6 +97,30 @@ public class PacketUnlockRecipes implements ClientboundPacket {
return isCraftingFilteringActive;
}
+ public boolean isBlastFurnaceBookOpen() {
+ return isBlastFurnaceBookOpen;
+ }
+
+ public boolean isBlastFurnaceFilteringActive() {
+ return isBlastFurnaceFilteringActive;
+ }
+
+ public boolean isSmeltingBookOpen() {
+ return isSmeltingBookOpen;
+ }
+
+ public boolean isSmeltingFilteringActive() {
+ return isSmeltingFilteringActive;
+ }
+
+ public boolean isSmokerBookOpen() {
+ return isSmokerBookOpen;
+ }
+
+ public boolean isSmokerFilteringActive() {
+ return isSmokerFilteringActive;
+ }
+
public Recipe[] getListed() {
return listed;
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketGenerateStructure.java b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketGenerateStructure.java
new file mode 100644
index 000000000..ce82cfe8f
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketGenerateStructure.java
@@ -0,0 +1,48 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.protocol.packets.serverbound.play;
+
+import de.bixilon.minosoft.game.datatypes.world.BlockPosition;
+import de.bixilon.minosoft.logging.Log;
+import de.bixilon.minosoft.protocol.packets.ServerboundPacket;
+import de.bixilon.minosoft.protocol.protocol.OutPacketBuffer;
+import de.bixilon.minosoft.protocol.protocol.Packets;
+import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
+
+public class PacketGenerateStructure implements ServerboundPacket {
+ final BlockPosition position;
+ final int levels;
+ final boolean keepJigsaw;
+
+ public PacketGenerateStructure(BlockPosition position, int levels, boolean keepJigsaw) {
+ this.position = position;
+ this.levels = levels;
+ this.keepJigsaw = keepJigsaw;
+ }
+
+
+ @Override
+ public OutPacketBuffer write(ProtocolVersion version) {
+ OutPacketBuffer buffer = new OutPacketBuffer(version, version.getPacketCommand(Packets.Serverbound.PLAY_GENERATE_STRUCTURE));
+ buffer.writePosition(position);
+ buffer.writeVarInt(levels);
+ buffer.writeBoolean(keepJigsaw);
+ return buffer;
+ }
+
+ @Override
+ public void log() {
+ Log.protocol(String.format("Sending generate structure packet (position=%s, levels=%d, keepJigsaw=%s)", position, levels, keepJigsaw));
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketInteractEntity.java b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketInteractEntity.java
index 5bed9731c..9385aed1c 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketInteractEntity.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketInteractEntity.java
@@ -28,6 +28,7 @@ public class PacketInteractEntity implements ServerboundPacket {
final Location location;
final Hand hand;
+ boolean sneaking;
public PacketInteractEntity(Entity entity, Click click) {
this.entityId = entity.getEntityId();
@@ -57,6 +58,14 @@ public class PacketInteractEntity implements ServerboundPacket {
this.hand = hand;
}
+ public PacketInteractEntity(int entityId, Click click, Location location, Hand hand, boolean sneaking) {
+ this.entityId = entityId;
+ this.click = click;
+ this.location = location;
+ this.hand = hand;
+ this.sneaking = sneaking;
+ }
+
@Override
public OutPacketBuffer write(ProtocolVersion version) {
@@ -86,6 +95,9 @@ public class PacketInteractEntity implements ServerboundPacket {
buffer.writeFloat((float) location.getZ());
buffer.writeVarInt(hand.getId());
}
+ if (version.getVersionNumber() >= ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
+ buffer.writeBoolean(sneaking);
+ }
break;
}
return buffer;
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketPlayerAbilitiesSending.java b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketPlayerAbilitiesSending.java
index 4dda82aa9..95361ea31 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketPlayerAbilitiesSending.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketPlayerAbilitiesSending.java
@@ -30,14 +30,16 @@ public class PacketPlayerAbilitiesSending implements ServerboundPacket {
@Override
public OutPacketBuffer write(ProtocolVersion version) {
OutPacketBuffer buffer = new OutPacketBuffer(version, version.getPacketCommand(Packets.Serverbound.PLAY_PLAYER_ABILITIES));
- // only fly matters, everything else ignored
byte flags = 0;
if (flying) {
flags |= 0b10;
}
buffer.writeByte(flags);
- buffer.writeFloat(0.0F);
- buffer.writeFloat(0.0F);
+ if (version.getVersionNumber() < ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
+ // only fly matters, everything else ignored
+ buffer.writeFloat(0.0F);
+ buffer.writeFloat(0.0F);
+ }
return buffer;
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketSetDisplayedRecipe.java b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketSetDisplayedRecipe.java
new file mode 100644
index 000000000..760eb3520
--- /dev/null
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketSetDisplayedRecipe.java
@@ -0,0 +1,41 @@
+/*
+ * Codename Minosoft
+ * Copyright (C) 2020 Moritz Zwerger
+ *
+ * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with this program. If not, see .
+ *
+ * This software is not affiliated with Mojang AB, the original developer of Minecraft.
+ */
+
+package de.bixilon.minosoft.protocol.packets.serverbound.play;
+
+import de.bixilon.minosoft.game.datatypes.objectLoader.recipes.Recipe;
+import de.bixilon.minosoft.logging.Log;
+import de.bixilon.minosoft.protocol.packets.ServerboundPacket;
+import de.bixilon.minosoft.protocol.protocol.OutPacketBuffer;
+import de.bixilon.minosoft.protocol.protocol.Packets;
+import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
+
+public class PacketSetDisplayedRecipe implements ServerboundPacket {
+ final Recipe recipe;
+
+ public PacketSetDisplayedRecipe(Recipe recipe) {
+ this.recipe = recipe;
+ }
+
+ @Override
+ public OutPacketBuffer write(ProtocolVersion version) {
+ OutPacketBuffer buffer = new OutPacketBuffer(version, version.getPacketCommand(Packets.Serverbound.PLAY_SET_DISPLAYED_RECIPE));
+ buffer.writeString(recipe.getResult().getItem().getMod() + ":" + recipe.getResult().getItem().getIdentifier());
+ return buffer;
+ }
+
+ @Override
+ public void log() {
+ Log.protocol(String.format("Sending set displayed recipe packet (identifier=%s:%s)", recipe.getResult().getItem().getMod(), recipe.getResult().getItem().getIdentifier()));
+ }
+}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketUpdateJigsawBlock.java b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketUpdateJigsawBlock.java
index 72e1df9b0..0705a18f3 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketUpdateJigsawBlock.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/packets/serverbound/play/PacketUpdateJigsawBlock.java
@@ -22,9 +22,12 @@ import de.bixilon.minosoft.protocol.protocol.ProtocolVersion;
public class PacketUpdateJigsawBlock implements ServerboundPacket {
final BlockPosition position;
- final String attachmentType;
+ String attachmentType;
final String targetPool;
final String finalState;
+ String name;
+ String target;
+ String jointType;
public PacketUpdateJigsawBlock(BlockPosition position, String attachmentType, String targetPool, String finalState) {
this.position = position;
@@ -34,10 +37,31 @@ public class PacketUpdateJigsawBlock implements ServerboundPacket {
}
+ public PacketUpdateJigsawBlock(BlockPosition position, String name, String target, String targetPool, String finalState, String jointType) {
+ this.position = position;
+ this.name = name;
+ this.target = target;
+ this.targetPool = targetPool;
+ this.finalState = finalState;
+ this.jointType = jointType;
+ }
+
+
@Override
public OutPacketBuffer write(ProtocolVersion version) {
OutPacketBuffer buffer = new OutPacketBuffer(version, version.getPacketCommand(Packets.Serverbound.PLAY_UPDATE_JIGSAW_BLOCK));
buffer.writePosition(position);
+ if (version.getVersionNumber() < ProtocolVersion.VERSION_1_16_2.getVersionNumber()) {
+ buffer.writeString(attachmentType);
+ buffer.writeString(targetPool);
+ buffer.writeString(finalState);
+ return buffer;
+ }
+ buffer.writeString(name);
+ buffer.writeString(target);
+ buffer.writeString(targetPool);
+ buffer.writeString(finalState);
+ buffer.writeString(jointType);
return buffer;
}
diff --git a/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java b/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java
index 6f1a6bdd7..c28271211 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java
@@ -286,7 +286,7 @@ public class InByteBuffer {
// shouldn't be a subtag
return new CompoundTag(false, this);
}
- return readNBT();
+ return readNBT(type);
}
public NBTTag readNBT(TagTypes tagType) {
diff --git a/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java b/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java
index debca8d11..fbb2270b1 100644
--- a/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java
+++ b/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java
@@ -182,6 +182,10 @@ public class PacketHandler {
connection.getPlayer().setFood(pkg.getFood());
connection.getPlayer().setHealth(pkg.getHealth());
connection.getPlayer().setSaturation(pkg.getSaturation());
+ if (pkg.getHealth() <= 0.0F) {
+ // do respawn
+ connection.getSender().respawn();
+ }
}
public void handle(PacketPluginMessageReceiving pkg) {
@@ -286,7 +290,7 @@ public class PacketHandler {
}
public void handle(PacketEntityEquipment pkg) {
- connection.getPlayer().getWorld().getEntity(pkg.getEntityId()).setEquipment(pkg.getSlot(), pkg.getData());
+ connection.getPlayer().getWorld().getEntity(pkg.getEntityId()).setEquipment(pkg.getSlots());
}
public void handle(PacketBlockChange pkg) {
@@ -303,6 +307,8 @@ public class PacketHandler {
}
public void handle(PacketRespawn pkg) {
+ // clear all chunks
+ connection.getPlayer().getWorld().getAllChunks().clear();
connection.getPlayer().getWorld().setDimension(pkg.getDimension());
connection.getPlayer().setSpawnConfirmed(false);
connection.getPlayer().setGameMode(pkg.getGameMode());
diff --git a/src/main/resources/assets/mapping/1.12.2/registries.json b/src/main/resources/assets/mapping/1.12.2/registries.json
index 8f116e676..25b17af1a 100644
--- a/src/main/resources/assets/mapping/1.12.2/registries.json
+++ b/src/main/resources/assets/mapping/1.12.2/registries.json
@@ -1 +1 @@
-{"minecraft":{"item":{"default":"air","id":5,"entries":{"yellow_glazed_terracotta":{"id":239},"yellow_wool":{"meta":4,"id":35},"iron_leggings":{"id":308},"ghast_spawn_egg":{"meta":56,"id":383},"name_tag":{"id":421},"pig_spawn_egg":{"meta":90,"id":383},"chainmail_helmet":{"id":302},"compass":{"id":345},"gray_bed":{"meta":7,"id":355},"golden_horse_armor":{"id":418},"brown_concrete_powder":{"meta":12,"id":252},"acacia_fence_gate":{"id":187},"golden_hoe":{"id":294},"red_sand":{"meta":1,"id":12},"stone_shovel":{"id":273},"jungle_slab":{"meta":3,"id":126},"beetroot":{"id":434},"chainmail_leggings":{"id":304},"cow_spawn_egg":{"meta":92,"id":383},"oak_button":{"id":143},"saddle":{"id":329},"sunflower":{"id":175},"cake":{"id":354},"fire":{"id":51},"stone_bricks":{"id":98},"lily_pad":{"id":111},"enchanting_table":{"id":116},"apple":{"id":260},"observer":{"id":218},"pink_wool":{"meta":6,"id":35},"cobblestone_stairs":{"id":67},"light_gray_shulker_box":{"id":227},"stone":{"id":1},"poppy":{"id":38},"white_shulker_box":{"id":219},"redstone_ore":{"id":73},"green_banner":{"meta":2,"id":425},"jungle_sapling":{"meta":3,"id":6},"orange_stained_glass_pane":{"meta":1,"id":160},"melon_seeds":{"id":362},"cooked_chicken":{"id":366},"endermite_spawn_egg":{"meta":67,"id":383},"light_blue_stained_glass":{"meta":3,"id":95},"birch_door":{"id":428},"polar_bear_spawn_egg":{"meta":102,"id":383},"leather_leggings":{"id":300},"iron_sword":{"id":267},"filled_map":{"id":358},"jungle_fence_gate":{"id":185},"oak_slab":{"id":126},"golden_carrot":{"id":396},"lime_shulker_box":{"id":224},"firework_star":{"id":402},"dark_prismarine":{"meta":2,"id":168},"spruce_slab":{"meta":1,"id":126},"beacon":{"id":138},"written_book":{"id":387},"quartz":{"id":406},"white_terracotta":{"id":159},"golden_shovel":{"id":284},"peony":{"meta":5,"id":175},"green_carpet":{"meta":13,"id":171},"sea_lantern":{"id":169},"potion{Potion":{"meta":64,"id":373},"zombie_head":{"meta":2,"id":397},"rabbit_stew":{"id":413},"tipped_arrow":{"id":440},"ghast_tear":{"id":370},"skeleton_skull":{"id":397},"mossy_cobblestone_wall":{"meta":1,"id":139},"pumpkin_seeds":{"id":361},"white_wool":{"id":35},"squid_spawn_egg":{"meta":94,"id":383},"gray_banner":{"meta":8,"id":425},"purple_stained_glass":{"meta":10,"id":95},"blue_stained_glass_pane":{"meta":11,"id":160},"golden_apple":{"id":322},"cooked_mutton":{"id":424},"end_rod":{"id":198},"chiseled_quartz_block":{"meta":1,"id":155},"allium":{"meta":2,"id":38},"magenta_wool":{"meta":2,"id":35},"prismarine_bricks":{"meta":1,"id":168},"chainmail_chestplate":{"id":303},"crafting_table":{"id":58},"lever":{"id":69},"cyan_dye":{"meta":6,"id":351},"mossy_stone_bricks":{"meta":1,"id":98},"green_shulker_box":{"id":232},"blaze_powder":{"id":377},"tnt":{"id":46},"black_carpet":{"meta":15,"id":171},"golden_boots":{"id":317},"magenta_dye":{"meta":13,"id":351},"gray_terracotta":{"meta":7,"id":159},"white_carpet":{"id":171},"creeper_head":{"meta":4,"id":397},"end_stone_bricks":{"id":206},"sandstone_slab":{"meta":1,"id":44},"iron_horse_armor":{"id":417},"jungle_fence":{"id":190},"arrow":{"id":262},"chest_minecart":{"id":342},"red_carpet":{"meta":14,"id":171},"red_sandstone":{"id":179},"dark_oak_leaves":{"meta":1,"id":161},"dark_oak_slab":{"meta":5,"id":126},"wooden_hoe":{"id":290},"light_blue_dye":{"meta":12,"id":351},"pumpkin":{"id":86},"oak_sapling":{"id":6},"iron_axe":{"id":258},"wither_skeleton_skull":{"meta":1,"id":397},"light_weighted_pressure_plate":{"id":147},"bookshelf":{"id":47},"blue_stained_glass":{"meta":11,"id":95},"orange_glazed_terracotta":{"id":236},"stone_sword":{"id":272},"end_portal_frame":{"id":120},"purpur_stairs":{"id":203},"magma_block":{"id":213},"cobblestone_slab":{"meta":3,"id":44},"red_nether_bricks":{"id":215},"magma_cream":{"id":378},"lime_dye":{"meta":10,"id":351},"terracotta":{"id":172},"coal":{"id":263},"zombie_villager_spawn_egg":{"meta":27,"id":383},"wall_sign":{"id":68},"chiseled_red_sandstone":{"meta":1,"id":179},"leather_chestplate":{"id":299},"repeating_command_block":{"id":210},"dirt":{"id":3},"green_concrete_powder":{"meta":13,"id":252},"brown_stained_glass":{"meta":12,"id":95},"stray_spawn_egg":{"meta":6,"id":383},"witch_spawn_egg":{"meta":66,"id":383},"glass":{"id":20},"armor_stand":{"id":416},"cyan_carpet":{"meta":9,"id":171},"pink_concrete_powder":{"meta":6,"id":252},"popped_chorus_fruit":{"id":433},"oak_planks":{"id":5},"orange_wool":{"meta":1,"id":35},"cut_sandstone":{"meta":2,"id":24},"golden_leggings":{"id":316},"green_stained_glass_pane":{"meta":13,"id":160},"pufferfish":{"meta":3,"id":349},"evoker_spawn_egg":{"meta":34,"id":383},"spruce_leaves":{"meta":1,"id":18},"black_terracotta":{"meta":15,"id":159},"porkchop":{"id":319},"end_stone":{"id":121},"stick":{"id":280},"jungle_log":{"meta":3,"id":17},"wither_skeleton_spawn_egg":{"meta":5,"id":383},"yellow_terracotta":{"meta":4,"id":159},"piston":{"id":33},"purple_bed":{"meta":10,"id":355},"ink_sac":{"id":351},"orange_dye":{"meta":14,"id":351},"red_sandstone_stairs":{"id":180},"chicken":{"id":365},"magenta_shulker_box":{"id":221},"iron_ore":{"id":15},"yellow_bed":{"meta":4,"id":355},"netherrack":{"id":87},"nether_brick_slab":{"meta":6,"id":44},"prismarine_crystals":{"id":410},"oak_log":{"id":17},"redstone_torch":{"id":76},"diamond_hoe":{"id":293},"yellow_shulker_box":{"id":223},"magenta_banner":{"meta":13,"id":425},"cave_spider_spawn_egg":{"meta":59,"id":383},"jungle_boat":{"id":446},"gray_stained_glass_pane":{"meta":7,"id":160},"purple_carpet":{"meta":10,"id":171},"blue_concrete_powder":{"meta":11,"id":252},"mossy_cobblestone":{"id":48},"furnace":{"id":61},"orange_banner":{"meta":14,"id":425},"iron_trapdoor":{"id":167},"bone_meal":{"meta":15,"id":351},"lime_wool":{"meta":5,"id":35},"white_stained_glass_pane":{"id":160},"bricks":{"id":45},"brewing_stand":{"id":379},"golden_axe":{"id":286},"prismarine_shard":{"id":409},"magma_cube_spawn_egg":{"meta":62,"id":383},"barrier":{"id":166},"red_sandstone_slab":{"id":182},"spruce_fence":{"id":188},"dark_oak_door":{"id":431},"spruce_sapling":{"meta":1,"id":6},"cooked_beef":{"id":364},"magenta_carpet":{"meta":2,"id":171},"pink_stained_glass_pane":{"meta":6,"id":160},"acacia_log":{"id":162},"ladder":{"id":65},"jungle_planks":{"meta":3,"id":5},"item_frame":{"id":389},"slime_block":{"id":165},"bat_spawn_egg":{"meta":65,"id":383},"rail":{"id":66},"jungle_stairs":{"id":136},"minecart":{"id":328},"clay_ball":{"id":337},"sugar":{"id":353},"lapis_block":{"id":22},"prismarine":{"id":168},"iron_block":{"id":42},"purple_shulker_box":{"id":229},"spruce_boat":{"id":444},"paper":{"id":339},"end_gateway":{"id":209},"spider_spawn_egg":{"meta":52,"id":383},"brick_slab":{"meta":4,"id":44},"gravel":{"id":13},"music_disc_strad":{"id":2264},"light_gray_stained_glass_pane":{"meta":8,"id":160},"light_gray_concrete_powder":{"meta":8,"id":252},"vine":{"id":106},"red_mushroom_block":{"id":100},"pink_tulip":{"meta":7,"id":38},"vex_spawn_egg":{"meta":35,"id":383},"lime_banner":{"meta":10,"id":425},"golden_pickaxe":{"id":285},"light_blue_shulker_box":{"id":222},"orange_terracotta":{"meta":1,"id":159},"pink_stained_glass":{"meta":6,"id":95},"black_concrete":{"meta":15,"id":251},"dark_oak_sapling":{"meta":5,"id":6},"piston_head":{"id":34},"black_wool":{"meta":15,"id":35},"rabbit_spawn_egg":{"meta":101,"id":383},"wooden_shovel":{"id":269},"light_gray_carpet":{"meta":8,"id":171},"trapped_chest":{"id":146},"hopper_minecart":{"id":408},"dropper":{"id":158},"pink_bed":{"meta":6,"id":355},"fire_charge":{"id":385},"music_disc_cat":{"id":2257},"potatoes":{"id":142},"coarse_dirt":{"meta":1,"id":3},"spruce_log":{"meta":1,"id":17},"dark_oak_log":{"meta":1,"id":162},"chest":{"id":54},"brown_mushroom":{"id":39},"cyan_glazed_terracotta":{"id":244},"cauldron":{"id":380},"infested_stone_bricks":{"meta":2,"id":97},"painting":{"id":321},"chiseled_sandstone":{"meta":1,"id":24},"dark_oak_fence_gate":{"id":186},"polished_granite":{"meta":2,"id":1},"dark_oak_stairs":{"id":164},"glistering_melon_slice":{"id":382},"dispenser":{"id":23},"lime_stained_glass_pane":{"meta":5,"id":160},"light_gray_concrete":{"meta":8,"id":251},"grass_block":{"id":2},"acacia_sapling":{"meta":4,"id":6},"infested_cobblestone":{"meta":1,"id":97},"green_terracotta":{"meta":13,"id":159},"magenta_concrete_powder":{"meta":2,"id":252},"red_banner":{"meta":1,"id":425},"water":{"id":9},"iron_ingot":{"id":265},"tnt_minecart":{"id":407},"rotten_flesh":{"id":367},"iron_hoe":{"id":292},"polished_andesite":{"meta":6,"id":1},"acacia_leaves":{"id":161},"acacia_door":{"id":430},"flower_pot":{"id":390},"brick_stairs":{"id":108},"wet_sponge":{"meta":1,"id":19},"rose_red":{"meta":1,"id":351},"cracked_stone_bricks":{"meta":2,"id":98},"quartz_slab":{"meta":7,"id":44},"lime_carpet":{"meta":5,"id":171},"yellow_carpet":{"meta":4,"id":171},"leather_boots":{"id":301},"white_banner":{"meta":15,"id":425},"blaze_rod":{"id":369},"diamond_chestplate":{"id":311},"beetroot_soup":{"id":436},"furnace_minecart":{"id":343},"cobweb":{"id":30},"heavy_weighted_pressure_plate":{"id":148},"redstone_block":{"id":152},"sandstone":{"id":24},"yellow_stained_glass":{"meta":4,"id":95},"oak_door":{"id":324},"shield":{"id":442},"red_stained_glass_pane":{"meta":14,"id":160},"potato":{"id":392},"rose_bush":{"meta":4,"id":175},"lime_concrete_powder":{"meta":5,"id":252},"sponge":{"id":19},"mooshroom_spawn_egg":{"meta":96,"id":383},"golden_sword":{"id":283},"egg":{"id":344},"splash_potion":{"id":438},"fermented_spider_eye":{"id":376},"diamond_helmet":{"id":310},"stone_pickaxe":{"id":274},"red_shulker_box":{"id":233},"cyan_stained_glass_pane":{"meta":9,"id":160},"damaged_anvil":{"meta":2,"id":145},"red_mushroom":{"id":40},"spruce_planks":{"meta":1,"id":5},"gray_stained_glass":{"meta":7,"id":95},"enchanted_book":{"id":403},"repeater":{"id":356},"andesite":{"meta":5,"id":1},"music_disc_mellohi":{"id":2262},"cooked_rabbit":{"id":412},"purple_glazed_terracotta":{"id":245},"magenta_terracotta":{"meta":2,"id":159},"spider_eye":{"id":375},"music_disc_11":{"id":2266},"birch_planks":{"meta":2,"id":5},"iron_pickaxe":{"id":257},"tropical_fish":{"meta":2,"id":349},"music_disc_13":{"id":2256},"gray_glazed_terracotta":{"id":242},"gold_ingot":{"id":266},"brown_terracotta":{"meta":12,"id":159},"leather":{"id":334},"diamond_leggings":{"id":312},"golden_chestplate":{"id":315},"light_gray_bed":{"meta":8,"id":355},"dandelion":{"id":37},"cookie":{"id":357},"oxeye_daisy":{"meta":8,"id":38},"cooked_salmon":{"meta":1,"id":350},"zombie_spawn_egg":{"meta":54,"id":383},"brown_concrete":{"meta":12,"id":251},"light_blue_banner":{"meta":12,"id":425},"cyan_concrete":{"meta":9,"id":251},"music_disc_stal":{"id":2263},"music_disc_chirp":{"id":2259},"redstone":{"id":331},"wheat_seeds":{"id":295},"smooth_stone":{"meta":8,"id":43},"stone_pressure_plate":{"id":70},"end_crystal":{"id":426},"wolf_spawn_egg":{"meta":95,"id":383},"shears":{"id":359},"experience_bottle":{"id":384},"black_shulker_box":{"id":234},"rabbit_hide":{"id":415},"comparator":{"id":404},"ender_eye":{"id":381},"oak_stairs":{"id":53},"chain_command_block":{"id":211},"lime_concrete":{"meta":5,"id":251},"cyan_concrete_powder":{"meta":9,"id":252},"gray_dye":{"meta":8,"id":351},"white_stained_glass":{"id":95},"orange_stained_glass":{"meta":1,"id":95},"cocoa_beans":{"meta":3,"id":351},"structure_void":{"id":217},"iron_nugget":{"id":452},"light_gray_wool":{"meta":8,"id":35},"birch_fence":{"id":189},"light_gray_terracotta":{"meta":8,"id":159},"skeleton_horse_spawn_egg":{"meta":28,"id":383},"granite":{"meta":1,"id":1},"beef":{"id":363},"green_stained_glass":{"meta":13,"id":95},"diamond_pickaxe":{"id":278},"tripwire":{"id":132},"cobblestone_wall":{"id":139},"sheep_spawn_egg":{"meta":91,"id":383},"polished_diorite":{"meta":4,"id":1},"carrots":{"id":141},"orange_concrete_powder":{"meta":1,"id":252},"sand":{"id":12},"music_disc_ward":{"id":2265},"mushroom_stew":{"id":282},"purpur_slab":{"id":205},"light_blue_carpet":{"meta":3,"id":171},"white_concrete":{"id":251},"nether_brick_stairs":{"id":114},"cyan_wool":{"meta":9,"id":35},"hay_block":{"id":170},"purpur_pillar":{"id":202},"carrot_on_a_stick":{"id":398},"light_blue_glazed_terracotta":{"id":238},"wheat":{"id":296},"slime_spawn_egg":{"meta":55,"id":383},"dark_oak_fence":{"id":191},"ocelot_spawn_egg":{"meta":98,"id":383},"vindicator_spawn_egg":{"meta":36,"id":383},"lime_stained_glass":{"meta":5,"id":95},"jukebox":{"id":84},"cyan_terracotta":{"meta":9,"id":159},"orange_tulip":{"meta":5,"id":38},"chorus_flower":{"id":200},"pink_terracotta":{"meta":6,"id":159},"ice":{"id":79},"snow_block":{"id":80},"acacia_fence":{"id":192},"infested_cracked_stone_bricks":{"meta":4,"id":97},"wooden_pickaxe":{"id":270},"blue_bed":{"meta":11,"id":355},"end_portal":{"id":119},"magenta_concrete":{"meta":2,"id":251},"lava_bucket":{"id":327},"red_wool":{"meta":14,"id":35},"music_disc_mall":{"id":2261},"birch_fence_gate":{"id":184},"grass_path":{"id":208},"gunpowder":{"id":289},"dragon_breath":{"id":437},"pumpkin_stem":{"id":104},"blue_concrete":{"meta":11,"id":251},"elytra":{"id":443},"frosted_ice":{"id":212},"structure_block":{"id":255},"iron_boots":{"id":309},"bowl":{"id":281},"skeleton_spawn_egg":{"meta":51,"id":383},"nether_quartz_ore":{"id":153},"lime_terracotta":{"meta":5,"id":159},"magenta_stained_glass_pane":{"meta":2,"id":160},"brown_glazed_terracotta":{"id":247},"light_gray_stained_glass":{"meta":8,"id":95},"white_bed":{"id":355},"red_concrete_powder":{"meta":14,"id":252},"brown_wool":{"meta":12,"id":35},"yellow_concrete_powder":{"meta":4,"id":252},"red_tulip":{"meta":4,"id":38},"green_concrete":{"meta":13,"id":251},"podzol":{"meta":2,"id":3},"white_concrete_powder":{"id":252},"quartz_pillar":{"meta":2,"id":155},"dandelion_yellow":{"meta":11,"id":351},"light_blue_bed":{"meta":3,"id":355},"birch_log":{"meta":2,"id":17},"orange_shulker_box":{"id":220},"milk_bucket":{"id":335},"cyan_bed":{"meta":9,"id":355},"azure_bluet":{"meta":3,"id":38},"brown_mushroom_block":{"id":99},"acacia_stairs":{"id":163},"red_stained_glass":{"meta":14,"id":95},"feather":{"id":288},"glass_bottle":{"id":374},"purple_wool":{"meta":10,"id":35},"magenta_bed":{"meta":2,"id":355},"ender_pearl":{"id":368},"nether_portal":{"id":90},"melon":{"id":103},"diamond_ore":{"id":56},"dragon_head":{"meta":5,"id":397},"diorite":{"meta":3,"id":1},"diamond_shovel":{"id":277},"leather_helmet":{"id":298},"light_gray_banner":{"meta":7,"id":425},"music_disc_far":{"id":2260},"gray_wool":{"meta":7,"id":35},"donkey_spawn_egg":{"meta":31,"id":383},"infested_chiseled_stone_bricks":{"meta":5,"id":97},"string":{"id":287},"iron_door":{"id":330},"rabbit_foot":{"id":414},"lime_bed":{"meta":5,"id":355},"nether_bricks":{"id":112},"purple_dye":{"meta":5,"id":351},"blue_terracotta":{"meta":11,"id":159},"diamond":{"id":264},"gold_nugget":{"id":371},"green_bed":{"meta":13,"id":355},"magenta_glazed_terracotta":{"id":237},"redstone_wire":{"id":55},"stone_button":{"id":77},"diamond_sword":{"id":276},"ender_chest":{"id":130},"black_glazed_terracotta":{"id":250},"diamond_axe":{"id":279},"iron_helmet":{"id":306},"brown_banner":{"meta":3,"id":425},"birch_boat":{"id":445},"beetroots":{"id":207},"black_stained_glass_pane":{"meta":15,"id":160},"villager_spawn_egg":{"meta":120,"id":383},"gold_block":{"id":41},"yellow_banner":{"meta":11,"id":425},"mutton":{"id":423},"stone_axe":{"id":275},"orange_bed":{"meta":1,"id":355},"lilac":{"meta":1,"id":175},"detector_rail":{"id":28},"enderman_spawn_egg":{"meta":58,"id":383},"acacia_slab":{"meta":4,"id":126},"flint":{"id":318},"birch_leaves":{"meta":2,"id":18},"jack_o_lantern":{"id":91},"lead":{"id":420},"purple_banner":{"meta":5,"id":425},"firework_rocket":{"id":401},"cactus":{"id":81},"chicken_spawn_egg":{"meta":93,"id":383},"purple_stained_glass_pane":{"meta":10,"id":160},"shulker_spawn_egg":{"meta":69,"id":383},"cocoa":{"id":127},"pink_shulker_box":{"id":225},"shulker_shell":{"id":450},"iron_chestplate":{"id":307},"elder_guardian_spawn_egg":{"meta":4,"id":383},"acacia_planks":{"meta":4,"id":5},"bone_block":{"id":216},"black_stained_glass":{"meta":15,"id":95},"blue_glazed_terracotta":{"id":246},"sandstone_stairs":{"id":128},"white_glazed_terracotta":{"id":235},"pink_glazed_terracotta":{"id":241},"zombie_pigman_spawn_egg":{"meta":57,"id":383},"player_head":{"meta":3,"id":397},"yellow_stained_glass_pane":{"meta":4,"id":160},"red_glazed_terracotta":{"id":249},"acacia_boat":{"id":447},"purple_terracotta":{"meta":10,"id":159},"large_fern":{"meta":3,"id":175},"magenta_stained_glass":{"meta":2,"id":95},"nether_brick_fence":{"id":113},"hopper":{"id":154},"fern":{"meta":2,"id":31},"orange_carpet":{"meta":1,"id":171},"green_glazed_terracotta":{"id":248},"orange_concrete":{"meta":1,"id":251},"emerald":{"id":388},"bow":{"id":261},"nether_star":{"id":399},"note_block":{"id":25},"light_blue_concrete":{"meta":3,"id":251},"pumpkin_pie":{"id":400},"black_bed":{"meta":15,"id":355},"redstone_lamp":{"id":123},"quartz_stairs":{"id":156},"blue_orchid":{"meta":1,"id":38},"chorus_plant":{"id":199},"oak_boat":{"id":333},"slime_ball":{"id":341},"oak_leaves":{"id":18},"stone_brick_slab":{"meta":5,"id":44},"flint_and_steel":{"id":259},"brown_carpet":{"meta":12,"id":171},"cooked_cod":{"id":350},"dragon_egg":{"id":122},"red_concrete":{"meta":14,"id":251},"glowstone_dust":{"id":348},"sticky_piston":{"id":29},"snow":{"id":78},"red_bed":{"meta":14,"id":355},"cyan_stained_glass":{"meta":9,"id":95},"music_disc_wait":{"id":2267},"glass_pane":{"id":102},"iron_shovel":{"id":256},"fishing_rod":{"id":346},"guardian_spawn_egg":{"meta":68,"id":383},"pink_banner":{"meta":9,"id":425},"cyan_shulker_box":{"id":228},"oak_trapdoor":{"id":96},"spruce_fence_gate":{"id":183},"birch_sapling":{"meta":2,"id":6},"diamond_block":{"id":57},"cod":{"id":349},"pink_dye":{"meta":9,"id":351},"totem_of_undying":{"id":449},"dead_bush":{"id":32},"stone_slab":{"meta":2,"id":44},"farmland":{"id":60},"bedrock":{"id":7},"infested_mossy_stone_bricks":{"meta":3,"id":97},"enchanted_golden_apple":{"meta":1,"id":322},"brick":{"id":336},"wooden_axe":{"id":271},"spruce_stairs":{"id":134},"activator_rail":{"id":157},"nether_wart":{"id":372},"nether_brick":{"id":405},"smooth_quartz":{"meta":7,"id":43},"oak_pressure_plate":{"id":72},"soul_sand":{"id":88},"light_blue_concrete_powder":{"meta":3,"id":252},"creeper_spawn_egg":{"meta":50,"id":383},"spawner":{"id":52},"glowstone":{"id":89},"nether_wart_block":{"id":214},"white_tulip":{"meta":6,"id":38},"light_gray_glazed_terracotta":{"id":243},"dark_oak_boat":{"id":448},"wooden_sword":{"id":268},"green_wool":{"meta":13,"id":35},"potion":{"id":373},"husk_spawn_egg":{"meta":23,"id":383},"music_disc_blocks":{"id":2258},"lime_glazed_terracotta":{"id":240},"blaze_spawn_egg":{"meta":61,"id":383},"black_banner":{"id":425},"light_blue_stained_glass_pane":{"meta":3,"id":160},"purple_concrete":{"meta":10,"id":251},"map":{"id":395},"oak_fence_gate":{"id":107},"tripwire_hook":{"id":131},"black_concrete_powder":{"meta":15,"id":252},"salmon":{"meta":1,"id":349},"cactus_green":{"meta":2,"id":351},"sign":{"id":323},"chipped_anvil":{"meta":1,"id":145},"cyan_banner":{"meta":6,"id":425},"book":{"id":340},"stone_brick_stairs":{"id":109},"gold_ore":{"id":14},"lava":{"id":11},"light_blue_wool":{"meta":3,"id":35},"birch_stairs":{"id":135},"blue_shulker_box":{"id":230},"horse_spawn_egg":{"meta":100,"id":383},"baked_potato":{"id":393},"chorus_fruit":{"id":432},"purpur_block":{"id":201},"rabbit":{"id":411},"daylight_detector":{"id":151},"pink_concrete":{"meta":6,"id":251},"cooked_porkchop":{"id":320},"mule_spawn_egg":{"meta":32,"id":383},"blue_banner":{"meta":4,"id":425},"clock":{"id":347},"quartz_block":{"id":155},"infested_stone":{"id":97},"lapis_lazuli":{"meta":4,"id":351},"bone":{"id":352},"coal_ore":{"id":16},"jungle_door":{"id":429},"lingering_potion":{"id":441},"stone_hoe":{"id":291},"bucket":{"id":325},"bread":{"id":297},"carrot":{"id":391},"torch":{"id":50},"blue_wool":{"meta":11,"id":35},"command_block_minecart":{"id":422},"blue_carpet":{"meta":11,"id":171},"diamond_boots":{"id":313},"diamond_horse_armor":{"id":419},"zombie_horse_spawn_egg":{"meta":29,"id":383},"melon_stem":{"id":105},"spruce_door":{"id":427},"cobblestone":{"id":4},"jungle_leaves":{"meta":3,"id":18},"powered_rail":{"id":27},"coal_block":{"id":173},"writable_book":{"id":386},"golden_helmet":{"id":314},"snowball":{"id":332},"brown_bed":{"meta":12,"id":355},"spectral_arrow":{"id":439},"command_block":{"id":137},"yellow_concrete":{"meta":4,"id":251},"llama_spawn_egg":{"meta":103,"id":383},"light_blue_terracotta":{"meta":3,"id":159},"gray_concrete":{"meta":7,"id":251},"packed_ice":{"id":174},"chainmail_boots":{"id":305},"red_terracotta":{"meta":14,"id":159},"emerald_block":{"id":133},"birch_slab":{"meta":2,"id":126},"pink_carpet":{"meta":6,"id":171},"water_bucket":{"id":326},"iron_bars":{"id":101},"melon_slice":{"id":360},"lapis_ore":{"id":21},"mycelium":{"id":110},"cut_red_sandstone":{"meta":2,"id":179},"gray_shulker_box":{"id":226},"anvil":{"id":145},"gray_carpet":{"meta":7,"id":171},"brown_stained_glass_pane":{"meta":12,"id":160},"obsidian":{"id":49},"sugar_cane":{"id":338},"brown_shulker_box":{"id":231},"purple_concrete_powder":{"meta":10,"id":252},"poisonous_potato":{"id":394},"oak_fence":{"id":85},"dark_oak_planks":{"meta":5,"id":5},"light_gray_dye":{"meta":7,"id":351},"tall_grass":{"meta":2,"id":175},"chiseled_stone_bricks":{"meta":3,"id":98},"charcoal":{"meta":1,"id":263},"clay":{"id":337},"beetroot_seeds":{"id":435},"gray_concrete_powder":{"meta":7,"id":252},"emerald_ore":{"id":129}}},"entity_type":{"default":"pig","id":3,"entries":{"zombie_horse":{"id":29},"egg":{"id":7},"arrow":{"id":10},"cow":{"id":92},"magma_cube":{"id":62},"pig":{"id":90},"skeleton":{"id":51},"llama":{"id":103},"mule":{"id":32},"husk":{"id":23},"bat":{"id":65},"experience_bottle":{"id":17},"rabbit":{"id":101},"silverfish":{"id":60},"armor_stand":{"id":30},"giant":{"id":53},"experience_orb":{"id":2},"zombie_pigman":{"id":57},"item":{"id":1},"stray":{"id":6},"shulker":{"id":69},"wither_skeleton":{"id":5},"vex":{"id":35},"ocelot":{"id":98},"item_frame":{"id":18},"vindicator":{"id":36},"horse":{"id":100},"firework":{"id":22},"minecart":{"id":42},"ender_dragon":{"id":63},"leash_knot":{"id":8},"spectral_arrow":{"id":24},"evoker":{"id":34},"mooshroom":{"id":96},"llama_spit":{"id":104},"snowball":{"id":11},"tnt":{"id":20},"shulker_bullet":{"id":25},"squid":{"id":94},"parrot":{"id":105},"creeper":{"id":50},"enderman":{"id":58},"dragon_fireball":{"id":26},"chicken":{"id":93},"donkey":{"id":31},"evoker_fangs":{"id":33},"chest_minecart":{"id":43},"slime":{"id":55},"iron_golem":{"id":99},"area_effect_cloud":{"id":3},"blaze":{"id":61},"end_crystal":{"id":200},"endermite":{"id":67},"ender_pearl":{"id":14},"zombie":{"id":54},"guardian":{"id":68},"ghast":{"id":56},"fireball":{"id":12},"sheep":{"id":91},"illusioner":{"id":37},"potion":{"id":16},"eye_of_ender":{"id":15},"wither_skull":{"id":19},"wolf":{"id":95},"villager":{"id":120},"skeleton_horse":{"id":28},"zombie_villager":{"id":27},"elder_guardian":{"id":4},"small_fireball":{"id":13},"boat":{"id":41},"polar_bear":{"id":102},"falling_block":{"id":21},"painting":{"id":9},"cave_spider":{"id":9},"witch":{"id":66},"snow_golem":{"id":97},"spider":{"id":52},"wither":{"id":64},"command_block_minecart":{"id":40}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"custom_stat":{"entries":{"leave_game":{},"play_one_minute":{},"time_since_death":{},"time_since_rest":{},"sneak_time":{},"walk_one_cm":{},"crouch_one_cm":{},"sprint_one_cm":{},"walk_on_water_one_cm":{},"fall_one_cm":{},"climb_one_cm":{},"fly_one_cm":{},"walk_under_water_one_cm":{},"minecart_one_cm":{},"boat_one_cm":{},"pig_one_cm":{},"horse_one_cm":{},"aviate_one_cm":{},"swim_one_cm":{},"jump":{},"drop":{},"damage_dealt":{},"damage_dealt_absorbed":{},"damage_dealt_resisted":{},"damage_taken":{},"damage_blocked_by_shield":{},"damage_absorbed":{},"damage_resisted":{},"deaths":{},"mob_kills":{},"animals_bred":{},"player_kills":{},"fish_caught":{},"talked_to_villager":{},"traded_with_villager":{},"eat_cake_slice":{},"fill_cauldron":{},"use_cauldron":{},"clean_armor":{},"clean_banner":{},"clean_shulker_box":{},"interact_with_brewingstand":{},"interact_with_beacon":{},"inspect_dropper":{},"inspect_hopper":{},"inspect_dispenser":{},"play_noteblock":{},"tune_noteblock":{},"pot_flower":{},"trigger_trapped_chest":{},"open_enderchest":{},"enchant_item":{},"play_record":{},"interact_with_furnace":{},"interact_with_crafting_table":{},"open_chest":{},"sleep_in_bed":{},"open_shulker_box":{},"open_barrel":{},"interact_with_blast_furnace":{},"interact_with_smoker":{},"interact_with_lectern":{},"interact_with_campfire":{},"interact_with_cartography_table":{},"interact_with_loom":{},"interact_with_stonecutter":{},"bell_ring":{},"raid_trigger":{},"raid_win":{},"interact_with_anvil":{},"interact_with_grindstone":{}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"grass":{"id":2},"dirt":{"id":3},"cobblestone":{"id":4},"planks":{"id":5},"sapling":{"id":6},"bedrock":{"id":7},"flowing_water":{"id":8},"water":{"id":9},"flowing_lava":{"id":10},"lava":{"id":11},"sand":{"id":12},"gravel":{"id":13},"gold_ore":{"id":14},"iron_ore":{"id":15},"coal_ore":{"id":16},"log":{"id":17},"leaves":{"id":18},"sponge":{"id":19},"glass":{"id":20},"lapis_ore":{"id":21},"lapis_block":{"id":22},"dispenser":{"id":23},"sandstone":{"id":24},"noteblock":{"id":25},"bed":{"id":26},"golden_rail":{"id":27},"detector_rail":{"id":28},"sticky_piston":{"id":29},"web":{"id":30},"tallgrass":{"id":31},"deadbush":{"id":32},"piston":{"id":33},"piston_head":{"id":34},"wool":{"id":35},"piston_extension":{"id":36},"yellow_flower":{"id":37},"red_flower":{"id":38},"brown_mushroom":{"id":39},"red_mushroom":{"id":40},"gold_block":{"id":41},"iron_block":{"id":42},"double_stone_slab":{"id":43},"stone_slab":{"id":44},"brick_block":{"id":45},"tnt":{"id":46},"bookshelf":{"id":47},"mossy_cobblestone":{"id":48},"obsidian":{"id":49},"torch":{"id":50},"fire":{"id":51},"mob_spawner":{"id":52},"oak_stairs":{"id":53},"chest":{"id":54},"redstone_wire":{"id":55},"diamond_ore":{"id":56},"diamond_block":{"id":57},"crafting_table":{"id":58},"wheat":{"id":59},"farmland":{"id":60},"furnace":{"id":61},"lit_furnace":{"id":62},"standing_sign":{"id":63},"wooden_door":{"id":64},"ladder":{"id":65},"rail":{"id":66},"stone_stairs":{"id":67},"wall_sign":{"id":68},"lever":{"id":69},"stone_pressure_plate":{"id":70},"iron_door":{"id":71},"wooden_pressure_plate":{"id":72},"redstone_ore":{"id":73},"lit_redstone_ore":{"id":74},"unlit_redstone_torch":{"id":75},"redstone_torch":{"id":76},"stone_button":{"id":77},"snow_layer":{"id":78},"ice":{"id":79},"snow":{"id":80},"cactus":{"id":81},"clay":{"id":82},"reeds":{"id":83},"jukebox":{"id":84},"fence":{"id":85},"pumpkin":{"id":86},"netherrack":{"id":87},"soul_sand":{"id":88},"glowstone":{"id":89},"portal":{"id":90},"lit_pumpkin":{"id":91},"cake":{"id":92},"unpowered_repeater":{"id":93},"powered_repeater":{"id":94},"stained_glass":{"id":95},"trapdoor":{"id":96},"monster_egg":{"id":97},"stonebrick":{"id":98},"brown_mushroom_block":{"id":99},"red_mushroom_block":{"id":100},"iron_bars":{"id":101},"glass_pane":{"id":102},"melon_block":{"id":103},"pumpkin_stem":{"id":104},"melon_stem":{"id":105},"vine":{"id":106},"fence_gate":{"id":107},"brick_stairs":{"id":108},"stone_brick_stairs":{"id":109},"mycelium":{"id":110},"waterlily":{"id":111},"nether_brick":{"id":112},"nether_brick_fence":{"id":113},"nether_brick_stairs":{"id":114},"nether_wart":{"id":115},"enchanting_table":{"id":116},"brewing_stand":{"id":117},"cauldron":{"id":118},"end_portal":{"id":119},"end_portal_frame":{"id":120},"end_stone":{"id":121},"dragon_egg":{"id":122},"redstone_lamp":{"id":123},"lit_redstone_lamp":{"id":124},"double_wooden_slab":{"id":125},"wooden_slab":{"id":126},"cocoa":{"id":127},"sandstone_stairs":{"id":128},"emerald_ore":{"id":129},"ender_chest":{"id":130},"tripwire_hook":{"id":131},"tripwire":{"id":132},"emerald_block":{"id":133},"spruce_stairs":{"id":134},"birch_stairs":{"id":135},"jungle_stairs":{"id":136},"command_block":{"id":137},"beacon":{"id":138},"cobblestone_wall":{"id":139},"flower_pot":{"id":140},"carrots":{"id":141},"potatoes":{"id":142},"wooden_button":{"id":143},"skull":{"id":144},"anvil":{"id":145},"trapped_chest":{"id":146},"light_weighted_pressure_plate":{"id":147},"heavy_weighted_pressure_plate":{"id":148},"unpowered_comparator":{"id":149},"powered_comparator":{"id":150},"daylight_detector":{"id":151},"redstone_block":{"id":152},"quartz_ore":{"id":153},"hopper":{"id":154},"quartz_block":{"id":155},"quartz_stairs":{"id":156},"activator_rail":{"id":157},"dropper":{"id":158},"stained_hardened_clay":{"id":159},"stained_glass_pane":{"id":160},"leaves2":{"id":161},"log2":{"id":162},"acacia_stairs":{"id":163},"dark_oak_stairs":{"id":164},"slime":{"id":165},"barrier":{"id":166},"iron_trapdoor":{"id":167},"prismarine":{"id":168},"sea_lantern":{"id":169},"hay_block":{"id":170},"carpet":{"id":171},"hardened_clay":{"id":172},"coal_block":{"id":173},"packed_ice":{"id":174},"double_plant":{"id":175},"standing_banner":{"id":176},"wall_banner":{"id":177},"daylight_detector_inverted":{"id":178},"red_sandstone":{"id":179},"red_sandstone_stairs":{"id":180},"double_stone_slab2":{"id":181},"stone_slab2":{"id":182},"spruce_fence_gate":{"id":183},"birch_fence_gate":{"id":184},"jungle_fence_gate":{"id":185},"dark_oak_fence_gate":{"id":186},"acacia_fence_gate":{"id":187},"spruce_fence":{"id":188},"birch_fence":{"id":189},"jungle_fence":{"id":190},"dark_oak_fence":{"id":191},"acacia_fence":{"id":192},"spruce_door":{"id":193},"birch_door":{"id":194},"jungle_door":{"id":195},"acacia_door":{"id":196},"dark_oak_door":{"id":197},"end_rod":{"id":198},"chorus_plant":{"id":199},"chorus_flower":{"id":200},"purpur_block":{"id":201},"purpur_pillar":{"id":202},"purpur_stairs":{"id":203},"purpur_double_slab":{"id":204},"purpur_slab":{"id":205},"end_bricks":{"id":206},"beetroots":{"id":207},"grass_path":{"id":208},"end_gateway":{"id":209},"repeating_command_block":{"id":210},"chain_command_block":{"id":211},"frosted_ice":{"id":212},"magma":{"id":213},"nether_wart_block":{"id":214},"red_nether_brick":{"id":215},"bone_block":{"id":216},"structure_void":{"id":217},"observer":{"id":218},"white_shulkerbox":{"id":219},"orange_shulkerbox":{"id":220},"magenta_shulkerbox":{"id":221},"light_blue_shulkerbox":{"id":222},"yellow_shulkerbox":{"id":223},"lime_shulkerbox":{"id":224},"pink_shulkerbox":{"id":225},"gray_shulkerbox":{"id":226},"silver_shulkerbox":{"id":227},"cyan_shulkerbox":{"id":228},"purple_shulkerbox":{"id":229},"blue_shulkerbox":{"id":230},"brown_shulkerbox":{"id":231},"green_shulkerbox":{"id":232},"red_shulkerbox":{"id":233},"black_shulkerbox":{"id":234},"white_glazed_terracotta":{"id":235},"orange_glazed_terracotta":{"id":236},"magenta_glazed_terracotta":{"id":237},"light_blue_glazed_terracotta":{"id":238},"yellow_glazed_terracotta":{"id":239},"lime_glazed_terracotta":{"id":240},"pink_glazed_terracotta":{"id":241},"gray_glazed_terracotta":{"id":242},"silver_glazed_terracotta":{"id":243},"cyan_glazed_terracotta":{"id":244},"purple_glazed_terracotta":{"id":245},"blue_glazed_terracotta":{"id":246},"brown_glazed_terracotta":{"id":247},"green_glazed_terracotta":{"id":248},"red_glazed_terracotta":{"id":249},"black_glazed_terracotta":{"id":250},"concrete":{"id":251},"concrete_powder":{"id":252},"structure_block":{"id":255}}},"motive":{"default":"kebab","entries":{"kebab":{},"aztec":{},"alban":{},"aztec2":{},"bomb":{},"plant":{},"wasteland":{},"pool":{},"courbet":{},"sea":{},"sunset":{},"creebet":{},"wanderer":{},"graham":{},"match":{},"bust":{},"stage":{},"void":{},"skull_and_roses":{},"wither":{},"fighters":{},"pointer":{},"pigscene":{},"burning_skull":{},"skeleton":{},"donkey_kong":{}}},"particle_type":{"id":13,"entries":{"explode":{"id":0},"largeexplode":{"id":1},"hugeexplosion":{"id":2},"fireworksSpark":{"id":3},"bubble":{"id":4},"splash":{"id":5},"wake":{"id":6},"suspended":{"id":7},"depthsuspend":{"id":8},"crit":{"id":9},"magicCrit":{"id":10},"smoke":{"id":11},"largesmoke":{"id":12},"spell":{"id":13},"instantSpell":{"id":14},"mobSpell":{"id":15},"mobSpellAmbient":{"id":16},"witchMagic":{"id":17},"dripWater":{"id":18},"dripLava":{"id":19},"angryVillager":{"id":20},"happyVillager":{"id":21},"townaura":{"id":22},"note":{"id":23},"portal":{"id":24},"enchantmenttable":{"id":25},"flame":{"id":26},"lava":{"id":27},"footstep":{"id":28},"cloud":{"id":29},"reddust":{"id":30},"snowballpoof":{"id":31},"snowshovel":{"id":32},"slime":{"id":33},"heart":{"id":34},"barrier":{"id":35},"iconcrack":{"id":36},"blockcrack":{"id":37},"blockdust":{"id":38},"droplet":{"id":39},"take":{"id":40},"mobappearance":{"id":41},"dragonbreath":{"id":42},"endrod":{"id":43},"damageindicator":{"id":44},"sweepattack":{"id":45},"fallingdust":{"id":46},"totem":{"id":47},"spit":{"id":48}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}}}}
\ No newline at end of file
+{"minecraft":{"item":{"default":"air","id":5,"entries":{"yellow_glazed_terracotta":{"id":239},"yellow_wool":{"meta":4,"id":35},"iron_leggings":{"id":308},"ghast_spawn_egg":{"meta":56,"id":383},"name_tag":{"id":421},"pig_spawn_egg":{"meta":90,"id":383},"chainmail_helmet":{"id":302},"compass":{"id":345},"gray_bed":{"meta":7,"id":355},"golden_horse_armor":{"id":418},"brown_concrete_powder":{"meta":12,"id":252},"acacia_fence_gate":{"id":187},"golden_hoe":{"id":294},"red_sand":{"meta":1,"id":12},"stone_shovel":{"id":273},"jungle_slab":{"meta":3,"id":126},"beetroot":{"id":434},"chainmail_leggings":{"id":304},"cow_spawn_egg":{"meta":92,"id":383},"oak_button":{"id":143},"saddle":{"id":329},"sunflower":{"id":175},"cake":{"id":354},"fire":{"id":51},"stone_bricks":{"id":98},"lily_pad":{"id":111},"enchanting_table":{"id":116},"apple":{"id":260},"observer":{"id":218},"pink_wool":{"meta":6,"id":35},"cobblestone_stairs":{"id":67},"light_gray_shulker_box":{"id":227},"stone":{"id":1},"poppy":{"id":38},"white_shulker_box":{"id":219},"redstone_ore":{"id":73},"green_banner":{"meta":2,"id":425},"jungle_sapling":{"meta":3,"id":6},"orange_stained_glass_pane":{"meta":1,"id":160},"melon_seeds":{"id":362},"cooked_chicken":{"id":366},"endermite_spawn_egg":{"meta":67,"id":383},"light_blue_stained_glass":{"meta":3,"id":95},"birch_door":{"id":428},"polar_bear_spawn_egg":{"meta":102,"id":383},"leather_leggings":{"id":300},"iron_sword":{"id":267},"filled_map":{"id":358},"jungle_fence_gate":{"id":185},"oak_slab":{"id":126},"golden_carrot":{"id":396},"lime_shulker_box":{"id":224},"firework_star":{"id":402},"dark_prismarine":{"meta":2,"id":168},"spruce_slab":{"meta":1,"id":126},"beacon":{"id":138},"written_book":{"id":387},"quartz":{"id":406},"white_terracotta":{"id":159},"golden_shovel":{"id":284},"peony":{"meta":5,"id":175},"green_carpet":{"meta":13,"id":171},"sea_lantern":{"id":169},"potion{Potion":{"meta":64,"id":373},"zombie_head":{"meta":2,"id":397},"rabbit_stew":{"id":413},"tipped_arrow":{"id":440},"ghast_tear":{"id":370},"skeleton_skull":{"id":397},"mossy_cobblestone_wall":{"meta":1,"id":139},"pumpkin_seeds":{"id":361},"white_wool":{"id":35},"squid_spawn_egg":{"meta":94,"id":383},"gray_banner":{"meta":8,"id":425},"purple_stained_glass":{"meta":10,"id":95},"blue_stained_glass_pane":{"meta":11,"id":160},"golden_apple":{"id":322},"cooked_mutton":{"id":424},"end_rod":{"id":198},"chiseled_quartz_block":{"meta":1,"id":155},"allium":{"meta":2,"id":38},"magenta_wool":{"meta":2,"id":35},"prismarine_bricks":{"meta":1,"id":168},"chainmail_chestplate":{"id":303},"crafting_table":{"id":58},"lever":{"id":69},"cyan_dye":{"meta":6,"id":351},"mossy_stone_bricks":{"meta":1,"id":98},"green_shulker_box":{"id":232},"blaze_powder":{"id":377},"tnt":{"id":46},"black_carpet":{"meta":15,"id":171},"golden_boots":{"id":317},"magenta_dye":{"meta":13,"id":351},"gray_terracotta":{"meta":7,"id":159},"white_carpet":{"id":171},"creeper_head":{"meta":4,"id":397},"end_stone_bricks":{"id":206},"sandstone_slab":{"meta":1,"id":44},"iron_horse_armor":{"id":417},"jungle_fence":{"id":190},"arrow":{"id":262},"chest_minecart":{"id":342},"red_carpet":{"meta":14,"id":171},"red_sandstone":{"id":179},"dark_oak_leaves":{"meta":1,"id":161},"dark_oak_slab":{"meta":5,"id":126},"wooden_hoe":{"id":290},"light_blue_dye":{"meta":12,"id":351},"pumpkin":{"id":86},"oak_sapling":{"id":6},"iron_axe":{"id":258},"wither_skeleton_skull":{"meta":1,"id":397},"light_weighted_pressure_plate":{"id":147},"bookshelf":{"id":47},"blue_stained_glass":{"meta":11,"id":95},"orange_glazed_terracotta":{"id":236},"stone_sword":{"id":272},"end_portal_frame":{"id":120},"purpur_stairs":{"id":203},"magma_block":{"id":213},"cobblestone_slab":{"meta":3,"id":44},"red_nether_bricks":{"id":215},"magma_cream":{"id":378},"lime_dye":{"meta":10,"id":351},"terracotta":{"id":172},"coal":{"id":263},"zombie_villager_spawn_egg":{"meta":27,"id":383},"wall_sign":{"id":68},"chiseled_red_sandstone":{"meta":1,"id":179},"leather_chestplate":{"id":299},"repeating_command_block":{"id":210},"dirt":{"id":3},"green_concrete_powder":{"meta":13,"id":252},"brown_stained_glass":{"meta":12,"id":95},"stray_spawn_egg":{"meta":6,"id":383},"witch_spawn_egg":{"meta":66,"id":383},"glass":{"id":20},"armor_stand":{"id":416},"cyan_carpet":{"meta":9,"id":171},"pink_concrete_powder":{"meta":6,"id":252},"popped_chorus_fruit":{"id":433},"oak_planks":{"id":5},"orange_wool":{"meta":1,"id":35},"cut_sandstone":{"meta":2,"id":24},"golden_leggings":{"id":316},"green_stained_glass_pane":{"meta":13,"id":160},"pufferfish":{"meta":3,"id":349},"evoker_spawn_egg":{"meta":34,"id":383},"spruce_leaves":{"meta":1,"id":18},"black_terracotta":{"meta":15,"id":159},"porkchop":{"id":319},"end_stone":{"id":121},"stick":{"id":280},"jungle_log":{"meta":3,"id":17},"wither_skeleton_spawn_egg":{"meta":5,"id":383},"yellow_terracotta":{"meta":4,"id":159},"piston":{"id":33},"purple_bed":{"meta":10,"id":355},"ink_sac":{"id":351},"orange_dye":{"meta":14,"id":351},"red_sandstone_stairs":{"id":180},"chicken":{"id":365},"magenta_shulker_box":{"id":221},"iron_ore":{"id":15},"yellow_bed":{"meta":4,"id":355},"netherrack":{"id":87},"nether_brick_slab":{"meta":6,"id":44},"prismarine_crystals":{"id":410},"oak_log":{"id":17},"redstone_torch":{"id":76},"diamond_hoe":{"id":293},"yellow_shulker_box":{"id":223},"magenta_banner":{"meta":13,"id":425},"cave_spider_spawn_egg":{"meta":59,"id":383},"jungle_boat":{"id":446},"gray_stained_glass_pane":{"meta":7,"id":160},"purple_carpet":{"meta":10,"id":171},"blue_concrete_powder":{"meta":11,"id":252},"mossy_cobblestone":{"id":48},"furnace":{"id":61},"orange_banner":{"meta":14,"id":425},"iron_trapdoor":{"id":167},"bone_meal":{"meta":15,"id":351},"lime_wool":{"meta":5,"id":35},"white_stained_glass_pane":{"id":160},"bricks":{"id":45},"brewing_stand":{"id":379},"golden_axe":{"id":286},"prismarine_shard":{"id":409},"magma_cube_spawn_egg":{"meta":62,"id":383},"barrier":{"id":166},"red_sandstone_slab":{"id":182},"spruce_fence":{"id":188},"dark_oak_door":{"id":431},"spruce_sapling":{"meta":1,"id":6},"cooked_beef":{"id":364},"magenta_carpet":{"meta":2,"id":171},"pink_stained_glass_pane":{"meta":6,"id":160},"acacia_log":{"id":162},"ladder":{"id":65},"jungle_planks":{"meta":3,"id":5},"item_frame":{"id":389},"slime_block":{"id":165},"bat_spawn_egg":{"meta":65,"id":383},"rail":{"id":66},"jungle_stairs":{"id":136},"minecart":{"id":328},"clay_ball":{"id":337},"sugar":{"id":353},"lapis_block":{"id":22},"prismarine":{"id":168},"iron_block":{"id":42},"purple_shulker_box":{"id":229},"spruce_boat":{"id":444},"paper":{"id":339},"end_gateway":{"id":209},"spider_spawn_egg":{"meta":52,"id":383},"brick_slab":{"meta":4,"id":44},"gravel":{"id":13},"music_disc_strad":{"id":2264},"light_gray_stained_glass_pane":{"meta":8,"id":160},"light_gray_concrete_powder":{"meta":8,"id":252},"vine":{"id":106},"red_mushroom_block":{"id":100},"pink_tulip":{"meta":7,"id":38},"vex_spawn_egg":{"meta":35,"id":383},"lime_banner":{"meta":10,"id":425},"golden_pickaxe":{"id":285},"light_blue_shulker_box":{"id":222},"orange_terracotta":{"meta":1,"id":159},"pink_stained_glass":{"meta":6,"id":95},"black_concrete":{"meta":15,"id":251},"dark_oak_sapling":{"meta":5,"id":6},"piston_head":{"id":34},"black_wool":{"meta":15,"id":35},"rabbit_spawn_egg":{"meta":101,"id":383},"wooden_shovel":{"id":269},"light_gray_carpet":{"meta":8,"id":171},"trapped_chest":{"id":146},"hopper_minecart":{"id":408},"dropper":{"id":158},"pink_bed":{"meta":6,"id":355},"fire_charge":{"id":385},"music_disc_cat":{"id":2257},"potatoes":{"id":142},"coarse_dirt":{"meta":1,"id":3},"spruce_log":{"meta":1,"id":17},"dark_oak_log":{"meta":1,"id":162},"chest":{"id":54},"brown_mushroom":{"id":39},"cyan_glazed_terracotta":{"id":244},"cauldron":{"id":380},"infested_stone_bricks":{"meta":2,"id":97},"painting":{"id":321},"chiseled_sandstone":{"meta":1,"id":24},"dark_oak_fence_gate":{"id":186},"polished_granite":{"meta":2,"id":1},"dark_oak_stairs":{"id":164},"glistering_melon_slice":{"id":382},"dispenser":{"id":23},"lime_stained_glass_pane":{"meta":5,"id":160},"light_gray_concrete":{"meta":8,"id":251},"grass_block":{"id":2},"acacia_sapling":{"meta":4,"id":6},"infested_cobblestone":{"meta":1,"id":97},"green_terracotta":{"meta":13,"id":159},"magenta_concrete_powder":{"meta":2,"id":252},"red_banner":{"meta":1,"id":425},"water":{"id":9},"iron_ingot":{"id":265},"tnt_minecart":{"id":407},"rotten_flesh":{"id":367},"iron_hoe":{"id":292},"polished_andesite":{"meta":6,"id":1},"acacia_leaves":{"id":161},"acacia_door":{"id":430},"flower_pot":{"id":390},"brick_stairs":{"id":108},"wet_sponge":{"meta":1,"id":19},"rose_red":{"meta":1,"id":351},"cracked_stone_bricks":{"meta":2,"id":98},"quartz_slab":{"meta":7,"id":44},"lime_carpet":{"meta":5,"id":171},"yellow_carpet":{"meta":4,"id":171},"leather_boots":{"id":301},"white_banner":{"meta":15,"id":425},"blaze_rod":{"id":369},"diamond_chestplate":{"id":311},"beetroot_soup":{"id":436},"furnace_minecart":{"id":343},"cobweb":{"id":30},"heavy_weighted_pressure_plate":{"id":148},"redstone_block":{"id":152},"sandstone":{"id":24},"yellow_stained_glass":{"meta":4,"id":95},"oak_door":{"id":324},"shield":{"id":442},"red_stained_glass_pane":{"meta":14,"id":160},"potato":{"id":392},"rose_bush":{"meta":4,"id":175},"lime_concrete_powder":{"meta":5,"id":252},"sponge":{"id":19},"mooshroom_spawn_egg":{"meta":96,"id":383},"golden_sword":{"id":283},"egg":{"id":344},"splash_potion":{"id":438},"fermented_spider_eye":{"id":376},"diamond_helmet":{"id":310},"stone_pickaxe":{"id":274},"red_shulker_box":{"id":233},"cyan_stained_glass_pane":{"meta":9,"id":160},"damaged_anvil":{"meta":2,"id":145},"red_mushroom":{"id":40},"spruce_planks":{"meta":1,"id":5},"gray_stained_glass":{"meta":7,"id":95},"enchanted_book":{"id":403},"repeater":{"id":356},"andesite":{"meta":5,"id":1},"music_disc_mellohi":{"id":2262},"cooked_rabbit":{"id":412},"purple_glazed_terracotta":{"id":245},"magenta_terracotta":{"meta":2,"id":159},"spider_eye":{"id":375},"music_disc_11":{"id":2266},"birch_planks":{"meta":2,"id":5},"iron_pickaxe":{"id":257},"tropical_fish":{"meta":2,"id":349},"music_disc_13":{"id":2256},"gray_glazed_terracotta":{"id":242},"gold_ingot":{"id":266},"brown_terracotta":{"meta":12,"id":159},"leather":{"id":334},"diamond_leggings":{"id":312},"golden_chestplate":{"id":315},"light_gray_bed":{"meta":8,"id":355},"dandelion":{"id":37},"cookie":{"id":357},"oxeye_daisy":{"meta":8,"id":38},"cooked_salmon":{"meta":1,"id":350},"zombie_spawn_egg":{"meta":54,"id":383},"brown_concrete":{"meta":12,"id":251},"light_blue_banner":{"meta":12,"id":425},"cyan_concrete":{"meta":9,"id":251},"music_disc_stal":{"id":2263},"music_disc_chirp":{"id":2259},"redstone":{"id":331},"wheat_seeds":{"id":295},"smooth_stone":{"meta":8,"id":43},"stone_pressure_plate":{"id":70},"end_crystal":{"id":426},"wolf_spawn_egg":{"meta":95,"id":383},"shears":{"id":359},"experience_bottle":{"id":384},"black_shulker_box":{"id":234},"rabbit_hide":{"id":415},"comparator":{"id":404},"ender_eye":{"id":381},"oak_stairs":{"id":53},"chain_command_block":{"id":211},"lime_concrete":{"meta":5,"id":251},"cyan_concrete_powder":{"meta":9,"id":252},"gray_dye":{"meta":8,"id":351},"white_stained_glass":{"id":95},"orange_stained_glass":{"meta":1,"id":95},"cocoa_beans":{"meta":3,"id":351},"structure_void":{"id":217},"iron_nugget":{"id":452},"light_gray_wool":{"meta":8,"id":35},"birch_fence":{"id":189},"light_gray_terracotta":{"meta":8,"id":159},"skeleton_horse_spawn_egg":{"meta":28,"id":383},"granite":{"meta":1,"id":1},"beef":{"id":363},"green_stained_glass":{"meta":13,"id":95},"diamond_pickaxe":{"id":278},"tripwire":{"id":132},"cobblestone_wall":{"id":139},"sheep_spawn_egg":{"meta":91,"id":383},"polished_diorite":{"meta":4,"id":1},"carrots":{"id":141},"orange_concrete_powder":{"meta":1,"id":252},"sand":{"id":12},"music_disc_ward":{"id":2265},"mushroom_stew":{"id":282},"purpur_slab":{"id":205},"light_blue_carpet":{"meta":3,"id":171},"white_concrete":{"id":251},"nether_brick_stairs":{"id":114},"cyan_wool":{"meta":9,"id":35},"hay_block":{"id":170},"purpur_pillar":{"id":202},"carrot_on_a_stick":{"id":398},"light_blue_glazed_terracotta":{"id":238},"wheat":{"id":296},"slime_spawn_egg":{"meta":55,"id":383},"dark_oak_fence":{"id":191},"ocelot_spawn_egg":{"meta":98,"id":383},"vindicator_spawn_egg":{"meta":36,"id":383},"lime_stained_glass":{"meta":5,"id":95},"jukebox":{"id":84},"cyan_terracotta":{"meta":9,"id":159},"orange_tulip":{"meta":5,"id":38},"chorus_flower":{"id":200},"pink_terracotta":{"meta":6,"id":159},"ice":{"id":79},"snow_block":{"id":80},"acacia_fence":{"id":192},"infested_cracked_stone_bricks":{"meta":4,"id":97},"wooden_pickaxe":{"id":270},"blue_bed":{"meta":11,"id":355},"end_portal":{"id":119},"magenta_concrete":{"meta":2,"id":251},"lava_bucket":{"id":327},"red_wool":{"meta":14,"id":35},"music_disc_mall":{"id":2261},"birch_fence_gate":{"id":184},"grass_path":{"id":208},"gunpowder":{"id":289},"dragon_breath":{"id":437},"pumpkin_stem":{"id":104},"blue_concrete":{"meta":11,"id":251},"elytra":{"id":443},"frosted_ice":{"id":212},"structure_block":{"id":255},"iron_boots":{"id":309},"bowl":{"id":281},"skeleton_spawn_egg":{"meta":51,"id":383},"nether_quartz_ore":{"id":153},"lime_terracotta":{"meta":5,"id":159},"magenta_stained_glass_pane":{"meta":2,"id":160},"brown_glazed_terracotta":{"id":247},"light_gray_stained_glass":{"meta":8,"id":95},"white_bed":{"id":355},"red_concrete_powder":{"meta":14,"id":252},"brown_wool":{"meta":12,"id":35},"yellow_concrete_powder":{"meta":4,"id":252},"red_tulip":{"meta":4,"id":38},"green_concrete":{"meta":13,"id":251},"podzol":{"meta":2,"id":3},"white_concrete_powder":{"id":252},"quartz_pillar":{"meta":2,"id":155},"dandelion_yellow":{"meta":11,"id":351},"light_blue_bed":{"meta":3,"id":355},"birch_log":{"meta":2,"id":17},"orange_shulker_box":{"id":220},"milk_bucket":{"id":335},"cyan_bed":{"meta":9,"id":355},"azure_bluet":{"meta":3,"id":38},"brown_mushroom_block":{"id":99},"acacia_stairs":{"id":163},"red_stained_glass":{"meta":14,"id":95},"feather":{"id":288},"glass_bottle":{"id":374},"purple_wool":{"meta":10,"id":35},"magenta_bed":{"meta":2,"id":355},"ender_pearl":{"id":368},"nether_portal":{"id":90},"melon":{"id":103},"diamond_ore":{"id":56},"dragon_head":{"meta":5,"id":397},"diorite":{"meta":3,"id":1},"diamond_shovel":{"id":277},"leather_helmet":{"id":298},"light_gray_banner":{"meta":7,"id":425},"music_disc_far":{"id":2260},"gray_wool":{"meta":7,"id":35},"donkey_spawn_egg":{"meta":31,"id":383},"infested_chiseled_stone_bricks":{"meta":5,"id":97},"string":{"id":287},"iron_door":{"id":330},"rabbit_foot":{"id":414},"lime_bed":{"meta":5,"id":355},"nether_bricks":{"id":112},"purple_dye":{"meta":5,"id":351},"blue_terracotta":{"meta":11,"id":159},"diamond":{"id":264},"gold_nugget":{"id":371},"green_bed":{"meta":13,"id":355},"magenta_glazed_terracotta":{"id":237},"redstone_wire":{"id":55},"stone_button":{"id":77},"diamond_sword":{"id":276},"ender_chest":{"id":130},"black_glazed_terracotta":{"id":250},"diamond_axe":{"id":279},"iron_helmet":{"id":306},"brown_banner":{"meta":3,"id":425},"birch_boat":{"id":445},"beetroots":{"id":207},"black_stained_glass_pane":{"meta":15,"id":160},"villager_spawn_egg":{"meta":120,"id":383},"gold_block":{"id":41},"yellow_banner":{"meta":11,"id":425},"mutton":{"id":423},"stone_axe":{"id":275},"orange_bed":{"meta":1,"id":355},"lilac":{"meta":1,"id":175},"detector_rail":{"id":28},"enderman_spawn_egg":{"meta":58,"id":383},"acacia_slab":{"meta":4,"id":126},"flint":{"id":318},"birch_leaves":{"meta":2,"id":18},"jack_o_lantern":{"id":91},"lead":{"id":420},"purple_banner":{"meta":5,"id":425},"firework_rocket":{"id":401},"cactus":{"id":81},"chicken_spawn_egg":{"meta":93,"id":383},"purple_stained_glass_pane":{"meta":10,"id":160},"shulker_spawn_egg":{"meta":69,"id":383},"cocoa":{"id":127},"pink_shulker_box":{"id":225},"shulker_shell":{"id":450},"iron_chestplate":{"id":307},"elder_guardian_spawn_egg":{"meta":4,"id":383},"acacia_planks":{"meta":4,"id":5},"bone_block":{"id":216},"black_stained_glass":{"meta":15,"id":95},"blue_glazed_terracotta":{"id":246},"sandstone_stairs":{"id":128},"white_glazed_terracotta":{"id":235},"pink_glazed_terracotta":{"id":241},"zombie_pigman_spawn_egg":{"meta":57,"id":383},"player_head":{"meta":3,"id":397},"yellow_stained_glass_pane":{"meta":4,"id":160},"red_glazed_terracotta":{"id":249},"acacia_boat":{"id":447},"purple_terracotta":{"meta":10,"id":159},"large_fern":{"meta":3,"id":175},"magenta_stained_glass":{"meta":2,"id":95},"nether_brick_fence":{"id":113},"hopper":{"id":154},"fern":{"meta":2,"id":31},"orange_carpet":{"meta":1,"id":171},"green_glazed_terracotta":{"id":248},"orange_concrete":{"meta":1,"id":251},"emerald":{"id":388},"bow":{"id":261},"nether_star":{"id":399},"note_block":{"id":25},"light_blue_concrete":{"meta":3,"id":251},"pumpkin_pie":{"id":400},"black_bed":{"meta":15,"id":355},"redstone_lamp":{"id":123},"quartz_stairs":{"id":156},"blue_orchid":{"meta":1,"id":38},"chorus_plant":{"id":199},"oak_boat":{"id":333},"slime_ball":{"id":341},"oak_leaves":{"id":18},"stone_brick_slab":{"meta":5,"id":44},"flint_and_steel":{"id":259},"brown_carpet":{"meta":12,"id":171},"cooked_cod":{"id":350},"dragon_egg":{"id":122},"red_concrete":{"meta":14,"id":251},"glowstone_dust":{"id":348},"sticky_piston":{"id":29},"snow":{"id":78},"red_bed":{"meta":14,"id":355},"cyan_stained_glass":{"meta":9,"id":95},"music_disc_wait":{"id":2267},"glass_pane":{"id":102},"iron_shovel":{"id":256},"fishing_rod":{"id":346},"guardian_spawn_egg":{"meta":68,"id":383},"pink_banner":{"meta":9,"id":425},"cyan_shulker_box":{"id":228},"oak_trapdoor":{"id":96},"spruce_fence_gate":{"id":183},"birch_sapling":{"meta":2,"id":6},"diamond_block":{"id":57},"cod":{"id":349},"pink_dye":{"meta":9,"id":351},"totem_of_undying":{"id":449},"dead_bush":{"id":32},"stone_slab":{"meta":2,"id":44},"farmland":{"id":60},"bedrock":{"id":7},"infested_mossy_stone_bricks":{"meta":3,"id":97},"enchanted_golden_apple":{"meta":1,"id":322},"brick":{"id":336},"wooden_axe":{"id":271},"spruce_stairs":{"id":134},"activator_rail":{"id":157},"nether_wart":{"id":372},"nether_brick":{"id":405},"smooth_quartz":{"meta":7,"id":43},"oak_pressure_plate":{"id":72},"soul_sand":{"id":88},"light_blue_concrete_powder":{"meta":3,"id":252},"creeper_spawn_egg":{"meta":50,"id":383},"spawner":{"id":52},"glowstone":{"id":89},"nether_wart_block":{"id":214},"white_tulip":{"meta":6,"id":38},"light_gray_glazed_terracotta":{"id":243},"dark_oak_boat":{"id":448},"wooden_sword":{"id":268},"green_wool":{"meta":13,"id":35},"potion":{"id":373},"husk_spawn_egg":{"meta":23,"id":383},"music_disc_blocks":{"id":2258},"lime_glazed_terracotta":{"id":240},"blaze_spawn_egg":{"meta":61,"id":383},"black_banner":{"id":425},"light_blue_stained_glass_pane":{"meta":3,"id":160},"purple_concrete":{"meta":10,"id":251},"map":{"id":395},"oak_fence_gate":{"id":107},"tripwire_hook":{"id":131},"black_concrete_powder":{"meta":15,"id":252},"salmon":{"meta":1,"id":349},"cactus_green":{"meta":2,"id":351},"sign":{"id":323},"chipped_anvil":{"meta":1,"id":145},"cyan_banner":{"meta":6,"id":425},"book":{"id":340},"stone_brick_stairs":{"id":109},"gold_ore":{"id":14},"lava":{"id":11},"light_blue_wool":{"meta":3,"id":35},"birch_stairs":{"id":135},"blue_shulker_box":{"id":230},"horse_spawn_egg":{"meta":100,"id":383},"baked_potato":{"id":393},"chorus_fruit":{"id":432},"purpur_block":{"id":201},"rabbit":{"id":411},"daylight_detector":{"id":151},"pink_concrete":{"meta":6,"id":251},"cooked_porkchop":{"id":320},"mule_spawn_egg":{"meta":32,"id":383},"blue_banner":{"meta":4,"id":425},"clock":{"id":347},"quartz_block":{"id":155},"infested_stone":{"id":97},"lapis_lazuli":{"meta":4,"id":351},"bone":{"id":352},"coal_ore":{"id":16},"jungle_door":{"id":429},"lingering_potion":{"id":441},"stone_hoe":{"id":291},"bucket":{"id":325},"bread":{"id":297},"carrot":{"id":391},"torch":{"id":50},"blue_wool":{"meta":11,"id":35},"command_block_minecart":{"id":422},"blue_carpet":{"meta":11,"id":171},"diamond_boots":{"id":313},"diamond_horse_armor":{"id":419},"zombie_horse_spawn_egg":{"meta":29,"id":383},"melon_stem":{"id":105},"spruce_door":{"id":427},"cobblestone":{"id":4},"jungle_leaves":{"meta":3,"id":18},"powered_rail":{"id":27},"coal_block":{"id":173},"writable_book":{"id":386},"golden_helmet":{"id":314},"snowball":{"id":332},"brown_bed":{"meta":12,"id":355},"spectral_arrow":{"id":439},"command_block":{"id":137},"yellow_concrete":{"meta":4,"id":251},"llama_spawn_egg":{"meta":103,"id":383},"light_blue_terracotta":{"meta":3,"id":159},"gray_concrete":{"meta":7,"id":251},"packed_ice":{"id":174},"chainmail_boots":{"id":305},"red_terracotta":{"meta":14,"id":159},"emerald_block":{"id":133},"birch_slab":{"meta":2,"id":126},"pink_carpet":{"meta":6,"id":171},"water_bucket":{"id":326},"iron_bars":{"id":101},"melon_slice":{"id":360},"lapis_ore":{"id":21},"mycelium":{"id":110},"cut_red_sandstone":{"meta":2,"id":179},"gray_shulker_box":{"id":226},"anvil":{"id":145},"gray_carpet":{"meta":7,"id":171},"brown_stained_glass_pane":{"meta":12,"id":160},"obsidian":{"id":49},"sugar_cane":{"id":338},"brown_shulker_box":{"id":231},"purple_concrete_powder":{"meta":10,"id":252},"poisonous_potato":{"id":394},"oak_fence":{"id":85},"dark_oak_planks":{"meta":5,"id":5},"light_gray_dye":{"meta":7,"id":351},"tall_grass":{"meta":2,"id":175},"chiseled_stone_bricks":{"meta":3,"id":98},"charcoal":{"meta":1,"id":263},"clay":{"id":337},"beetroot_seeds":{"id":435},"gray_concrete_powder":{"meta":7,"id":252},"emerald_ore":{"id":129}}},"entity_type":{"default":"pig","id":3,"entries":{"zombie_horse":{"id":29},"egg":{"id":7},"arrow":{"id":10},"cow":{"id":92},"magma_cube":{"id":62},"pig":{"id":90},"skeleton":{"id":51},"llama":{"id":103},"mule":{"id":32},"husk":{"id":23},"bat":{"id":65},"experience_bottle":{"id":17},"rabbit":{"id":101},"silverfish":{"id":60},"armor_stand":{"id":30},"giant":{"id":53},"experience_orb":{"id":2},"zombie_pigman":{"id":57},"item":{"id":1},"stray":{"id":6},"shulker":{"id":69},"wither_skeleton":{"id":5},"vex":{"id":35},"ocelot":{"id":98},"item_frame":{"id":18},"vindicator":{"id":36},"horse":{"id":100},"firework":{"id":22},"minecart":{"id":42},"ender_dragon":{"id":63},"leash_knot":{"id":8},"spectral_arrow":{"id":24},"evoker":{"id":34},"mooshroom":{"id":96},"llama_spit":{"id":104},"snowball":{"id":11},"tnt":{"id":20},"shulker_bullet":{"id":25},"squid":{"id":94},"parrot":{"id":105},"creeper":{"id":50},"enderman":{"id":58},"dragon_fireball":{"id":26},"chicken":{"id":93},"donkey":{"id":31},"evoker_fangs":{"id":33},"chest_minecart":{"id":43},"slime":{"id":55},"iron_golem":{"id":99},"area_effect_cloud":{"id":3},"blaze":{"id":61},"end_crystal":{"id":200},"endermite":{"id":67},"ender_pearl":{"id":14},"zombie":{"id":54},"guardian":{"id":68},"ghast":{"id":56},"fireball":{"id":12},"sheep":{"id":91},"illusioner":{"id":37},"potion":{"id":16},"eye_of_ender":{"id":15},"wither_skull":{"id":19},"wolf":{"id":95},"villager":{"id":120},"skeleton_horse":{"id":28},"zombie_villager":{"id":27},"elder_guardian":{"id":4},"small_fireball":{"id":13},"boat":{"id":41},"polar_bear":{"id":102},"falling_block":{"id":21},"painting":{"id":9},"cave_spider":{"id":9},"witch":{"id":66},"snow_golem":{"id":97},"spider":{"id":52},"wither":{"id":64},"command_block_minecart":{"id":40}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"custom_stat":{"entries":{"leave_game":{},"play_one_minute":{},"time_since_death":{},"time_since_rest":{},"sneak_time":{},"walk_one_cm":{},"crouch_one_cm":{},"sprint_one_cm":{},"walk_on_water_one_cm":{},"fall_one_cm":{},"climb_one_cm":{},"fly_one_cm":{},"walk_under_water_one_cm":{},"minecart_one_cm":{},"boat_one_cm":{},"pig_one_cm":{},"horse_one_cm":{},"aviate_one_cm":{},"swim_one_cm":{},"jump":{},"drop":{},"damage_dealt":{},"damage_dealt_absorbed":{},"damage_dealt_resisted":{},"damage_taken":{},"damage_blocked_by_shield":{},"damage_absorbed":{},"damage_resisted":{},"deaths":{},"mob_kills":{},"animals_bred":{},"player_kills":{},"fish_caught":{},"talked_to_villager":{},"traded_with_villager":{},"eat_cake_slice":{},"fill_cauldron":{},"use_cauldron":{},"clean_armor":{},"clean_banner":{},"clean_shulker_box":{},"interact_with_brewingstand":{},"interact_with_beacon":{},"inspect_dropper":{},"inspect_hopper":{},"inspect_dispenser":{},"play_noteblock":{},"tune_noteblock":{},"pot_flower":{},"trigger_trapped_chest":{},"open_enderchest":{},"enchant_item":{},"play_record":{},"interact_with_furnace":{},"interact_with_crafting_table":{},"open_chest":{},"sleep_in_bed":{},"open_shulker_box":{},"open_barrel":{},"interact_with_blast_furnace":{},"interact_with_smoker":{},"interact_with_lectern":{},"interact_with_campfire":{},"interact_with_cartography_table":{},"interact_with_loom":{},"interact_with_stonecutter":{},"bell_ring":{},"raid_trigger":{},"raid_win":{},"interact_with_anvil":{},"interact_with_grindstone":{}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"grass":{"id":2},"dirt":{"id":3},"cobblestone":{"id":4},"planks":{"id":5},"sapling":{"id":6},"bedrock":{"id":7},"flowing_water":{"id":8},"water":{"id":9},"flowing_lava":{"id":10},"lava":{"id":11},"sand":{"id":12},"gravel":{"id":13},"gold_ore":{"id":14},"iron_ore":{"id":15},"coal_ore":{"id":16},"log":{"id":17},"leaves":{"id":18},"sponge":{"id":19},"glass":{"id":20},"lapis_ore":{"id":21},"lapis_block":{"id":22},"dispenser":{"id":23},"sandstone":{"id":24},"noteblock":{"id":25},"bed":{"id":26},"golden_rail":{"id":27},"detector_rail":{"id":28},"sticky_piston":{"id":29},"web":{"id":30},"tallgrass":{"id":31},"deadbush":{"id":32},"piston":{"id":33},"piston_head":{"id":34},"wool":{"id":35},"piston_extension":{"id":36},"yellow_flower":{"id":37},"red_flower":{"id":38},"brown_mushroom":{"id":39},"red_mushroom":{"id":40},"gold_block":{"id":41},"iron_block":{"id":42},"double_stone_slab":{"id":43},"stone_slab":{"id":44},"brick_block":{"id":45},"tnt":{"id":46},"bookshelf":{"id":47},"mossy_cobblestone":{"id":48},"obsidian":{"id":49},"torch":{"id":50},"fire":{"id":51},"mob_spawner":{"id":52},"oak_stairs":{"id":53},"chest":{"id":54},"redstone_wire":{"id":55},"diamond_ore":{"id":56},"diamond_block":{"id":57},"crafting_table":{"id":58},"wheat":{"id":59},"farmland":{"id":60},"furnace":{"id":61},"lit_furnace":{"id":62},"standing_sign":{"id":63},"wooden_door":{"id":64},"ladder":{"id":65},"rail":{"id":66},"stone_stairs":{"id":67},"wall_sign":{"id":68},"lever":{"id":69},"stone_pressure_plate":{"id":70},"iron_door":{"id":71},"wooden_pressure_plate":{"id":72},"redstone_ore":{"id":73},"lit_redstone_ore":{"id":74},"unlit_redstone_torch":{"id":75},"redstone_torch":{"id":76},"stone_button":{"id":77},"snow_layer":{"id":78},"ice":{"id":79},"snow":{"id":80},"cactus":{"id":81},"clay":{"id":82},"reeds":{"id":83},"jukebox":{"id":84},"fence":{"id":85},"pumpkin":{"id":86},"netherrack":{"id":87},"soul_sand":{"id":88},"glowstone":{"id":89},"portal":{"id":90},"lit_pumpkin":{"id":91},"cake":{"id":92},"unpowered_repeater":{"id":93},"powered_repeater":{"id":94},"stained_glass":{"id":95},"trapdoor":{"id":96},"monster_egg":{"id":97},"stonebrick":{"id":98},"brown_mushroom_block":{"id":99},"red_mushroom_block":{"id":100},"iron_bars":{"id":101},"glass_pane":{"id":102},"melon_block":{"id":103},"pumpkin_stem":{"id":104},"melon_stem":{"id":105},"vine":{"id":106},"fence_gate":{"id":107},"brick_stairs":{"id":108},"stone_brick_stairs":{"id":109},"mycelium":{"id":110},"waterlily":{"id":111},"nether_brick":{"id":112},"nether_brick_fence":{"id":113},"nether_brick_stairs":{"id":114},"nether_wart":{"id":115},"enchanting_table":{"id":116},"brewing_stand":{"id":117},"cauldron":{"id":118},"end_portal":{"id":119},"end_portal_frame":{"id":120},"end_stone":{"id":121},"dragon_egg":{"id":122},"redstone_lamp":{"id":123},"lit_redstone_lamp":{"id":124},"double_wooden_slab":{"id":125},"wooden_slab":{"id":126},"cocoa":{"id":127},"sandstone_stairs":{"id":128},"emerald_ore":{"id":129},"ender_chest":{"id":130},"tripwire_hook":{"id":131},"tripwire":{"id":132},"emerald_block":{"id":133},"spruce_stairs":{"id":134},"birch_stairs":{"id":135},"jungle_stairs":{"id":136},"command_block":{"id":137},"beacon":{"id":138},"cobblestone_wall":{"id":139},"flower_pot":{"id":140},"carrots":{"id":141},"potatoes":{"id":142},"wooden_button":{"id":143},"skull":{"id":144},"anvil":{"id":145},"trapped_chest":{"id":146},"light_weighted_pressure_plate":{"id":147},"heavy_weighted_pressure_plate":{"id":148},"unpowered_comparator":{"id":149},"powered_comparator":{"id":150},"daylight_detector":{"id":151},"redstone_block":{"id":152},"quartz_ore":{"id":153},"hopper":{"id":154},"quartz_block":{"id":155},"quartz_stairs":{"id":156},"activator_rail":{"id":157},"dropper":{"id":158},"stained_hardened_clay":{"id":159},"stained_glass_pane":{"id":160},"leaves2":{"id":161},"log2":{"id":162},"acacia_stairs":{"id":163},"dark_oak_stairs":{"id":164},"slime":{"id":165},"barrier":{"id":166},"iron_trapdoor":{"id":167},"prismarine":{"id":168},"sea_lantern":{"id":169},"hay_block":{"id":170},"carpet":{"id":171},"hardened_clay":{"id":172},"coal_block":{"id":173},"packed_ice":{"id":174},"double_plant":{"id":175},"standing_banner":{"id":176},"wall_banner":{"id":177},"daylight_detector_inverted":{"id":178},"red_sandstone":{"id":179},"red_sandstone_stairs":{"id":180},"double_stone_slab2":{"id":181},"stone_slab2":{"id":182},"spruce_fence_gate":{"id":183},"birch_fence_gate":{"id":184},"jungle_fence_gate":{"id":185},"dark_oak_fence_gate":{"id":186},"acacia_fence_gate":{"id":187},"spruce_fence":{"id":188},"birch_fence":{"id":189},"jungle_fence":{"id":190},"dark_oak_fence":{"id":191},"acacia_fence":{"id":192},"spruce_door":{"id":193},"birch_door":{"id":194},"jungle_door":{"id":195},"acacia_door":{"id":196},"dark_oak_door":{"id":197},"end_rod":{"id":198},"chorus_plant":{"id":199},"chorus_flower":{"id":200},"purpur_block":{"id":201},"purpur_pillar":{"id":202},"purpur_stairs":{"id":203},"purpur_double_slab":{"id":204},"purpur_slab":{"id":205},"end_bricks":{"id":206},"beetroots":{"id":207},"grass_path":{"id":208},"end_gateway":{"id":209},"repeating_command_block":{"id":210},"chain_command_block":{"id":211},"frosted_ice":{"id":212},"magma":{"id":213},"nether_wart_block":{"id":214},"red_nether_brick":{"id":215},"bone_block":{"id":216},"structure_void":{"id":217},"observer":{"id":218},"white_shulkerbox":{"id":219},"orange_shulkerbox":{"id":220},"magenta_shulkerbox":{"id":221},"light_blue_shulkerbox":{"id":222},"yellow_shulkerbox":{"id":223},"lime_shulkerbox":{"id":224},"pink_shulkerbox":{"id":225},"gray_shulkerbox":{"id":226},"silver_shulkerbox":{"id":227},"cyan_shulkerbox":{"id":228},"purple_shulkerbox":{"id":229},"blue_shulkerbox":{"id":230},"brown_shulkerbox":{"id":231},"green_shulkerbox":{"id":232},"red_shulkerbox":{"id":233},"black_shulkerbox":{"id":234},"white_glazed_terracotta":{"id":235},"orange_glazed_terracotta":{"id":236},"magenta_glazed_terracotta":{"id":237},"light_blue_glazed_terracotta":{"id":238},"yellow_glazed_terracotta":{"id":239},"lime_glazed_terracotta":{"id":240},"pink_glazed_terracotta":{"id":241},"gray_glazed_terracotta":{"id":242},"silver_glazed_terracotta":{"id":243},"cyan_glazed_terracotta":{"id":244},"purple_glazed_terracotta":{"id":245},"blue_glazed_terracotta":{"id":246},"brown_glazed_terracotta":{"id":247},"green_glazed_terracotta":{"id":248},"red_glazed_terracotta":{"id":249},"black_glazed_terracotta":{"id":250},"concrete":{"id":251},"concrete_powder":{"id":252},"structure_block":{"id":255}}},"motive":{"default":"kebab","entries":{"kebab":{},"aztec":{},"alban":{},"aztec2":{},"bomb":{},"plant":{},"wasteland":{},"pool":{},"courbet":{},"sea":{},"sunset":{},"creebet":{},"wanderer":{},"graham":{},"match":{},"bust":{},"stage":{},"void":{},"skull_and_roses":{},"wither":{},"fighters":{},"pointer":{},"pigscene":{},"burning_skull":{},"skeleton":{},"donkey_kong":{}}},"particle_type":{"id":13,"entries":{"explode":{"id":0},"largeexplode":{"id":1},"hugeexplosion":{"id":2},"fireworksSpark":{"id":3},"bubble":{"id":4},"splash":{"id":5},"wake":{"id":6},"suspended":{"id":7},"depthsuspend":{"id":8},"crit":{"id":9},"magicCrit":{"id":10},"smoke":{"id":11},"largesmoke":{"id":12},"spell":{"id":13},"instantSpell":{"id":14},"mobSpell":{"id":15},"mobSpellAmbient":{"id":16},"witchMagic":{"id":17},"dripWater":{"id":18},"dripLava":{"id":19},"angryVillager":{"id":20},"happyVillager":{"id":21},"townaura":{"id":22},"note":{"id":23},"portal":{"id":24},"enchantmenttable":{"id":25},"flame":{"id":26},"lava":{"id":27},"footstep":{"id":28},"cloud":{"id":29},"reddust":{"id":30},"snowballpoof":{"id":31},"snowshovel":{"id":32},"slime":{"id":33},"heart":{"id":34},"barrier":{"id":35},"iconcrack":{"id":36},"blockcrack":{"id":37},"blockdust":{"id":38},"droplet":{"id":39},"take":{"id":40},"mobappearance":{"id":41},"dragonbreath":{"id":42},"endrod":{"id":43},"damageindicator":{"id":44},"sweepattack":{"id":45},"fallingdust":{"id":46},"totem":{"id":47},"spit":{"id":48}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"dimension_type":{"id":17,"entries":{"overworld":{"id":0,"has_skylight":true},"the_nether":{"id":1,"has_skylight":false},"the_end":{"id":-1,"has_skylight":false}}}}}
\ No newline at end of file
diff --git a/src/main/resources/assets/mapping/1.13.2/registries.json b/src/main/resources/assets/mapping/1.13.2/registries.json
index 4dc1a99d9..4ecfea315 100644
--- a/src/main/resources/assets/mapping/1.13.2/registries.json
+++ b/src/main/resources/assets/mapping/1.13.2/registries.json
@@ -1 +1 @@
-{"minecraft":{"item":{"default":"air","id":5,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"brown_mushroom":{"id":108},"red_mushroom":{"id":109},"gold_block":{"id":110},"iron_block":{"id":111},"oak_slab":{"id":112},"spruce_slab":{"id":113},"birch_slab":{"id":114},"jungle_slab":{"id":115},"acacia_slab":{"id":116},"dark_oak_slab":{"id":117},"stone_slab":{"id":118},"sandstone_slab":{"id":119},"petrified_oak_slab":{"id":120},"cobblestone_slab":{"id":121},"brick_slab":{"id":122},"stone_brick_slab":{"id":123},"nether_brick_slab":{"id":124},"quartz_slab":{"id":125},"red_sandstone_slab":{"id":126},"purpur_slab":{"id":127},"prismarine_slab":{"id":128},"prismarine_brick_slab":{"id":129},"dark_prismarine_slab":{"id":130},"smooth_quartz":{"id":131},"smooth_red_sandstone":{"id":132},"smooth_sandstone":{"id":133},"smooth_stone":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"end_rod":{"id":141},"chorus_plant":{"id":142},"chorus_flower":{"id":143},"purpur_block":{"id":144},"purpur_pillar":{"id":145},"purpur_stairs":{"id":146},"spawner":{"id":147},"oak_stairs":{"id":148},"chest":{"id":149},"diamond_ore":{"id":150},"diamond_block":{"id":151},"crafting_table":{"id":152},"farmland":{"id":153},"furnace":{"id":154},"ladder":{"id":155},"rail":{"id":156},"cobblestone_stairs":{"id":157},"lever":{"id":158},"stone_pressure_plate":{"id":159},"oak_pressure_plate":{"id":160},"spruce_pressure_plate":{"id":161},"birch_pressure_plate":{"id":162},"jungle_pressure_plate":{"id":163},"acacia_pressure_plate":{"id":164},"dark_oak_pressure_plate":{"id":165},"redstone_ore":{"id":166},"redstone_torch":{"id":167},"stone_button":{"id":168},"snow":{"id":169},"ice":{"id":170},"snow_block":{"id":171},"cactus":{"id":172},"clay":{"id":173},"jukebox":{"id":174},"oak_fence":{"id":175},"spruce_fence":{"id":176},"birch_fence":{"id":177},"jungle_fence":{"id":178},"acacia_fence":{"id":179},"dark_oak_fence":{"id":180},"pumpkin":{"id":181},"carved_pumpkin":{"id":182},"netherrack":{"id":183},"soul_sand":{"id":184},"glowstone":{"id":185},"jack_o_lantern":{"id":186},"oak_trapdoor":{"id":187},"spruce_trapdoor":{"id":188},"birch_trapdoor":{"id":189},"jungle_trapdoor":{"id":190},"acacia_trapdoor":{"id":191},"dark_oak_trapdoor":{"id":192},"infested_stone":{"id":193},"infested_cobblestone":{"id":194},"infested_stone_bricks":{"id":195},"infested_mossy_stone_bricks":{"id":196},"infested_cracked_stone_bricks":{"id":197},"infested_chiseled_stone_bricks":{"id":198},"stone_bricks":{"id":199},"mossy_stone_bricks":{"id":200},"cracked_stone_bricks":{"id":201},"chiseled_stone_bricks":{"id":202},"brown_mushroom_block":{"id":203},"red_mushroom_block":{"id":204},"mushroom_stem":{"id":205},"iron_bars":{"id":206},"glass_pane":{"id":207},"melon":{"id":208},"vine":{"id":209},"oak_fence_gate":{"id":210},"spruce_fence_gate":{"id":211},"birch_fence_gate":{"id":212},"jungle_fence_gate":{"id":213},"acacia_fence_gate":{"id":214},"dark_oak_fence_gate":{"id":215},"brick_stairs":{"id":216},"stone_brick_stairs":{"id":217},"mycelium":{"id":218},"lily_pad":{"id":219},"nether_bricks":{"id":220},"nether_brick_fence":{"id":221},"nether_brick_stairs":{"id":222},"enchanting_table":{"id":223},"end_portal_frame":{"id":224},"end_stone":{"id":225},"end_stone_bricks":{"id":226},"dragon_egg":{"id":227},"redstone_lamp":{"id":228},"sandstone_stairs":{"id":229},"emerald_ore":{"id":230},"ender_chest":{"id":231},"tripwire_hook":{"id":232},"emerald_block":{"id":233},"spruce_stairs":{"id":234},"birch_stairs":{"id":235},"jungle_stairs":{"id":236},"command_block":{"id":237},"beacon":{"id":238},"cobblestone_wall":{"id":239},"mossy_cobblestone_wall":{"id":240},"oak_button":{"id":241},"spruce_button":{"id":242},"birch_button":{"id":243},"jungle_button":{"id":244},"acacia_button":{"id":245},"dark_oak_button":{"id":246},"anvil":{"id":247},"chipped_anvil":{"id":248},"damaged_anvil":{"id":249},"trapped_chest":{"id":250},"light_weighted_pressure_plate":{"id":251},"heavy_weighted_pressure_plate":{"id":252},"daylight_detector":{"id":253},"redstone_block":{"id":254},"nether_quartz_ore":{"id":255},"hopper":{"id":256},"chiseled_quartz_block":{"id":257},"quartz_block":{"id":258},"quartz_pillar":{"id":259},"quartz_stairs":{"id":260},"activator_rail":{"id":261},"dropper":{"id":262},"white_terracotta":{"id":263},"orange_terracotta":{"id":264},"magenta_terracotta":{"id":265},"light_blue_terracotta":{"id":266},"yellow_terracotta":{"id":267},"lime_terracotta":{"id":268},"pink_terracotta":{"id":269},"gray_terracotta":{"id":270},"light_gray_terracotta":{"id":271},"cyan_terracotta":{"id":272},"purple_terracotta":{"id":273},"blue_terracotta":{"id":274},"brown_terracotta":{"id":275},"green_terracotta":{"id":276},"red_terracotta":{"id":277},"black_terracotta":{"id":278},"barrier":{"id":279},"iron_trapdoor":{"id":280},"hay_block":{"id":281},"white_carpet":{"id":282},"orange_carpet":{"id":283},"magenta_carpet":{"id":284},"light_blue_carpet":{"id":285},"yellow_carpet":{"id":286},"lime_carpet":{"id":287},"pink_carpet":{"id":288},"gray_carpet":{"id":289},"light_gray_carpet":{"id":290},"cyan_carpet":{"id":291},"purple_carpet":{"id":292},"blue_carpet":{"id":293},"brown_carpet":{"id":294},"green_carpet":{"id":295},"red_carpet":{"id":296},"black_carpet":{"id":297},"terracotta":{"id":298},"coal_block":{"id":299},"packed_ice":{"id":300},"acacia_stairs":{"id":301},"dark_oak_stairs":{"id":302},"slime_block":{"id":303},"grass_path":{"id":304},"sunflower":{"id":305},"lilac":{"id":306},"rose_bush":{"id":307},"peony":{"id":308},"tall_grass":{"id":309},"large_fern":{"id":310},"white_stained_glass":{"id":311},"orange_stained_glass":{"id":312},"magenta_stained_glass":{"id":313},"light_blue_stained_glass":{"id":314},"yellow_stained_glass":{"id":315},"lime_stained_glass":{"id":316},"pink_stained_glass":{"id":317},"gray_stained_glass":{"id":318},"light_gray_stained_glass":{"id":319},"cyan_stained_glass":{"id":320},"purple_stained_glass":{"id":321},"blue_stained_glass":{"id":322},"brown_stained_glass":{"id":323},"green_stained_glass":{"id":324},"red_stained_glass":{"id":325},"black_stained_glass":{"id":326},"white_stained_glass_pane":{"id":327},"orange_stained_glass_pane":{"id":328},"magenta_stained_glass_pane":{"id":329},"light_blue_stained_glass_pane":{"id":330},"yellow_stained_glass_pane":{"id":331},"lime_stained_glass_pane":{"id":332},"pink_stained_glass_pane":{"id":333},"gray_stained_glass_pane":{"id":334},"light_gray_stained_glass_pane":{"id":335},"cyan_stained_glass_pane":{"id":336},"purple_stained_glass_pane":{"id":337},"blue_stained_glass_pane":{"id":338},"brown_stained_glass_pane":{"id":339},"green_stained_glass_pane":{"id":340},"red_stained_glass_pane":{"id":341},"black_stained_glass_pane":{"id":342},"prismarine":{"id":343},"prismarine_bricks":{"id":344},"dark_prismarine":{"id":345},"prismarine_stairs":{"id":346},"prismarine_brick_stairs":{"id":347},"dark_prismarine_stairs":{"id":348},"sea_lantern":{"id":349},"red_sandstone":{"id":350},"chiseled_red_sandstone":{"id":351},"cut_red_sandstone":{"id":352},"red_sandstone_stairs":{"id":353},"repeating_command_block":{"id":354},"chain_command_block":{"id":355},"magma_block":{"id":356},"nether_wart_block":{"id":357},"red_nether_bricks":{"id":358},"bone_block":{"id":359},"structure_void":{"id":360},"observer":{"id":361},"shulker_box":{"id":362},"white_shulker_box":{"id":363},"orange_shulker_box":{"id":364},"magenta_shulker_box":{"id":365},"light_blue_shulker_box":{"id":366},"yellow_shulker_box":{"id":367},"lime_shulker_box":{"id":368},"pink_shulker_box":{"id":369},"gray_shulker_box":{"id":370},"light_gray_shulker_box":{"id":371},"cyan_shulker_box":{"id":372},"purple_shulker_box":{"id":373},"blue_shulker_box":{"id":374},"brown_shulker_box":{"id":375},"green_shulker_box":{"id":376},"red_shulker_box":{"id":377},"black_shulker_box":{"id":378},"white_glazed_terracotta":{"id":379},"orange_glazed_terracotta":{"id":380},"magenta_glazed_terracotta":{"id":381},"light_blue_glazed_terracotta":{"id":382},"yellow_glazed_terracotta":{"id":383},"lime_glazed_terracotta":{"id":384},"pink_glazed_terracotta":{"id":385},"gray_glazed_terracotta":{"id":386},"light_gray_glazed_terracotta":{"id":387},"cyan_glazed_terracotta":{"id":388},"purple_glazed_terracotta":{"id":389},"blue_glazed_terracotta":{"id":390},"brown_glazed_terracotta":{"id":391},"green_glazed_terracotta":{"id":392},"red_glazed_terracotta":{"id":393},"black_glazed_terracotta":{"id":394},"white_concrete":{"id":395},"orange_concrete":{"id":396},"magenta_concrete":{"id":397},"light_blue_concrete":{"id":398},"yellow_concrete":{"id":399},"lime_concrete":{"id":400},"pink_concrete":{"id":401},"gray_concrete":{"id":402},"light_gray_concrete":{"id":403},"cyan_concrete":{"id":404},"purple_concrete":{"id":405},"blue_concrete":{"id":406},"brown_concrete":{"id":407},"green_concrete":{"id":408},"red_concrete":{"id":409},"black_concrete":{"id":410},"white_concrete_powder":{"id":411},"orange_concrete_powder":{"id":412},"magenta_concrete_powder":{"id":413},"light_blue_concrete_powder":{"id":414},"yellow_concrete_powder":{"id":415},"lime_concrete_powder":{"id":416},"pink_concrete_powder":{"id":417},"gray_concrete_powder":{"id":418},"light_gray_concrete_powder":{"id":419},"cyan_concrete_powder":{"id":420},"purple_concrete_powder":{"id":421},"blue_concrete_powder":{"id":422},"brown_concrete_powder":{"id":423},"green_concrete_powder":{"id":424},"red_concrete_powder":{"id":425},"black_concrete_powder":{"id":426},"turtle_egg":{"id":427},"dead_tube_coral_block":{"id":428},"dead_brain_coral_block":{"id":429},"dead_bubble_coral_block":{"id":430},"dead_fire_coral_block":{"id":431},"dead_horn_coral_block":{"id":432},"tube_coral_block":{"id":433},"brain_coral_block":{"id":434},"bubble_coral_block":{"id":435},"fire_coral_block":{"id":436},"horn_coral_block":{"id":437},"tube_coral":{"id":438},"brain_coral":{"id":439},"bubble_coral":{"id":440},"fire_coral":{"id":441},"horn_coral":{"id":442},"dead_brain_coral":{"id":443},"dead_bubble_coral":{"id":444},"dead_fire_coral":{"id":445},"dead_horn_coral":{"id":446},"dead_tube_coral":{"id":447},"tube_coral_fan":{"id":448},"brain_coral_fan":{"id":449},"bubble_coral_fan":{"id":450},"fire_coral_fan":{"id":451},"horn_coral_fan":{"id":452},"dead_tube_coral_fan":{"id":453},"dead_brain_coral_fan":{"id":454},"dead_bubble_coral_fan":{"id":455},"dead_fire_coral_fan":{"id":456},"dead_horn_coral_fan":{"id":457},"blue_ice":{"id":458},"conduit":{"id":459},"iron_door":{"id":460},"oak_door":{"id":461},"spruce_door":{"id":462},"birch_door":{"id":463},"jungle_door":{"id":464},"acacia_door":{"id":465},"dark_oak_door":{"id":466},"repeater":{"id":467},"comparator":{"id":468},"structure_block":{"id":469},"turtle_helmet":{"id":470},"scute":{"id":471},"iron_shovel":{"id":472},"iron_pickaxe":{"id":473},"iron_axe":{"id":474},"flint_and_steel":{"id":475},"apple":{"id":476},"bow":{"id":477},"arrow":{"id":478},"coal":{"id":479},"charcoal":{"id":480},"diamond":{"id":481},"iron_ingot":{"id":482},"gold_ingot":{"id":483},"iron_sword":{"id":484},"wooden_sword":{"id":485},"wooden_shovel":{"id":486},"wooden_pickaxe":{"id":487},"wooden_axe":{"id":488},"stone_sword":{"id":489},"stone_shovel":{"id":490},"stone_pickaxe":{"id":491},"stone_axe":{"id":492},"diamond_sword":{"id":493},"diamond_shovel":{"id":494},"diamond_pickaxe":{"id":495},"diamond_axe":{"id":496},"stick":{"id":497},"bowl":{"id":498},"mushroom_stew":{"id":499},"golden_sword":{"id":500},"golden_shovel":{"id":501},"golden_pickaxe":{"id":502},"golden_axe":{"id":503},"string":{"id":504},"feather":{"id":505},"gunpowder":{"id":506},"wooden_hoe":{"id":507},"stone_hoe":{"id":508},"iron_hoe":{"id":509},"diamond_hoe":{"id":510},"golden_hoe":{"id":511},"wheat_seeds":{"id":512},"wheat":{"id":513},"bread":{"id":514},"leather_helmet":{"id":515},"leather_chestplate":{"id":516},"leather_leggings":{"id":517},"leather_boots":{"id":518},"chainmail_helmet":{"id":519},"chainmail_chestplate":{"id":520},"chainmail_leggings":{"id":521},"chainmail_boots":{"id":522},"iron_helmet":{"id":523},"iron_chestplate":{"id":524},"iron_leggings":{"id":525},"iron_boots":{"id":526},"diamond_helmet":{"id":527},"diamond_chestplate":{"id":528},"diamond_leggings":{"id":529},"diamond_boots":{"id":530},"golden_helmet":{"id":531},"golden_chestplate":{"id":532},"golden_leggings":{"id":533},"golden_boots":{"id":534},"flint":{"id":535},"porkchop":{"id":536},"cooked_porkchop":{"id":537},"painting":{"id":538},"golden_apple":{"id":539},"enchanted_golden_apple":{"id":540},"sign":{"id":541},"bucket":{"id":542},"water_bucket":{"id":543},"lava_bucket":{"id":544},"minecart":{"id":545},"saddle":{"id":546},"redstone":{"id":547},"snowball":{"id":548},"oak_boat":{"id":549},"leather":{"id":550},"milk_bucket":{"id":551},"pufferfish_bucket":{"id":552},"salmon_bucket":{"id":553},"cod_bucket":{"id":554},"tropical_fish_bucket":{"id":555},"brick":{"id":556},"clay_ball":{"id":557},"sugar_cane":{"id":558},"kelp":{"id":559},"dried_kelp_block":{"id":560},"paper":{"id":561},"book":{"id":562},"slime_ball":{"id":563},"chest_minecart":{"id":564},"furnace_minecart":{"id":565},"egg":{"id":566},"compass":{"id":567},"fishing_rod":{"id":568},"clock":{"id":569},"glowstone_dust":{"id":570},"cod":{"id":571},"salmon":{"id":572},"tropical_fish":{"id":573},"pufferfish":{"id":574},"cooked_cod":{"id":575},"cooked_salmon":{"id":576},"ink_sac":{"id":577},"rose_red":{"id":578},"cactus_green":{"id":579},"cocoa_beans":{"id":580},"lapis_lazuli":{"id":581},"purple_dye":{"id":582},"cyan_dye":{"id":583},"light_gray_dye":{"id":584},"gray_dye":{"id":585},"pink_dye":{"id":586},"lime_dye":{"id":587},"dandelion_yellow":{"id":588},"light_blue_dye":{"id":589},"magenta_dye":{"id":590},"orange_dye":{"id":591},"bone_meal":{"id":592},"bone":{"id":593},"sugar":{"id":594},"cake":{"id":595},"white_bed":{"id":596},"orange_bed":{"id":597},"magenta_bed":{"id":598},"light_blue_bed":{"id":599},"yellow_bed":{"id":600},"lime_bed":{"id":601},"pink_bed":{"id":602},"gray_bed":{"id":603},"light_gray_bed":{"id":604},"cyan_bed":{"id":605},"purple_bed":{"id":606},"blue_bed":{"id":607},"brown_bed":{"id":608},"green_bed":{"id":609},"red_bed":{"id":610},"black_bed":{"id":611},"cookie":{"id":612},"filled_map":{"id":613},"shears":{"id":614},"melon_slice":{"id":615},"dried_kelp":{"id":616},"pumpkin_seeds":{"id":617},"melon_seeds":{"id":618},"beef":{"id":619},"cooked_beef":{"id":620},"chicken":{"id":621},"cooked_chicken":{"id":622},"rotten_flesh":{"id":623},"ender_pearl":{"id":624},"blaze_rod":{"id":625},"ghast_tear":{"id":626},"gold_nugget":{"id":627},"nether_wart":{"id":628},"potion":{"id":629},"glass_bottle":{"id":630},"spider_eye":{"id":631},"fermented_spider_eye":{"id":632},"blaze_powder":{"id":633},"magma_cream":{"id":634},"brewing_stand":{"id":635},"cauldron":{"id":636},"ender_eye":{"id":637},"glistering_melon_slice":{"id":638},"bat_spawn_egg":{"id":639},"blaze_spawn_egg":{"id":640},"cave_spider_spawn_egg":{"id":641},"chicken_spawn_egg":{"id":642},"cod_spawn_egg":{"id":643},"cow_spawn_egg":{"id":644},"creeper_spawn_egg":{"id":645},"dolphin_spawn_egg":{"id":646},"donkey_spawn_egg":{"id":647},"drowned_spawn_egg":{"id":648},"elder_guardian_spawn_egg":{"id":649},"enderman_spawn_egg":{"id":650},"endermite_spawn_egg":{"id":651},"evoker_spawn_egg":{"id":652},"ghast_spawn_egg":{"id":653},"guardian_spawn_egg":{"id":654},"horse_spawn_egg":{"id":655},"husk_spawn_egg":{"id":656},"llama_spawn_egg":{"id":657},"magma_cube_spawn_egg":{"id":658},"mooshroom_spawn_egg":{"id":659},"mule_spawn_egg":{"id":660},"ocelot_spawn_egg":{"id":661},"parrot_spawn_egg":{"id":662},"phantom_spawn_egg":{"id":663},"pig_spawn_egg":{"id":664},"polar_bear_spawn_egg":{"id":665},"pufferfish_spawn_egg":{"id":666},"rabbit_spawn_egg":{"id":667},"salmon_spawn_egg":{"id":668},"sheep_spawn_egg":{"id":669},"shulker_spawn_egg":{"id":670},"silverfish_spawn_egg":{"id":671},"skeleton_spawn_egg":{"id":672},"skeleton_horse_spawn_egg":{"id":673},"slime_spawn_egg":{"id":674},"spider_spawn_egg":{"id":675},"squid_spawn_egg":{"id":676},"stray_spawn_egg":{"id":677},"tropical_fish_spawn_egg":{"id":678},"turtle_spawn_egg":{"id":679},"vex_spawn_egg":{"id":680},"villager_spawn_egg":{"id":681},"vindicator_spawn_egg":{"id":682},"witch_spawn_egg":{"id":683},"wither_skeleton_spawn_egg":{"id":684},"wolf_spawn_egg":{"id":685},"zombie_spawn_egg":{"id":686},"zombie_horse_spawn_egg":{"id":687},"zombie_pigman_spawn_egg":{"id":688},"zombie_villager_spawn_egg":{"id":689},"experience_bottle":{"id":690},"fire_charge":{"id":691},"writable_book":{"id":692},"written_book":{"id":693},"emerald":{"id":694},"item_frame":{"id":695},"flower_pot":{"id":696},"carrot":{"id":697},"potato":{"id":698},"baked_potato":{"id":699},"poisonous_potato":{"id":700},"map":{"id":701},"golden_carrot":{"id":702},"skeleton_skull":{"id":703},"wither_skeleton_skull":{"id":704},"player_head":{"id":705},"zombie_head":{"id":706},"creeper_head":{"id":707},"dragon_head":{"id":708},"carrot_on_a_stick":{"id":709},"nether_star":{"id":710},"pumpkin_pie":{"id":711},"firework_rocket":{"id":712},"firework_star":{"id":713},"enchanted_book":{"id":714},"nether_brick":{"id":715},"quartz":{"id":716},"tnt_minecart":{"id":717},"hopper_minecart":{"id":718},"prismarine_shard":{"id":719},"prismarine_crystals":{"id":720},"rabbit":{"id":721},"cooked_rabbit":{"id":722},"rabbit_stew":{"id":723},"rabbit_foot":{"id":724},"rabbit_hide":{"id":725},"armor_stand":{"id":726},"iron_horse_armor":{"id":727},"golden_horse_armor":{"id":728},"diamond_horse_armor":{"id":729},"lead":{"id":730},"name_tag":{"id":731},"command_block_minecart":{"id":732},"mutton":{"id":733},"cooked_mutton":{"id":734},"white_banner":{"id":735},"orange_banner":{"id":736},"magenta_banner":{"id":737},"light_blue_banner":{"id":738},"yellow_banner":{"id":739},"lime_banner":{"id":740},"pink_banner":{"id":741},"gray_banner":{"id":742},"light_gray_banner":{"id":743},"cyan_banner":{"id":744},"purple_banner":{"id":745},"blue_banner":{"id":746},"brown_banner":{"id":747},"green_banner":{"id":748},"red_banner":{"id":749},"black_banner":{"id":750},"end_crystal":{"id":751},"chorus_fruit":{"id":752},"popped_chorus_fruit":{"id":753},"beetroot":{"id":754},"beetroot_seeds":{"id":755},"beetroot_soup":{"id":756},"dragon_breath":{"id":757},"splash_potion":{"id":758},"spectral_arrow":{"id":759},"tipped_arrow":{"id":760},"lingering_potion":{"id":761},"shield":{"id":762},"elytra":{"id":763},"spruce_boat":{"id":764},"birch_boat":{"id":765},"jungle_boat":{"id":766},"acacia_boat":{"id":767},"dark_oak_boat":{"id":768},"totem_of_undying":{"id":769},"shulker_shell":{"id":770},"iron_nugget":{"id":771},"knowledge_book":{"id":772},"debug_stick":{"id":773},"music_disc_13":{"id":774},"music_disc_cat":{"id":775},"music_disc_blocks":{"id":776},"music_disc_chirp":{"id":777},"music_disc_far":{"id":778},"music_disc_mall":{"id":779},"music_disc_mellohi":{"id":780},"music_disc_stal":{"id":781},"music_disc_strad":{"id":782},"music_disc_ward":{"id":783},"music_disc_11":{"id":784},"music_disc_wait":{"id":785},"trident":{"id":786},"phantom_membrane":{"id":787},"nautilus_shell":{"id":788},"heart_of_the_sea":{"id":789}}},"entity_type":{"default":"pig","id":3,"entries":{"zombie_horse":{"id":88},"egg":{"id":74},"arrow":{"id":2},"cow":{"id":9},"spawner_minecart":{"id":44},"magma_cube":{"id":38},"pig":{"id":51},"skeleton":{"id":62},"llama":{"id":36},"mule":{"id":46},"husk":{"id":30},"bat":{"id":3},"experience_bottle":{"id":76},"rabbit":{"id":56},"silverfish":{"id":61},"armor_stand":{"id":1},"giant":{"id":27},"drowned":{"id":14},"experience_orb":{"id":22},"zombie_pigman":{"id":53},"dolphin":{"id":12},"item":{"id":32},"stray":{"id":71},"shulker":{"id":59},"turtle":{"id":73},"wither_skeleton":{"id":84},"vex":{"id":78},"salmon":{"id":57},"ocelot":{"id":48},"furnace_minecart":{"id":42},"item_frame":{"id":33},"vindicator":{"id":81},"horse":{"id":29},"phantom":{"id":90},"firework":{"id":25},"minecart":{"id":39},"ender_dragon":{"id":17},"leash_knot":{"id":35},"spectral_arrow":{"id":68},"evoker":{"id":21},"mooshroom":{"id":47},"llama_spit":{"id":37},"snowball":{"id":67},"tnt":{"id":55},"shulker_bullet":{"id":60},"squid":{"id":70},"parrot":{"id":50},"creeper":{"id":10},"lightning_bolt":{"id":91},"enderman":{"id":18},"dragon_fireball":{"id":13},"chicken":{"id":7},"donkey":{"id":11},"evoker_fangs":{"id":20},"chest_minecart":{"id":40},"tropical_fish":{"id":72},"slime":{"id":64},"iron_golem":{"id":80},"area_effect_cloud":{"id":0},"blaze":{"id":4},"end_crystal":{"id":16},"endermite":{"id":19},"ender_pearl":{"id":75},"zombie":{"id":87},"guardian":{"id":28},"ghast":{"id":26},"fireball":{"id":34},"sheep":{"id":58},"player":{"id":92},"illusioner":{"id":31},"pufferfish":{"id":52},"potion":{"id":77},"trident":{"id":94},"eye_of_ender":{"id":23},"wither_skull":{"id":85},"wolf":{"id":86},"villager":{"id":79},"skeleton_horse":{"id":63},"fishing_bobber":{"id":93},"zombie_villager":{"id":89},"tnt_minecart":{"id":45},"elder_guardian":{"id":15},"small_fireball":{"id":65},"boat":{"id":5},"polar_bear":{"id":54},"hopper_minecart":{"id":43},"falling_block":{"id":24},"painting":{"id":49},"cave_spider":{"id":6},"witch":{"id":82},"snow_golem":{"id":66},"cod":{"id":8},"spider":{"id":69},"wither":{"id":83},"command_block_minecart":{"id":41}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"custom_stat":{"entries":{"leave_game":{},"play_one_minute":{},"time_since_death":{},"time_since_rest":{},"sneak_time":{},"walk_one_cm":{},"crouch_one_cm":{},"sprint_one_cm":{},"walk_on_water_one_cm":{},"fall_one_cm":{},"climb_one_cm":{},"fly_one_cm":{},"walk_under_water_one_cm":{},"minecart_one_cm":{},"boat_one_cm":{},"pig_one_cm":{},"horse_one_cm":{},"aviate_one_cm":{},"swim_one_cm":{},"jump":{},"drop":{},"damage_dealt":{},"damage_dealt_absorbed":{},"damage_dealt_resisted":{},"damage_taken":{},"damage_blocked_by_shield":{},"damage_absorbed":{},"damage_resisted":{},"deaths":{},"mob_kills":{},"animals_bred":{},"player_kills":{},"fish_caught":{},"talked_to_villager":{},"traded_with_villager":{},"eat_cake_slice":{},"fill_cauldron":{},"use_cauldron":{},"clean_armor":{},"clean_banner":{},"clean_shulker_box":{},"interact_with_brewingstand":{},"interact_with_beacon":{},"inspect_dropper":{},"inspect_hopper":{},"inspect_dispenser":{},"play_noteblock":{},"tune_noteblock":{},"pot_flower":{},"trigger_trapped_chest":{},"open_enderchest":{},"enchant_item":{},"play_record":{},"interact_with_furnace":{},"interact_with_crafting_table":{},"open_chest":{},"sleep_in_bed":{},"open_shulker_box":{},"open_barrel":{},"interact_with_blast_furnace":{},"interact_with_smoker":{},"interact_with_lectern":{},"interact_with_campfire":{},"interact_with_cartography_table":{},"interact_with_loom":{},"interact_with_stonecutter":{},"bell_ring":{},"raid_trigger":{},"raid_win":{},"interact_with_anvil":{},"interact_with_grindstone":{}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611}}},"motive":{"default":"kebab","id":18,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"particle_type":{"id":13,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}}}}
\ No newline at end of file
+{"minecraft":{"item":{"default":"air","id":5,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"brown_mushroom":{"id":108},"red_mushroom":{"id":109},"gold_block":{"id":110},"iron_block":{"id":111},"oak_slab":{"id":112},"spruce_slab":{"id":113},"birch_slab":{"id":114},"jungle_slab":{"id":115},"acacia_slab":{"id":116},"dark_oak_slab":{"id":117},"stone_slab":{"id":118},"sandstone_slab":{"id":119},"petrified_oak_slab":{"id":120},"cobblestone_slab":{"id":121},"brick_slab":{"id":122},"stone_brick_slab":{"id":123},"nether_brick_slab":{"id":124},"quartz_slab":{"id":125},"red_sandstone_slab":{"id":126},"purpur_slab":{"id":127},"prismarine_slab":{"id":128},"prismarine_brick_slab":{"id":129},"dark_prismarine_slab":{"id":130},"smooth_quartz":{"id":131},"smooth_red_sandstone":{"id":132},"smooth_sandstone":{"id":133},"smooth_stone":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"end_rod":{"id":141},"chorus_plant":{"id":142},"chorus_flower":{"id":143},"purpur_block":{"id":144},"purpur_pillar":{"id":145},"purpur_stairs":{"id":146},"spawner":{"id":147},"oak_stairs":{"id":148},"chest":{"id":149},"diamond_ore":{"id":150},"diamond_block":{"id":151},"crafting_table":{"id":152},"farmland":{"id":153},"furnace":{"id":154},"ladder":{"id":155},"rail":{"id":156},"cobblestone_stairs":{"id":157},"lever":{"id":158},"stone_pressure_plate":{"id":159},"oak_pressure_plate":{"id":160},"spruce_pressure_plate":{"id":161},"birch_pressure_plate":{"id":162},"jungle_pressure_plate":{"id":163},"acacia_pressure_plate":{"id":164},"dark_oak_pressure_plate":{"id":165},"redstone_ore":{"id":166},"redstone_torch":{"id":167},"stone_button":{"id":168},"snow":{"id":169},"ice":{"id":170},"snow_block":{"id":171},"cactus":{"id":172},"clay":{"id":173},"jukebox":{"id":174},"oak_fence":{"id":175},"spruce_fence":{"id":176},"birch_fence":{"id":177},"jungle_fence":{"id":178},"acacia_fence":{"id":179},"dark_oak_fence":{"id":180},"pumpkin":{"id":181},"carved_pumpkin":{"id":182},"netherrack":{"id":183},"soul_sand":{"id":184},"glowstone":{"id":185},"jack_o_lantern":{"id":186},"oak_trapdoor":{"id":187},"spruce_trapdoor":{"id":188},"birch_trapdoor":{"id":189},"jungle_trapdoor":{"id":190},"acacia_trapdoor":{"id":191},"dark_oak_trapdoor":{"id":192},"infested_stone":{"id":193},"infested_cobblestone":{"id":194},"infested_stone_bricks":{"id":195},"infested_mossy_stone_bricks":{"id":196},"infested_cracked_stone_bricks":{"id":197},"infested_chiseled_stone_bricks":{"id":198},"stone_bricks":{"id":199},"mossy_stone_bricks":{"id":200},"cracked_stone_bricks":{"id":201},"chiseled_stone_bricks":{"id":202},"brown_mushroom_block":{"id":203},"red_mushroom_block":{"id":204},"mushroom_stem":{"id":205},"iron_bars":{"id":206},"glass_pane":{"id":207},"melon":{"id":208},"vine":{"id":209},"oak_fence_gate":{"id":210},"spruce_fence_gate":{"id":211},"birch_fence_gate":{"id":212},"jungle_fence_gate":{"id":213},"acacia_fence_gate":{"id":214},"dark_oak_fence_gate":{"id":215},"brick_stairs":{"id":216},"stone_brick_stairs":{"id":217},"mycelium":{"id":218},"lily_pad":{"id":219},"nether_bricks":{"id":220},"nether_brick_fence":{"id":221},"nether_brick_stairs":{"id":222},"enchanting_table":{"id":223},"end_portal_frame":{"id":224},"end_stone":{"id":225},"end_stone_bricks":{"id":226},"dragon_egg":{"id":227},"redstone_lamp":{"id":228},"sandstone_stairs":{"id":229},"emerald_ore":{"id":230},"ender_chest":{"id":231},"tripwire_hook":{"id":232},"emerald_block":{"id":233},"spruce_stairs":{"id":234},"birch_stairs":{"id":235},"jungle_stairs":{"id":236},"command_block":{"id":237},"beacon":{"id":238},"cobblestone_wall":{"id":239},"mossy_cobblestone_wall":{"id":240},"oak_button":{"id":241},"spruce_button":{"id":242},"birch_button":{"id":243},"jungle_button":{"id":244},"acacia_button":{"id":245},"dark_oak_button":{"id":246},"anvil":{"id":247},"chipped_anvil":{"id":248},"damaged_anvil":{"id":249},"trapped_chest":{"id":250},"light_weighted_pressure_plate":{"id":251},"heavy_weighted_pressure_plate":{"id":252},"daylight_detector":{"id":253},"redstone_block":{"id":254},"nether_quartz_ore":{"id":255},"hopper":{"id":256},"chiseled_quartz_block":{"id":257},"quartz_block":{"id":258},"quartz_pillar":{"id":259},"quartz_stairs":{"id":260},"activator_rail":{"id":261},"dropper":{"id":262},"white_terracotta":{"id":263},"orange_terracotta":{"id":264},"magenta_terracotta":{"id":265},"light_blue_terracotta":{"id":266},"yellow_terracotta":{"id":267},"lime_terracotta":{"id":268},"pink_terracotta":{"id":269},"gray_terracotta":{"id":270},"light_gray_terracotta":{"id":271},"cyan_terracotta":{"id":272},"purple_terracotta":{"id":273},"blue_terracotta":{"id":274},"brown_terracotta":{"id":275},"green_terracotta":{"id":276},"red_terracotta":{"id":277},"black_terracotta":{"id":278},"barrier":{"id":279},"iron_trapdoor":{"id":280},"hay_block":{"id":281},"white_carpet":{"id":282},"orange_carpet":{"id":283},"magenta_carpet":{"id":284},"light_blue_carpet":{"id":285},"yellow_carpet":{"id":286},"lime_carpet":{"id":287},"pink_carpet":{"id":288},"gray_carpet":{"id":289},"light_gray_carpet":{"id":290},"cyan_carpet":{"id":291},"purple_carpet":{"id":292},"blue_carpet":{"id":293},"brown_carpet":{"id":294},"green_carpet":{"id":295},"red_carpet":{"id":296},"black_carpet":{"id":297},"terracotta":{"id":298},"coal_block":{"id":299},"packed_ice":{"id":300},"acacia_stairs":{"id":301},"dark_oak_stairs":{"id":302},"slime_block":{"id":303},"grass_path":{"id":304},"sunflower":{"id":305},"lilac":{"id":306},"rose_bush":{"id":307},"peony":{"id":308},"tall_grass":{"id":309},"large_fern":{"id":310},"white_stained_glass":{"id":311},"orange_stained_glass":{"id":312},"magenta_stained_glass":{"id":313},"light_blue_stained_glass":{"id":314},"yellow_stained_glass":{"id":315},"lime_stained_glass":{"id":316},"pink_stained_glass":{"id":317},"gray_stained_glass":{"id":318},"light_gray_stained_glass":{"id":319},"cyan_stained_glass":{"id":320},"purple_stained_glass":{"id":321},"blue_stained_glass":{"id":322},"brown_stained_glass":{"id":323},"green_stained_glass":{"id":324},"red_stained_glass":{"id":325},"black_stained_glass":{"id":326},"white_stained_glass_pane":{"id":327},"orange_stained_glass_pane":{"id":328},"magenta_stained_glass_pane":{"id":329},"light_blue_stained_glass_pane":{"id":330},"yellow_stained_glass_pane":{"id":331},"lime_stained_glass_pane":{"id":332},"pink_stained_glass_pane":{"id":333},"gray_stained_glass_pane":{"id":334},"light_gray_stained_glass_pane":{"id":335},"cyan_stained_glass_pane":{"id":336},"purple_stained_glass_pane":{"id":337},"blue_stained_glass_pane":{"id":338},"brown_stained_glass_pane":{"id":339},"green_stained_glass_pane":{"id":340},"red_stained_glass_pane":{"id":341},"black_stained_glass_pane":{"id":342},"prismarine":{"id":343},"prismarine_bricks":{"id":344},"dark_prismarine":{"id":345},"prismarine_stairs":{"id":346},"prismarine_brick_stairs":{"id":347},"dark_prismarine_stairs":{"id":348},"sea_lantern":{"id":349},"red_sandstone":{"id":350},"chiseled_red_sandstone":{"id":351},"cut_red_sandstone":{"id":352},"red_sandstone_stairs":{"id":353},"repeating_command_block":{"id":354},"chain_command_block":{"id":355},"magma_block":{"id":356},"nether_wart_block":{"id":357},"red_nether_bricks":{"id":358},"bone_block":{"id":359},"structure_void":{"id":360},"observer":{"id":361},"shulker_box":{"id":362},"white_shulker_box":{"id":363},"orange_shulker_box":{"id":364},"magenta_shulker_box":{"id":365},"light_blue_shulker_box":{"id":366},"yellow_shulker_box":{"id":367},"lime_shulker_box":{"id":368},"pink_shulker_box":{"id":369},"gray_shulker_box":{"id":370},"light_gray_shulker_box":{"id":371},"cyan_shulker_box":{"id":372},"purple_shulker_box":{"id":373},"blue_shulker_box":{"id":374},"brown_shulker_box":{"id":375},"green_shulker_box":{"id":376},"red_shulker_box":{"id":377},"black_shulker_box":{"id":378},"white_glazed_terracotta":{"id":379},"orange_glazed_terracotta":{"id":380},"magenta_glazed_terracotta":{"id":381},"light_blue_glazed_terracotta":{"id":382},"yellow_glazed_terracotta":{"id":383},"lime_glazed_terracotta":{"id":384},"pink_glazed_terracotta":{"id":385},"gray_glazed_terracotta":{"id":386},"light_gray_glazed_terracotta":{"id":387},"cyan_glazed_terracotta":{"id":388},"purple_glazed_terracotta":{"id":389},"blue_glazed_terracotta":{"id":390},"brown_glazed_terracotta":{"id":391},"green_glazed_terracotta":{"id":392},"red_glazed_terracotta":{"id":393},"black_glazed_terracotta":{"id":394},"white_concrete":{"id":395},"orange_concrete":{"id":396},"magenta_concrete":{"id":397},"light_blue_concrete":{"id":398},"yellow_concrete":{"id":399},"lime_concrete":{"id":400},"pink_concrete":{"id":401},"gray_concrete":{"id":402},"light_gray_concrete":{"id":403},"cyan_concrete":{"id":404},"purple_concrete":{"id":405},"blue_concrete":{"id":406},"brown_concrete":{"id":407},"green_concrete":{"id":408},"red_concrete":{"id":409},"black_concrete":{"id":410},"white_concrete_powder":{"id":411},"orange_concrete_powder":{"id":412},"magenta_concrete_powder":{"id":413},"light_blue_concrete_powder":{"id":414},"yellow_concrete_powder":{"id":415},"lime_concrete_powder":{"id":416},"pink_concrete_powder":{"id":417},"gray_concrete_powder":{"id":418},"light_gray_concrete_powder":{"id":419},"cyan_concrete_powder":{"id":420},"purple_concrete_powder":{"id":421},"blue_concrete_powder":{"id":422},"brown_concrete_powder":{"id":423},"green_concrete_powder":{"id":424},"red_concrete_powder":{"id":425},"black_concrete_powder":{"id":426},"turtle_egg":{"id":427},"dead_tube_coral_block":{"id":428},"dead_brain_coral_block":{"id":429},"dead_bubble_coral_block":{"id":430},"dead_fire_coral_block":{"id":431},"dead_horn_coral_block":{"id":432},"tube_coral_block":{"id":433},"brain_coral_block":{"id":434},"bubble_coral_block":{"id":435},"fire_coral_block":{"id":436},"horn_coral_block":{"id":437},"tube_coral":{"id":438},"brain_coral":{"id":439},"bubble_coral":{"id":440},"fire_coral":{"id":441},"horn_coral":{"id":442},"dead_brain_coral":{"id":443},"dead_bubble_coral":{"id":444},"dead_fire_coral":{"id":445},"dead_horn_coral":{"id":446},"dead_tube_coral":{"id":447},"tube_coral_fan":{"id":448},"brain_coral_fan":{"id":449},"bubble_coral_fan":{"id":450},"fire_coral_fan":{"id":451},"horn_coral_fan":{"id":452},"dead_tube_coral_fan":{"id":453},"dead_brain_coral_fan":{"id":454},"dead_bubble_coral_fan":{"id":455},"dead_fire_coral_fan":{"id":456},"dead_horn_coral_fan":{"id":457},"blue_ice":{"id":458},"conduit":{"id":459},"iron_door":{"id":460},"oak_door":{"id":461},"spruce_door":{"id":462},"birch_door":{"id":463},"jungle_door":{"id":464},"acacia_door":{"id":465},"dark_oak_door":{"id":466},"repeater":{"id":467},"comparator":{"id":468},"structure_block":{"id":469},"turtle_helmet":{"id":470},"scute":{"id":471},"iron_shovel":{"id":472},"iron_pickaxe":{"id":473},"iron_axe":{"id":474},"flint_and_steel":{"id":475},"apple":{"id":476},"bow":{"id":477},"arrow":{"id":478},"coal":{"id":479},"charcoal":{"id":480},"diamond":{"id":481},"iron_ingot":{"id":482},"gold_ingot":{"id":483},"iron_sword":{"id":484},"wooden_sword":{"id":485},"wooden_shovel":{"id":486},"wooden_pickaxe":{"id":487},"wooden_axe":{"id":488},"stone_sword":{"id":489},"stone_shovel":{"id":490},"stone_pickaxe":{"id":491},"stone_axe":{"id":492},"diamond_sword":{"id":493},"diamond_shovel":{"id":494},"diamond_pickaxe":{"id":495},"diamond_axe":{"id":496},"stick":{"id":497},"bowl":{"id":498},"mushroom_stew":{"id":499},"golden_sword":{"id":500},"golden_shovel":{"id":501},"golden_pickaxe":{"id":502},"golden_axe":{"id":503},"string":{"id":504},"feather":{"id":505},"gunpowder":{"id":506},"wooden_hoe":{"id":507},"stone_hoe":{"id":508},"iron_hoe":{"id":509},"diamond_hoe":{"id":510},"golden_hoe":{"id":511},"wheat_seeds":{"id":512},"wheat":{"id":513},"bread":{"id":514},"leather_helmet":{"id":515},"leather_chestplate":{"id":516},"leather_leggings":{"id":517},"leather_boots":{"id":518},"chainmail_helmet":{"id":519},"chainmail_chestplate":{"id":520},"chainmail_leggings":{"id":521},"chainmail_boots":{"id":522},"iron_helmet":{"id":523},"iron_chestplate":{"id":524},"iron_leggings":{"id":525},"iron_boots":{"id":526},"diamond_helmet":{"id":527},"diamond_chestplate":{"id":528},"diamond_leggings":{"id":529},"diamond_boots":{"id":530},"golden_helmet":{"id":531},"golden_chestplate":{"id":532},"golden_leggings":{"id":533},"golden_boots":{"id":534},"flint":{"id":535},"porkchop":{"id":536},"cooked_porkchop":{"id":537},"painting":{"id":538},"golden_apple":{"id":539},"enchanted_golden_apple":{"id":540},"sign":{"id":541},"bucket":{"id":542},"water_bucket":{"id":543},"lava_bucket":{"id":544},"minecart":{"id":545},"saddle":{"id":546},"redstone":{"id":547},"snowball":{"id":548},"oak_boat":{"id":549},"leather":{"id":550},"milk_bucket":{"id":551},"pufferfish_bucket":{"id":552},"salmon_bucket":{"id":553},"cod_bucket":{"id":554},"tropical_fish_bucket":{"id":555},"brick":{"id":556},"clay_ball":{"id":557},"sugar_cane":{"id":558},"kelp":{"id":559},"dried_kelp_block":{"id":560},"paper":{"id":561},"book":{"id":562},"slime_ball":{"id":563},"chest_minecart":{"id":564},"furnace_minecart":{"id":565},"egg":{"id":566},"compass":{"id":567},"fishing_rod":{"id":568},"clock":{"id":569},"glowstone_dust":{"id":570},"cod":{"id":571},"salmon":{"id":572},"tropical_fish":{"id":573},"pufferfish":{"id":574},"cooked_cod":{"id":575},"cooked_salmon":{"id":576},"ink_sac":{"id":577},"rose_red":{"id":578},"cactus_green":{"id":579},"cocoa_beans":{"id":580},"lapis_lazuli":{"id":581},"purple_dye":{"id":582},"cyan_dye":{"id":583},"light_gray_dye":{"id":584},"gray_dye":{"id":585},"pink_dye":{"id":586},"lime_dye":{"id":587},"dandelion_yellow":{"id":588},"light_blue_dye":{"id":589},"magenta_dye":{"id":590},"orange_dye":{"id":591},"bone_meal":{"id":592},"bone":{"id":593},"sugar":{"id":594},"cake":{"id":595},"white_bed":{"id":596},"orange_bed":{"id":597},"magenta_bed":{"id":598},"light_blue_bed":{"id":599},"yellow_bed":{"id":600},"lime_bed":{"id":601},"pink_bed":{"id":602},"gray_bed":{"id":603},"light_gray_bed":{"id":604},"cyan_bed":{"id":605},"purple_bed":{"id":606},"blue_bed":{"id":607},"brown_bed":{"id":608},"green_bed":{"id":609},"red_bed":{"id":610},"black_bed":{"id":611},"cookie":{"id":612},"filled_map":{"id":613},"shears":{"id":614},"melon_slice":{"id":615},"dried_kelp":{"id":616},"pumpkin_seeds":{"id":617},"melon_seeds":{"id":618},"beef":{"id":619},"cooked_beef":{"id":620},"chicken":{"id":621},"cooked_chicken":{"id":622},"rotten_flesh":{"id":623},"ender_pearl":{"id":624},"blaze_rod":{"id":625},"ghast_tear":{"id":626},"gold_nugget":{"id":627},"nether_wart":{"id":628},"potion":{"id":629},"glass_bottle":{"id":630},"spider_eye":{"id":631},"fermented_spider_eye":{"id":632},"blaze_powder":{"id":633},"magma_cream":{"id":634},"brewing_stand":{"id":635},"cauldron":{"id":636},"ender_eye":{"id":637},"glistering_melon_slice":{"id":638},"bat_spawn_egg":{"id":639},"blaze_spawn_egg":{"id":640},"cave_spider_spawn_egg":{"id":641},"chicken_spawn_egg":{"id":642},"cod_spawn_egg":{"id":643},"cow_spawn_egg":{"id":644},"creeper_spawn_egg":{"id":645},"dolphin_spawn_egg":{"id":646},"donkey_spawn_egg":{"id":647},"drowned_spawn_egg":{"id":648},"elder_guardian_spawn_egg":{"id":649},"enderman_spawn_egg":{"id":650},"endermite_spawn_egg":{"id":651},"evoker_spawn_egg":{"id":652},"ghast_spawn_egg":{"id":653},"guardian_spawn_egg":{"id":654},"horse_spawn_egg":{"id":655},"husk_spawn_egg":{"id":656},"llama_spawn_egg":{"id":657},"magma_cube_spawn_egg":{"id":658},"mooshroom_spawn_egg":{"id":659},"mule_spawn_egg":{"id":660},"ocelot_spawn_egg":{"id":661},"parrot_spawn_egg":{"id":662},"phantom_spawn_egg":{"id":663},"pig_spawn_egg":{"id":664},"polar_bear_spawn_egg":{"id":665},"pufferfish_spawn_egg":{"id":666},"rabbit_spawn_egg":{"id":667},"salmon_spawn_egg":{"id":668},"sheep_spawn_egg":{"id":669},"shulker_spawn_egg":{"id":670},"silverfish_spawn_egg":{"id":671},"skeleton_spawn_egg":{"id":672},"skeleton_horse_spawn_egg":{"id":673},"slime_spawn_egg":{"id":674},"spider_spawn_egg":{"id":675},"squid_spawn_egg":{"id":676},"stray_spawn_egg":{"id":677},"tropical_fish_spawn_egg":{"id":678},"turtle_spawn_egg":{"id":679},"vex_spawn_egg":{"id":680},"villager_spawn_egg":{"id":681},"vindicator_spawn_egg":{"id":682},"witch_spawn_egg":{"id":683},"wither_skeleton_spawn_egg":{"id":684},"wolf_spawn_egg":{"id":685},"zombie_spawn_egg":{"id":686},"zombie_horse_spawn_egg":{"id":687},"zombie_pigman_spawn_egg":{"id":688},"zombie_villager_spawn_egg":{"id":689},"experience_bottle":{"id":690},"fire_charge":{"id":691},"writable_book":{"id":692},"written_book":{"id":693},"emerald":{"id":694},"item_frame":{"id":695},"flower_pot":{"id":696},"carrot":{"id":697},"potato":{"id":698},"baked_potato":{"id":699},"poisonous_potato":{"id":700},"map":{"id":701},"golden_carrot":{"id":702},"skeleton_skull":{"id":703},"wither_skeleton_skull":{"id":704},"player_head":{"id":705},"zombie_head":{"id":706},"creeper_head":{"id":707},"dragon_head":{"id":708},"carrot_on_a_stick":{"id":709},"nether_star":{"id":710},"pumpkin_pie":{"id":711},"firework_rocket":{"id":712},"firework_star":{"id":713},"enchanted_book":{"id":714},"nether_brick":{"id":715},"quartz":{"id":716},"tnt_minecart":{"id":717},"hopper_minecart":{"id":718},"prismarine_shard":{"id":719},"prismarine_crystals":{"id":720},"rabbit":{"id":721},"cooked_rabbit":{"id":722},"rabbit_stew":{"id":723},"rabbit_foot":{"id":724},"rabbit_hide":{"id":725},"armor_stand":{"id":726},"iron_horse_armor":{"id":727},"golden_horse_armor":{"id":728},"diamond_horse_armor":{"id":729},"lead":{"id":730},"name_tag":{"id":731},"command_block_minecart":{"id":732},"mutton":{"id":733},"cooked_mutton":{"id":734},"white_banner":{"id":735},"orange_banner":{"id":736},"magenta_banner":{"id":737},"light_blue_banner":{"id":738},"yellow_banner":{"id":739},"lime_banner":{"id":740},"pink_banner":{"id":741},"gray_banner":{"id":742},"light_gray_banner":{"id":743},"cyan_banner":{"id":744},"purple_banner":{"id":745},"blue_banner":{"id":746},"brown_banner":{"id":747},"green_banner":{"id":748},"red_banner":{"id":749},"black_banner":{"id":750},"end_crystal":{"id":751},"chorus_fruit":{"id":752},"popped_chorus_fruit":{"id":753},"beetroot":{"id":754},"beetroot_seeds":{"id":755},"beetroot_soup":{"id":756},"dragon_breath":{"id":757},"splash_potion":{"id":758},"spectral_arrow":{"id":759},"tipped_arrow":{"id":760},"lingering_potion":{"id":761},"shield":{"id":762},"elytra":{"id":763},"spruce_boat":{"id":764},"birch_boat":{"id":765},"jungle_boat":{"id":766},"acacia_boat":{"id":767},"dark_oak_boat":{"id":768},"totem_of_undying":{"id":769},"shulker_shell":{"id":770},"iron_nugget":{"id":771},"knowledge_book":{"id":772},"debug_stick":{"id":773},"music_disc_13":{"id":774},"music_disc_cat":{"id":775},"music_disc_blocks":{"id":776},"music_disc_chirp":{"id":777},"music_disc_far":{"id":778},"music_disc_mall":{"id":779},"music_disc_mellohi":{"id":780},"music_disc_stal":{"id":781},"music_disc_strad":{"id":782},"music_disc_ward":{"id":783},"music_disc_11":{"id":784},"music_disc_wait":{"id":785},"trident":{"id":786},"phantom_membrane":{"id":787},"nautilus_shell":{"id":788},"heart_of_the_sea":{"id":789}}},"entity_type":{"default":"pig","id":3,"entries":{"zombie_horse":{"id":88},"egg":{"id":74},"arrow":{"id":2},"cow":{"id":9},"spawner_minecart":{"id":44},"magma_cube":{"id":38},"pig":{"id":51},"skeleton":{"id":62},"llama":{"id":36},"mule":{"id":46},"husk":{"id":30},"bat":{"id":3},"experience_bottle":{"id":76},"rabbit":{"id":56},"silverfish":{"id":61},"armor_stand":{"id":1},"giant":{"id":27},"drowned":{"id":14},"experience_orb":{"id":22},"zombie_pigman":{"id":53},"dolphin":{"id":12},"item":{"id":32},"stray":{"id":71},"shulker":{"id":59},"turtle":{"id":73},"wither_skeleton":{"id":84},"vex":{"id":78},"salmon":{"id":57},"ocelot":{"id":48},"furnace_minecart":{"id":42},"item_frame":{"id":33},"vindicator":{"id":81},"horse":{"id":29},"phantom":{"id":90},"firework":{"id":25},"minecart":{"id":39},"ender_dragon":{"id":17},"leash_knot":{"id":35},"spectral_arrow":{"id":68},"evoker":{"id":21},"mooshroom":{"id":47},"llama_spit":{"id":37},"snowball":{"id":67},"tnt":{"id":55},"shulker_bullet":{"id":60},"squid":{"id":70},"parrot":{"id":50},"creeper":{"id":10},"lightning_bolt":{"id":91},"enderman":{"id":18},"dragon_fireball":{"id":13},"chicken":{"id":7},"donkey":{"id":11},"evoker_fangs":{"id":20},"chest_minecart":{"id":40},"tropical_fish":{"id":72},"slime":{"id":64},"iron_golem":{"id":80},"area_effect_cloud":{"id":0},"blaze":{"id":4},"end_crystal":{"id":16},"endermite":{"id":19},"ender_pearl":{"id":75},"zombie":{"id":87},"guardian":{"id":28},"ghast":{"id":26},"fireball":{"id":34},"sheep":{"id":58},"player":{"id":92},"illusioner":{"id":31},"pufferfish":{"id":52},"potion":{"id":77},"trident":{"id":94},"eye_of_ender":{"id":23},"wither_skull":{"id":85},"wolf":{"id":86},"villager":{"id":79},"skeleton_horse":{"id":63},"fishing_bobber":{"id":93},"zombie_villager":{"id":89},"tnt_minecart":{"id":45},"elder_guardian":{"id":15},"small_fireball":{"id":65},"boat":{"id":5},"polar_bear":{"id":54},"hopper_minecart":{"id":43},"falling_block":{"id":24},"painting":{"id":49},"cave_spider":{"id":6},"witch":{"id":82},"snow_golem":{"id":66},"cod":{"id":8},"spider":{"id":69},"wither":{"id":83},"command_block_minecart":{"id":41}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"custom_stat":{"entries":{"leave_game":{},"play_one_minute":{},"time_since_death":{},"time_since_rest":{},"sneak_time":{},"walk_one_cm":{},"crouch_one_cm":{},"sprint_one_cm":{},"walk_on_water_one_cm":{},"fall_one_cm":{},"climb_one_cm":{},"fly_one_cm":{},"walk_under_water_one_cm":{},"minecart_one_cm":{},"boat_one_cm":{},"pig_one_cm":{},"horse_one_cm":{},"aviate_one_cm":{},"swim_one_cm":{},"jump":{},"drop":{},"damage_dealt":{},"damage_dealt_absorbed":{},"damage_dealt_resisted":{},"damage_taken":{},"damage_blocked_by_shield":{},"damage_absorbed":{},"damage_resisted":{},"deaths":{},"mob_kills":{},"animals_bred":{},"player_kills":{},"fish_caught":{},"talked_to_villager":{},"traded_with_villager":{},"eat_cake_slice":{},"fill_cauldron":{},"use_cauldron":{},"clean_armor":{},"clean_banner":{},"clean_shulker_box":{},"interact_with_brewingstand":{},"interact_with_beacon":{},"inspect_dropper":{},"inspect_hopper":{},"inspect_dispenser":{},"play_noteblock":{},"tune_noteblock":{},"pot_flower":{},"trigger_trapped_chest":{},"open_enderchest":{},"enchant_item":{},"play_record":{},"interact_with_furnace":{},"interact_with_crafting_table":{},"open_chest":{},"sleep_in_bed":{},"open_shulker_box":{},"open_barrel":{},"interact_with_blast_furnace":{},"interact_with_smoker":{},"interact_with_lectern":{},"interact_with_campfire":{},"interact_with_cartography_table":{},"interact_with_loom":{},"interact_with_stonecutter":{},"bell_ring":{},"raid_trigger":{},"raid_win":{},"interact_with_anvil":{},"interact_with_grindstone":{}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611}}},"motive":{"default":"kebab","id":18,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"particle_type":{"id":13,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"dimension_type":{"id":17,"entries":{"overworld":{"id":0,"has_skylight":true},"the_nether":{"id":1,"has_skylight":false},"the_end":{"id":-1,"has_skylight":false}}}}}
\ No newline at end of file
diff --git a/src/main/resources/assets/mapping/1.14.4/registries.json b/src/main/resources/assets/mapping/1.14.4/registries.json
index d4e0aa37b..b0312351d 100644
--- a/src/main/resources/assets/mapping/1.14.4/registries.json
+++ b/src/main/resources/assets/mapping/1.14.4/registries.json
@@ -1 +1 @@
-{"minecraft":{"sound_event":{"id":0,"entries":{"ambient.cave":{"id":0},"ambient.underwater.enter":{"id":1},"ambient.underwater.exit":{"id":2},"ambient.underwater.loop":{"id":3},"ambient.underwater.loop.additions":{"id":4},"ambient.underwater.loop.additions.rare":{"id":5},"ambient.underwater.loop.additions.ultra_rare":{"id":6},"block.anvil.break":{"id":7},"block.anvil.destroy":{"id":8},"block.anvil.fall":{"id":9},"block.anvil.hit":{"id":10},"block.anvil.land":{"id":11},"block.anvil.place":{"id":12},"block.anvil.step":{"id":13},"block.anvil.use":{"id":14},"item.armor.equip_chain":{"id":15},"item.armor.equip_diamond":{"id":16},"item.armor.equip_elytra":{"id":17},"item.armor.equip_generic":{"id":18},"item.armor.equip_gold":{"id":19},"item.armor.equip_iron":{"id":20},"item.armor.equip_leather":{"id":21},"item.armor.equip_turtle":{"id":22},"entity.armor_stand.break":{"id":23},"entity.armor_stand.fall":{"id":24},"entity.armor_stand.hit":{"id":25},"entity.armor_stand.place":{"id":26},"entity.arrow.hit":{"id":27},"entity.arrow.hit_player":{"id":28},"entity.arrow.shoot":{"id":29},"item.axe.strip":{"id":30},"block.bamboo.break":{"id":31},"block.bamboo.fall":{"id":32},"block.bamboo.hit":{"id":33},"block.bamboo.place":{"id":34},"block.bamboo.step":{"id":35},"block.bamboo_sapling.break":{"id":36},"block.bamboo_sapling.hit":{"id":37},"block.bamboo_sapling.place":{"id":38},"block.barrel.close":{"id":39},"block.barrel.open":{"id":40},"entity.bat.ambient":{"id":41},"entity.bat.death":{"id":42},"entity.bat.hurt":{"id":43},"entity.bat.loop":{"id":44},"entity.bat.takeoff":{"id":45},"block.beacon.activate":{"id":46},"block.beacon.ambient":{"id":47},"block.beacon.deactivate":{"id":48},"block.beacon.power_select":{"id":49},"block.bell.use":{"id":50},"block.bell.resonate":{"id":51},"entity.blaze.ambient":{"id":52},"entity.blaze.burn":{"id":53},"entity.blaze.death":{"id":54},"entity.blaze.hurt":{"id":55},"entity.blaze.shoot":{"id":56},"entity.boat.paddle_land":{"id":57},"entity.boat.paddle_water":{"id":58},"item.book.page_turn":{"id":59},"item.book.put":{"id":60},"entity.fishing_bobber.retrieve":{"id":61},"entity.fishing_bobber.splash":{"id":62},"entity.fishing_bobber.throw":{"id":63},"block.blastfurnace.fire_crackle":{"id":64},"item.bottle.empty":{"id":65},"item.bottle.fill":{"id":66},"item.bottle.fill_dragonbreath":{"id":67},"block.brewing_stand.brew":{"id":68},"block.bubble_column.bubble_pop":{"id":69},"block.bubble_column.upwards_ambient":{"id":70},"block.bubble_column.upwards_inside":{"id":71},"block.bubble_column.whirlpool_ambient":{"id":72},"block.bubble_column.whirlpool_inside":{"id":73},"item.bucket.empty":{"id":74},"item.bucket.empty_fish":{"id":75},"item.bucket.empty_lava":{"id":76},"item.bucket.fill":{"id":77},"item.bucket.fill_fish":{"id":78},"item.bucket.fill_lava":{"id":79},"block.campfire.crackle":{"id":80},"entity.cat.ambient":{"id":81},"entity.cat.stray_ambient":{"id":82},"entity.cat.death":{"id":83},"entity.cat.eat":{"id":84},"entity.cat.hiss":{"id":85},"entity.cat.beg_for_food":{"id":86},"entity.cat.hurt":{"id":87},"entity.cat.purr":{"id":88},"entity.cat.purreow":{"id":89},"block.chest.close":{"id":90},"block.chest.locked":{"id":91},"block.chest.open":{"id":92},"entity.chicken.ambient":{"id":93},"entity.chicken.death":{"id":94},"entity.chicken.egg":{"id":95},"entity.chicken.hurt":{"id":96},"entity.chicken.step":{"id":97},"block.chorus_flower.death":{"id":98},"block.chorus_flower.grow":{"id":99},"item.chorus_fruit.teleport":{"id":100},"block.wool.break":{"id":101},"block.wool.fall":{"id":102},"block.wool.hit":{"id":103},"block.wool.place":{"id":104},"block.wool.step":{"id":105},"entity.cod.ambient":{"id":106},"entity.cod.death":{"id":107},"entity.cod.flop":{"id":108},"entity.cod.hurt":{"id":109},"block.comparator.click":{"id":110},"block.composter.empty":{"id":111},"block.composter.fill":{"id":112},"block.composter.fill_success":{"id":113},"block.composter.ready":{"id":114},"block.conduit.activate":{"id":115},"block.conduit.ambient":{"id":116},"block.conduit.ambient.short":{"id":117},"block.conduit.attack.target":{"id":118},"block.conduit.deactivate":{"id":119},"entity.cow.ambient":{"id":120},"entity.cow.death":{"id":121},"entity.cow.hurt":{"id":122},"entity.cow.milk":{"id":123},"entity.cow.step":{"id":124},"entity.creeper.death":{"id":125},"entity.creeper.hurt":{"id":126},"entity.creeper.primed":{"id":127},"block.crop.break":{"id":128},"item.crop.plant":{"id":129},"item.crossbow.hit":{"id":130},"item.crossbow.loading_end":{"id":131},"item.crossbow.loading_middle":{"id":132},"item.crossbow.loading_start":{"id":133},"item.crossbow.quick_charge_1":{"id":134},"item.crossbow.quick_charge_2":{"id":135},"item.crossbow.quick_charge_3":{"id":136},"item.crossbow.shoot":{"id":137},"block.dispenser.dispense":{"id":138},"block.dispenser.fail":{"id":139},"block.dispenser.launch":{"id":140},"entity.dolphin.ambient":{"id":141},"entity.dolphin.ambient_water":{"id":142},"entity.dolphin.attack":{"id":143},"entity.dolphin.death":{"id":144},"entity.dolphin.eat":{"id":145},"entity.dolphin.hurt":{"id":146},"entity.dolphin.jump":{"id":147},"entity.dolphin.play":{"id":148},"entity.dolphin.splash":{"id":149},"entity.dolphin.swim":{"id":150},"entity.donkey.ambient":{"id":151},"entity.donkey.angry":{"id":152},"entity.donkey.chest":{"id":153},"entity.donkey.death":{"id":154},"entity.donkey.hurt":{"id":155},"entity.drowned.ambient":{"id":156},"entity.drowned.ambient_water":{"id":157},"entity.drowned.death":{"id":158},"entity.drowned.death_water":{"id":159},"entity.drowned.hurt":{"id":160},"entity.drowned.hurt_water":{"id":161},"entity.drowned.shoot":{"id":162},"entity.drowned.step":{"id":163},"entity.drowned.swim":{"id":164},"entity.egg.throw":{"id":165},"entity.elder_guardian.ambient":{"id":166},"entity.elder_guardian.ambient_land":{"id":167},"entity.elder_guardian.curse":{"id":168},"entity.elder_guardian.death":{"id":169},"entity.elder_guardian.death_land":{"id":170},"entity.elder_guardian.flop":{"id":171},"entity.elder_guardian.hurt":{"id":172},"entity.elder_guardian.hurt_land":{"id":173},"item.elytra.flying":{"id":174},"block.enchantment_table.use":{"id":175},"block.ender_chest.close":{"id":176},"block.ender_chest.open":{"id":177},"entity.ender_dragon.ambient":{"id":178},"entity.ender_dragon.death":{"id":179},"entity.dragon_fireball.explode":{"id":180},"entity.ender_dragon.flap":{"id":181},"entity.ender_dragon.growl":{"id":182},"entity.ender_dragon.hurt":{"id":183},"entity.ender_dragon.shoot":{"id":184},"entity.ender_eye.death":{"id":185},"entity.ender_eye.launch":{"id":186},"entity.enderman.ambient":{"id":187},"entity.enderman.death":{"id":188},"entity.enderman.hurt":{"id":189},"entity.enderman.scream":{"id":190},"entity.enderman.stare":{"id":191},"entity.enderman.teleport":{"id":192},"entity.endermite.ambient":{"id":193},"entity.endermite.death":{"id":194},"entity.endermite.hurt":{"id":195},"entity.endermite.step":{"id":196},"entity.ender_pearl.throw":{"id":197},"block.end_gateway.spawn":{"id":198},"block.end_portal_frame.fill":{"id":199},"block.end_portal.spawn":{"id":200},"entity.evoker.ambient":{"id":201},"entity.evoker.cast_spell":{"id":202},"entity.evoker.celebrate":{"id":203},"entity.evoker.death":{"id":204},"entity.evoker_fangs.attack":{"id":205},"entity.evoker.hurt":{"id":206},"entity.evoker.prepare_attack":{"id":207},"entity.evoker.prepare_summon":{"id":208},"entity.evoker.prepare_wololo":{"id":209},"entity.experience_bottle.throw":{"id":210},"entity.experience_orb.pickup":{"id":211},"block.fence_gate.close":{"id":212},"block.fence_gate.open":{"id":213},"item.firecharge.use":{"id":214},"entity.firework_rocket.blast":{"id":215},"entity.firework_rocket.blast_far":{"id":216},"entity.firework_rocket.large_blast":{"id":217},"entity.firework_rocket.large_blast_far":{"id":218},"entity.firework_rocket.launch":{"id":219},"entity.firework_rocket.shoot":{"id":220},"entity.firework_rocket.twinkle":{"id":221},"entity.firework_rocket.twinkle_far":{"id":222},"block.fire.ambient":{"id":223},"block.fire.extinguish":{"id":224},"entity.fish.swim":{"id":225},"item.flintandsteel.use":{"id":226},"entity.fox.aggro":{"id":227},"entity.fox.ambient":{"id":228},"entity.fox.bite":{"id":229},"entity.fox.death":{"id":230},"entity.fox.eat":{"id":231},"entity.fox.hurt":{"id":232},"entity.fox.screech":{"id":233},"entity.fox.sleep":{"id":234},"entity.fox.sniff":{"id":235},"entity.fox.spit":{"id":236},"block.furnace.fire_crackle":{"id":237},"entity.generic.big_fall":{"id":238},"entity.generic.burn":{"id":239},"entity.generic.death":{"id":240},"entity.generic.drink":{"id":241},"entity.generic.eat":{"id":242},"entity.generic.explode":{"id":243},"entity.generic.extinguish_fire":{"id":244},"entity.generic.hurt":{"id":245},"entity.generic.small_fall":{"id":246},"entity.generic.splash":{"id":247},"entity.generic.swim":{"id":248},"entity.ghast.ambient":{"id":249},"entity.ghast.death":{"id":250},"entity.ghast.hurt":{"id":251},"entity.ghast.scream":{"id":252},"entity.ghast.shoot":{"id":253},"entity.ghast.warn":{"id":254},"block.glass.break":{"id":255},"block.glass.fall":{"id":256},"block.glass.hit":{"id":257},"block.glass.place":{"id":258},"block.glass.step":{"id":259},"block.grass.break":{"id":260},"block.grass.fall":{"id":261},"block.grass.hit":{"id":262},"block.grass.place":{"id":263},"block.grass.step":{"id":264},"block.wet_grass.break":{"id":265},"block.wet_grass.fall":{"id":266},"block.wet_grass.hit":{"id":267},"block.wet_grass.place":{"id":268},"block.wet_grass.step":{"id":269},"block.coral_block.break":{"id":270},"block.coral_block.fall":{"id":271},"block.coral_block.hit":{"id":272},"block.coral_block.place":{"id":273},"block.coral_block.step":{"id":274},"block.gravel.break":{"id":275},"block.gravel.fall":{"id":276},"block.gravel.hit":{"id":277},"block.gravel.place":{"id":278},"block.gravel.step":{"id":279},"block.grindstone.use":{"id":280},"entity.guardian.ambient":{"id":281},"entity.guardian.ambient_land":{"id":282},"entity.guardian.attack":{"id":283},"entity.guardian.death":{"id":284},"entity.guardian.death_land":{"id":285},"entity.guardian.flop":{"id":286},"entity.guardian.hurt":{"id":287},"entity.guardian.hurt_land":{"id":288},"item.hoe.till":{"id":289},"entity.horse.ambient":{"id":290},"entity.horse.angry":{"id":291},"entity.horse.armor":{"id":292},"entity.horse.breathe":{"id":293},"entity.horse.death":{"id":294},"entity.horse.eat":{"id":295},"entity.horse.gallop":{"id":296},"entity.horse.hurt":{"id":297},"entity.horse.jump":{"id":298},"entity.horse.land":{"id":299},"entity.horse.saddle":{"id":300},"entity.horse.step":{"id":301},"entity.horse.step_wood":{"id":302},"entity.hostile.big_fall":{"id":303},"entity.hostile.death":{"id":304},"entity.hostile.hurt":{"id":305},"entity.hostile.small_fall":{"id":306},"entity.hostile.splash":{"id":307},"entity.hostile.swim":{"id":308},"entity.husk.ambient":{"id":309},"entity.husk.converted_to_zombie":{"id":310},"entity.husk.death":{"id":311},"entity.husk.hurt":{"id":312},"entity.husk.step":{"id":313},"entity.ravager.ambient":{"id":314},"entity.ravager.attack":{"id":315},"entity.ravager.celebrate":{"id":316},"entity.ravager.death":{"id":317},"entity.ravager.hurt":{"id":318},"entity.ravager.step":{"id":319},"entity.ravager.stunned":{"id":320},"entity.ravager.roar":{"id":321},"entity.illusioner.ambient":{"id":322},"entity.illusioner.cast_spell":{"id":323},"entity.illusioner.death":{"id":324},"entity.illusioner.hurt":{"id":325},"entity.illusioner.mirror_move":{"id":326},"entity.illusioner.prepare_blindness":{"id":327},"entity.illusioner.prepare_mirror":{"id":328},"block.iron_door.close":{"id":329},"block.iron_door.open":{"id":330},"entity.iron_golem.attack":{"id":331},"entity.iron_golem.death":{"id":332},"entity.iron_golem.hurt":{"id":333},"entity.iron_golem.step":{"id":334},"block.iron_trapdoor.close":{"id":335},"block.iron_trapdoor.open":{"id":336},"entity.item_frame.add_item":{"id":337},"entity.item_frame.break":{"id":338},"entity.item_frame.place":{"id":339},"entity.item_frame.remove_item":{"id":340},"entity.item_frame.rotate_item":{"id":341},"entity.item.break":{"id":342},"entity.item.pickup":{"id":343},"block.ladder.break":{"id":344},"block.ladder.fall":{"id":345},"block.ladder.hit":{"id":346},"block.ladder.place":{"id":347},"block.ladder.step":{"id":348},"block.lantern.break":{"id":349},"block.lantern.fall":{"id":350},"block.lantern.hit":{"id":351},"block.lantern.place":{"id":352},"block.lantern.step":{"id":353},"block.lava.ambient":{"id":354},"block.lava.extinguish":{"id":355},"block.lava.pop":{"id":356},"entity.leash_knot.break":{"id":357},"entity.leash_knot.place":{"id":358},"block.lever.click":{"id":359},"entity.lightning_bolt.impact":{"id":360},"entity.lightning_bolt.thunder":{"id":361},"entity.lingering_potion.throw":{"id":362},"entity.llama.ambient":{"id":363},"entity.llama.angry":{"id":364},"entity.llama.chest":{"id":365},"entity.llama.death":{"id":366},"entity.llama.eat":{"id":367},"entity.llama.hurt":{"id":368},"entity.llama.spit":{"id":369},"entity.llama.step":{"id":370},"entity.llama.swag":{"id":371},"entity.magma_cube.death":{"id":372},"entity.magma_cube.hurt":{"id":373},"entity.magma_cube.jump":{"id":374},"entity.magma_cube.squish":{"id":375},"block.metal.break":{"id":376},"block.metal.fall":{"id":377},"block.metal.hit":{"id":378},"block.metal.place":{"id":379},"block.metal_pressure_plate.click_off":{"id":380},"block.metal_pressure_plate.click_on":{"id":381},"block.metal.step":{"id":382},"entity.minecart.inside":{"id":383},"entity.minecart.riding":{"id":384},"entity.mooshroom.convert":{"id":385},"entity.mooshroom.eat":{"id":386},"entity.mooshroom.milk":{"id":387},"entity.mooshroom.suspicious_milk":{"id":388},"entity.mooshroom.shear":{"id":389},"entity.mule.ambient":{"id":390},"entity.mule.chest":{"id":391},"entity.mule.death":{"id":392},"entity.mule.hurt":{"id":393},"music.creative":{"id":394},"music.credits":{"id":395},"music.dragon":{"id":396},"music.end":{"id":397},"music.game":{"id":398},"music.menu":{"id":399},"music.nether":{"id":400},"music.under_water":{"id":401},"block.nether_wart.break":{"id":402},"item.nether_wart.plant":{"id":403},"block.note_block.basedrum":{"id":404},"block.note_block.bass":{"id":405},"block.note_block.bell":{"id":406},"block.note_block.chime":{"id":407},"block.note_block.flute":{"id":408},"block.note_block.guitar":{"id":409},"block.note_block.harp":{"id":410},"block.note_block.hat":{"id":411},"block.note_block.pling":{"id":412},"block.note_block.snare":{"id":413},"block.note_block.xylophone":{"id":414},"block.note_block.iron_xylophone":{"id":415},"block.note_block.cow_bell":{"id":416},"block.note_block.didgeridoo":{"id":417},"block.note_block.bit":{"id":418},"block.note_block.banjo":{"id":419},"entity.ocelot.hurt":{"id":420},"entity.ocelot.ambient":{"id":421},"entity.ocelot.death":{"id":422},"entity.painting.break":{"id":423},"entity.painting.place":{"id":424},"entity.panda.pre_sneeze":{"id":425},"entity.panda.sneeze":{"id":426},"entity.panda.ambient":{"id":427},"entity.panda.death":{"id":428},"entity.panda.eat":{"id":429},"entity.panda.step":{"id":430},"entity.panda.cant_breed":{"id":431},"entity.panda.aggressive_ambient":{"id":432},"entity.panda.worried_ambient":{"id":433},"entity.panda.hurt":{"id":434},"entity.panda.bite":{"id":435},"entity.parrot.ambient":{"id":436},"entity.parrot.death":{"id":437},"entity.parrot.eat":{"id":438},"entity.parrot.fly":{"id":439},"entity.parrot.hurt":{"id":440},"entity.parrot.imitate.blaze":{"id":441},"entity.parrot.imitate.creeper":{"id":442},"entity.parrot.imitate.drowned":{"id":443},"entity.parrot.imitate.elder_guardian":{"id":444},"entity.parrot.imitate.ender_dragon":{"id":445},"entity.parrot.imitate.enderman":{"id":446},"entity.parrot.imitate.endermite":{"id":447},"entity.parrot.imitate.evoker":{"id":448},"entity.parrot.imitate.ghast":{"id":449},"entity.parrot.imitate.guardian":{"id":450},"entity.parrot.imitate.husk":{"id":451},"entity.parrot.imitate.illusioner":{"id":452},"entity.parrot.imitate.magma_cube":{"id":453},"entity.parrot.imitate.panda":{"id":454},"entity.parrot.imitate.phantom":{"id":455},"entity.parrot.imitate.pillager":{"id":456},"entity.parrot.imitate.polar_bear":{"id":457},"entity.parrot.imitate.ravager":{"id":458},"entity.parrot.imitate.shulker":{"id":459},"entity.parrot.imitate.silverfish":{"id":460},"entity.parrot.imitate.skeleton":{"id":461},"entity.parrot.imitate.slime":{"id":462},"entity.parrot.imitate.spider":{"id":463},"entity.parrot.imitate.stray":{"id":464},"entity.parrot.imitate.vex":{"id":465},"entity.parrot.imitate.vindicator":{"id":466},"entity.parrot.imitate.witch":{"id":467},"entity.parrot.imitate.wither":{"id":468},"entity.parrot.imitate.wither_skeleton":{"id":469},"entity.parrot.imitate.wolf":{"id":470},"entity.parrot.imitate.zombie":{"id":471},"entity.parrot.imitate.zombie_pigman":{"id":472},"entity.parrot.imitate.zombie_villager":{"id":473},"entity.parrot.step":{"id":474},"entity.phantom.ambient":{"id":475},"entity.phantom.bite":{"id":476},"entity.phantom.death":{"id":477},"entity.phantom.flap":{"id":478},"entity.phantom.hurt":{"id":479},"entity.phantom.swoop":{"id":480},"entity.pig.ambient":{"id":481},"entity.pig.death":{"id":482},"entity.pig.hurt":{"id":483},"entity.pig.saddle":{"id":484},"entity.pig.step":{"id":485},"entity.pillager.ambient":{"id":486},"entity.pillager.celebrate":{"id":487},"entity.pillager.death":{"id":488},"entity.pillager.hurt":{"id":489},"block.piston.contract":{"id":490},"block.piston.extend":{"id":491},"entity.player.attack.crit":{"id":492},"entity.player.attack.knockback":{"id":493},"entity.player.attack.nodamage":{"id":494},"entity.player.attack.strong":{"id":495},"entity.player.attack.sweep":{"id":496},"entity.player.attack.weak":{"id":497},"entity.player.big_fall":{"id":498},"entity.player.breath":{"id":499},"entity.player.burp":{"id":500},"entity.player.death":{"id":501},"entity.player.hurt":{"id":502},"entity.player.hurt_drown":{"id":503},"entity.player.hurt_on_fire":{"id":504},"entity.player.hurt_sweet_berry_bush":{"id":505},"entity.player.levelup":{"id":506},"entity.player.small_fall":{"id":507},"entity.player.splash":{"id":508},"entity.player.splash.high_speed":{"id":509},"entity.player.swim":{"id":510},"entity.polar_bear.ambient":{"id":511},"entity.polar_bear.ambient_baby":{"id":512},"entity.polar_bear.death":{"id":513},"entity.polar_bear.hurt":{"id":514},"entity.polar_bear.step":{"id":515},"entity.polar_bear.warning":{"id":516},"block.portal.ambient":{"id":517},"block.portal.travel":{"id":518},"block.portal.trigger":{"id":519},"entity.puffer_fish.ambient":{"id":520},"entity.puffer_fish.blow_out":{"id":521},"entity.puffer_fish.blow_up":{"id":522},"entity.puffer_fish.death":{"id":523},"entity.puffer_fish.flop":{"id":524},"entity.puffer_fish.hurt":{"id":525},"entity.puffer_fish.sting":{"id":526},"block.pumpkin.carve":{"id":527},"entity.rabbit.ambient":{"id":528},"entity.rabbit.attack":{"id":529},"entity.rabbit.death":{"id":530},"entity.rabbit.hurt":{"id":531},"entity.rabbit.jump":{"id":532},"event.raid.horn":{"id":533},"music_disc.11":{"id":534},"music_disc.13":{"id":535},"music_disc.blocks":{"id":536},"music_disc.cat":{"id":537},"music_disc.chirp":{"id":538},"music_disc.far":{"id":539},"music_disc.mall":{"id":540},"music_disc.mellohi":{"id":541},"music_disc.stal":{"id":542},"music_disc.strad":{"id":543},"music_disc.wait":{"id":544},"music_disc.ward":{"id":545},"block.redstone_torch.burnout":{"id":546},"entity.salmon.ambient":{"id":547},"entity.salmon.death":{"id":548},"entity.salmon.flop":{"id":549},"entity.salmon.hurt":{"id":550},"block.sand.break":{"id":551},"block.sand.fall":{"id":552},"block.sand.hit":{"id":553},"block.sand.place":{"id":554},"block.sand.step":{"id":555},"block.scaffolding.break":{"id":556},"block.scaffolding.fall":{"id":557},"block.scaffolding.hit":{"id":558},"block.scaffolding.place":{"id":559},"block.scaffolding.step":{"id":560},"entity.sheep.ambient":{"id":561},"entity.sheep.death":{"id":562},"entity.sheep.hurt":{"id":563},"entity.sheep.shear":{"id":564},"entity.sheep.step":{"id":565},"item.shield.block":{"id":566},"item.shield.break":{"id":567},"item.shovel.flatten":{"id":568},"entity.shulker.ambient":{"id":569},"block.shulker_box.close":{"id":570},"block.shulker_box.open":{"id":571},"entity.shulker_bullet.hit":{"id":572},"entity.shulker_bullet.hurt":{"id":573},"entity.shulker.close":{"id":574},"entity.shulker.death":{"id":575},"entity.shulker.hurt":{"id":576},"entity.shulker.hurt_closed":{"id":577},"entity.shulker.open":{"id":578},"entity.shulker.shoot":{"id":579},"entity.shulker.teleport":{"id":580},"entity.silverfish.ambient":{"id":581},"entity.silverfish.death":{"id":582},"entity.silverfish.hurt":{"id":583},"entity.silverfish.step":{"id":584},"entity.skeleton.ambient":{"id":585},"entity.skeleton.death":{"id":586},"entity.skeleton_horse.ambient":{"id":587},"entity.skeleton_horse.death":{"id":588},"entity.skeleton_horse.hurt":{"id":589},"entity.skeleton_horse.swim":{"id":590},"entity.skeleton_horse.ambient_water":{"id":591},"entity.skeleton_horse.gallop_water":{"id":592},"entity.skeleton_horse.jump_water":{"id":593},"entity.skeleton_horse.step_water":{"id":594},"entity.skeleton.hurt":{"id":595},"entity.skeleton.shoot":{"id":596},"entity.skeleton.step":{"id":597},"entity.slime.attack":{"id":598},"entity.slime.death":{"id":599},"entity.slime.hurt":{"id":600},"entity.slime.jump":{"id":601},"entity.slime.squish":{"id":602},"block.slime_block.break":{"id":603},"block.slime_block.fall":{"id":604},"block.slime_block.hit":{"id":605},"block.slime_block.place":{"id":606},"block.slime_block.step":{"id":607},"entity.magma_cube.death_small":{"id":608},"entity.magma_cube.hurt_small":{"id":609},"entity.magma_cube.squish_small":{"id":610},"entity.slime.death_small":{"id":611},"entity.slime.hurt_small":{"id":612},"entity.slime.jump_small":{"id":613},"entity.slime.squish_small":{"id":614},"block.smoker.smoke":{"id":615},"entity.snowball.throw":{"id":616},"block.snow.break":{"id":617},"block.snow.fall":{"id":618},"entity.snow_golem.ambient":{"id":619},"entity.snow_golem.death":{"id":620},"entity.snow_golem.hurt":{"id":621},"entity.snow_golem.shoot":{"id":622},"block.snow.hit":{"id":623},"block.snow.place":{"id":624},"block.snow.step":{"id":625},"entity.spider.ambient":{"id":626},"entity.spider.death":{"id":627},"entity.spider.hurt":{"id":628},"entity.spider.step":{"id":629},"entity.splash_potion.break":{"id":630},"entity.splash_potion.throw":{"id":631},"entity.squid.ambient":{"id":632},"entity.squid.death":{"id":633},"entity.squid.hurt":{"id":634},"entity.squid.squirt":{"id":635},"block.stone.break":{"id":636},"block.stone_button.click_off":{"id":637},"block.stone_button.click_on":{"id":638},"block.stone.fall":{"id":639},"block.stone.hit":{"id":640},"block.stone.place":{"id":641},"block.stone_pressure_plate.click_off":{"id":642},"block.stone_pressure_plate.click_on":{"id":643},"block.stone.step":{"id":644},"entity.stray.ambient":{"id":645},"entity.stray.death":{"id":646},"entity.stray.hurt":{"id":647},"entity.stray.step":{"id":648},"block.sweet_berry_bush.break":{"id":649},"block.sweet_berry_bush.place":{"id":650},"item.sweet_berries.pick_from_bush":{"id":651},"enchant.thorns.hit":{"id":652},"entity.tnt.primed":{"id":653},"item.totem.use":{"id":654},"item.trident.hit":{"id":655},"item.trident.hit_ground":{"id":656},"item.trident.return":{"id":657},"item.trident.riptide_1":{"id":658},"item.trident.riptide_2":{"id":659},"item.trident.riptide_3":{"id":660},"item.trident.throw":{"id":661},"item.trident.thunder":{"id":662},"block.tripwire.attach":{"id":663},"block.tripwire.click_off":{"id":664},"block.tripwire.click_on":{"id":665},"block.tripwire.detach":{"id":666},"entity.tropical_fish.ambient":{"id":667},"entity.tropical_fish.death":{"id":668},"entity.tropical_fish.flop":{"id":669},"entity.tropical_fish.hurt":{"id":670},"entity.turtle.ambient_land":{"id":671},"entity.turtle.death":{"id":672},"entity.turtle.death_baby":{"id":673},"entity.turtle.egg_break":{"id":674},"entity.turtle.egg_crack":{"id":675},"entity.turtle.egg_hatch":{"id":676},"entity.turtle.hurt":{"id":677},"entity.turtle.hurt_baby":{"id":678},"entity.turtle.lay_egg":{"id":679},"entity.turtle.shamble":{"id":680},"entity.turtle.shamble_baby":{"id":681},"entity.turtle.swim":{"id":682},"ui.button.click":{"id":683},"ui.loom.select_pattern":{"id":684},"ui.loom.take_result":{"id":685},"ui.cartography_table.take_result":{"id":686},"ui.stonecutter.take_result":{"id":687},"ui.stonecutter.select_recipe":{"id":688},"ui.toast.challenge_complete":{"id":689},"ui.toast.in":{"id":690},"ui.toast.out":{"id":691},"entity.vex.ambient":{"id":692},"entity.vex.charge":{"id":693},"entity.vex.death":{"id":694},"entity.vex.hurt":{"id":695},"entity.villager.ambient":{"id":696},"entity.villager.celebrate":{"id":697},"entity.villager.death":{"id":698},"entity.villager.hurt":{"id":699},"entity.villager.no":{"id":700},"entity.villager.trade":{"id":701},"entity.villager.yes":{"id":702},"entity.villager.work_armorer":{"id":703},"entity.villager.work_butcher":{"id":704},"entity.villager.work_cartographer":{"id":705},"entity.villager.work_cleric":{"id":706},"entity.villager.work_farmer":{"id":707},"entity.villager.work_fisherman":{"id":708},"entity.villager.work_fletcher":{"id":709},"entity.villager.work_leatherworker":{"id":710},"entity.villager.work_librarian":{"id":711},"entity.villager.work_mason":{"id":712},"entity.villager.work_shepherd":{"id":713},"entity.villager.work_toolsmith":{"id":714},"entity.villager.work_weaponsmith":{"id":715},"entity.vindicator.ambient":{"id":716},"entity.vindicator.celebrate":{"id":717},"entity.vindicator.death":{"id":718},"entity.vindicator.hurt":{"id":719},"block.lily_pad.place":{"id":720},"entity.wandering_trader.ambient":{"id":721},"entity.wandering_trader.death":{"id":722},"entity.wandering_trader.disappeared":{"id":723},"entity.wandering_trader.drink_milk":{"id":724},"entity.wandering_trader.drink_potion":{"id":725},"entity.wandering_trader.hurt":{"id":726},"entity.wandering_trader.no":{"id":727},"entity.wandering_trader.reappeared":{"id":728},"entity.wandering_trader.trade":{"id":729},"entity.wandering_trader.yes":{"id":730},"block.water.ambient":{"id":731},"weather.rain":{"id":732},"weather.rain.above":{"id":733},"entity.witch.ambient":{"id":734},"entity.witch.celebrate":{"id":735},"entity.witch.death":{"id":736},"entity.witch.drink":{"id":737},"entity.witch.hurt":{"id":738},"entity.witch.throw":{"id":739},"entity.wither.ambient":{"id":740},"entity.wither.break_block":{"id":741},"entity.wither.death":{"id":742},"entity.wither.hurt":{"id":743},"entity.wither.shoot":{"id":744},"entity.wither_skeleton.ambient":{"id":745},"entity.wither_skeleton.death":{"id":746},"entity.wither_skeleton.hurt":{"id":747},"entity.wither_skeleton.step":{"id":748},"entity.wither.spawn":{"id":749},"entity.wolf.ambient":{"id":750},"entity.wolf.death":{"id":751},"entity.wolf.growl":{"id":752},"entity.wolf.howl":{"id":753},"entity.wolf.hurt":{"id":754},"entity.wolf.pant":{"id":755},"entity.wolf.shake":{"id":756},"entity.wolf.step":{"id":757},"entity.wolf.whine":{"id":758},"block.wooden_door.close":{"id":759},"block.wooden_door.open":{"id":760},"block.wooden_trapdoor.close":{"id":761},"block.wooden_trapdoor.open":{"id":762},"block.wood.break":{"id":763},"block.wooden_button.click_off":{"id":764},"block.wooden_button.click_on":{"id":765},"block.wood.fall":{"id":766},"block.wood.hit":{"id":767},"block.wood.place":{"id":768},"block.wooden_pressure_plate.click_off":{"id":769},"block.wooden_pressure_plate.click_on":{"id":770},"block.wood.step":{"id":771},"entity.zombie.ambient":{"id":772},"entity.zombie.attack_wooden_door":{"id":773},"entity.zombie.attack_iron_door":{"id":774},"entity.zombie.break_wooden_door":{"id":775},"entity.zombie.converted_to_drowned":{"id":776},"entity.zombie.death":{"id":777},"entity.zombie.destroy_egg":{"id":778},"entity.zombie_horse.ambient":{"id":779},"entity.zombie_horse.death":{"id":780},"entity.zombie_horse.hurt":{"id":781},"entity.zombie.hurt":{"id":782},"entity.zombie.infect":{"id":783},"entity.zombie_pigman.ambient":{"id":784},"entity.zombie_pigman.angry":{"id":785},"entity.zombie_pigman.death":{"id":786},"entity.zombie_pigman.hurt":{"id":787},"entity.zombie.step":{"id":788},"entity.zombie_villager.ambient":{"id":789},"entity.zombie_villager.converted":{"id":790},"entity.zombie_villager.cure":{"id":791},"entity.zombie_villager.death":{"id":792},"entity.zombie_villager.hurt":{"id":793},"entity.zombie_villager.step":{"id":794}}},"fluid":{"default":"empty","id":1,"entries":{"empty":{"id":0},"flowing_water":{"id":1},"water":{"id":2},"flowing_lava":{"id":3},"lava":{"id":4}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611},"conduit":{"id":612},"bamboo_sapling":{"id":613},"bamboo":{"id":614},"potted_bamboo":{"id":615},"void_air":{"id":616},"cave_air":{"id":617},"bubble_column":{"id":618},"polished_granite_stairs":{"id":619},"smooth_red_sandstone_stairs":{"id":620},"mossy_stone_brick_stairs":{"id":621},"polished_diorite_stairs":{"id":622},"mossy_cobblestone_stairs":{"id":623},"end_stone_brick_stairs":{"id":624},"stone_stairs":{"id":625},"smooth_sandstone_stairs":{"id":626},"smooth_quartz_stairs":{"id":627},"granite_stairs":{"id":628},"andesite_stairs":{"id":629},"red_nether_brick_stairs":{"id":630},"polished_andesite_stairs":{"id":631},"diorite_stairs":{"id":632},"polished_granite_slab":{"id":633},"smooth_red_sandstone_slab":{"id":634},"mossy_stone_brick_slab":{"id":635},"polished_diorite_slab":{"id":636},"mossy_cobblestone_slab":{"id":637},"end_stone_brick_slab":{"id":638},"smooth_sandstone_slab":{"id":639},"smooth_quartz_slab":{"id":640},"granite_slab":{"id":641},"andesite_slab":{"id":642},"red_nether_brick_slab":{"id":643},"polished_andesite_slab":{"id":644},"diorite_slab":{"id":645},"brick_wall":{"id":646},"prismarine_wall":{"id":647},"red_sandstone_wall":{"id":648},"mossy_stone_brick_wall":{"id":649},"granite_wall":{"id":650},"stone_brick_wall":{"id":651},"nether_brick_wall":{"id":652},"andesite_wall":{"id":653},"red_nether_brick_wall":{"id":654},"sandstone_wall":{"id":655},"end_stone_brick_wall":{"id":656},"diorite_wall":{"id":657},"scaffolding":{"id":658},"loom":{"id":659},"barrel":{"id":660},"smoker":{"id":661},"blast_furnace":{"id":662},"cartography_table":{"id":663},"fletching_table":{"id":664},"grindstone":{"id":665},"lectern":{"id":666},"smithing_table":{"id":667},"stonecutter":{"id":668},"bell":{"id":669},"lantern":{"id":670},"campfire":{"id":671},"sweet_berry_bush":{"id":672},"structure_block":{"id":673},"jigsaw":{"id":674},"composter":{"id":675}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"entity_type":{"default":"pig","id":5,"entries":{"area_effect_cloud":{"id":0},"armor_stand":{"id":1},"arrow":{"id":2},"bat":{"id":3},"blaze":{"id":4},"boat":{"id":5},"cat":{"id":6},"cave_spider":{"id":7},"chicken":{"id":8},"cod":{"id":9},"cow":{"id":10},"creeper":{"id":11},"donkey":{"id":12},"dolphin":{"id":13},"dragon_fireball":{"id":14},"drowned":{"id":15},"elder_guardian":{"id":16},"end_crystal":{"id":17},"ender_dragon":{"id":18},"enderman":{"id":19},"endermite":{"id":20},"evoker_fangs":{"id":21},"evoker":{"id":22},"experience_orb":{"id":23},"eye_of_ender":{"id":24},"falling_block":{"id":25},"firework_rocket":{"id":26},"fox":{"id":27},"ghast":{"id":28},"giant":{"id":29},"guardian":{"id":30},"horse":{"id":31},"husk":{"id":32},"illusioner":{"id":33},"item":{"id":34},"item_frame":{"id":35},"fireball":{"id":36},"leash_knot":{"id":37},"llama":{"id":38},"llama_spit":{"id":39},"magma_cube":{"id":40},"minecart":{"id":41},"chest_minecart":{"id":42},"command_block_minecart":{"id":43},"furnace_minecart":{"id":44},"hopper_minecart":{"id":45},"spawner_minecart":{"id":46},"tnt_minecart":{"id":47},"mule":{"id":48},"mooshroom":{"id":49},"ocelot":{"id":50},"painting":{"id":51},"panda":{"id":52},"parrot":{"id":53},"pig":{"id":54},"pufferfish":{"id":55},"zombie_pigman":{"id":56},"polar_bear":{"id":57},"tnt":{"id":58},"rabbit":{"id":59},"salmon":{"id":60},"sheep":{"id":61},"shulker":{"id":62},"shulker_bullet":{"id":63},"silverfish":{"id":64},"skeleton":{"id":65},"skeleton_horse":{"id":66},"slime":{"id":67},"small_fireball":{"id":68},"snow_golem":{"id":69},"snowball":{"id":70},"spectral_arrow":{"id":71},"spider":{"id":72},"squid":{"id":73},"stray":{"id":74},"trader_llama":{"id":75},"tropical_fish":{"id":76},"turtle":{"id":77},"egg":{"id":78},"ender_pearl":{"id":79},"experience_bottle":{"id":80},"potion":{"id":81},"trident":{"id":82},"vex":{"id":83},"villager":{"id":84},"iron_golem":{"id":85},"vindicator":{"id":86},"pillager":{"id":87},"wandering_trader":{"id":88},"witch":{"id":89},"wither":{"id":90},"wither_skeleton":{"id":91},"wither_skull":{"id":92},"wolf":{"id":93},"zombie":{"id":94},"zombie_horse":{"id":95},"zombie_villager":{"id":96},"phantom":{"id":97},"ravager":{"id":98},"lightning_bolt":{"id":99},"player":{"id":100},"fishing_bobber":{"id":101}}},"item":{"default":"air","id":6,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"cornflower":{"id":108},"lily_of_the_valley":{"id":109},"wither_rose":{"id":110},"brown_mushroom":{"id":111},"red_mushroom":{"id":112},"gold_block":{"id":113},"iron_block":{"id":114},"oak_slab":{"id":115},"spruce_slab":{"id":116},"birch_slab":{"id":117},"jungle_slab":{"id":118},"acacia_slab":{"id":119},"dark_oak_slab":{"id":120},"stone_slab":{"id":121},"smooth_stone_slab":{"id":122},"sandstone_slab":{"id":123},"cut_sandstone_slab":{"id":124},"petrified_oak_slab":{"id":125},"cobblestone_slab":{"id":126},"brick_slab":{"id":127},"stone_brick_slab":{"id":128},"nether_brick_slab":{"id":129},"quartz_slab":{"id":130},"red_sandstone_slab":{"id":131},"cut_red_sandstone_slab":{"id":132},"purpur_slab":{"id":133},"prismarine_slab":{"id":134},"prismarine_brick_slab":{"id":135},"dark_prismarine_slab":{"id":136},"smooth_quartz":{"id":137},"smooth_red_sandstone":{"id":138},"smooth_sandstone":{"id":139},"smooth_stone":{"id":140},"bricks":{"id":141},"tnt":{"id":142},"bookshelf":{"id":143},"mossy_cobblestone":{"id":144},"obsidian":{"id":145},"torch":{"id":146},"end_rod":{"id":147},"chorus_plant":{"id":148},"chorus_flower":{"id":149},"purpur_block":{"id":150},"purpur_pillar":{"id":151},"purpur_stairs":{"id":152},"spawner":{"id":153},"oak_stairs":{"id":154},"chest":{"id":155},"diamond_ore":{"id":156},"diamond_block":{"id":157},"crafting_table":{"id":158},"farmland":{"id":159},"furnace":{"id":160},"ladder":{"id":161},"rail":{"id":162},"cobblestone_stairs":{"id":163},"lever":{"id":164},"stone_pressure_plate":{"id":165},"oak_pressure_plate":{"id":166},"spruce_pressure_plate":{"id":167},"birch_pressure_plate":{"id":168},"jungle_pressure_plate":{"id":169},"acacia_pressure_plate":{"id":170},"dark_oak_pressure_plate":{"id":171},"redstone_ore":{"id":172},"redstone_torch":{"id":173},"stone_button":{"id":174},"snow":{"id":175},"ice":{"id":176},"snow_block":{"id":177},"cactus":{"id":178},"clay":{"id":179},"jukebox":{"id":180},"oak_fence":{"id":181},"spruce_fence":{"id":182},"birch_fence":{"id":183},"jungle_fence":{"id":184},"acacia_fence":{"id":185},"dark_oak_fence":{"id":186},"pumpkin":{"id":187},"carved_pumpkin":{"id":188},"netherrack":{"id":189},"soul_sand":{"id":190},"glowstone":{"id":191},"jack_o_lantern":{"id":192},"oak_trapdoor":{"id":193},"spruce_trapdoor":{"id":194},"birch_trapdoor":{"id":195},"jungle_trapdoor":{"id":196},"acacia_trapdoor":{"id":197},"dark_oak_trapdoor":{"id":198},"infested_stone":{"id":199},"infested_cobblestone":{"id":200},"infested_stone_bricks":{"id":201},"infested_mossy_stone_bricks":{"id":202},"infested_cracked_stone_bricks":{"id":203},"infested_chiseled_stone_bricks":{"id":204},"stone_bricks":{"id":205},"mossy_stone_bricks":{"id":206},"cracked_stone_bricks":{"id":207},"chiseled_stone_bricks":{"id":208},"brown_mushroom_block":{"id":209},"red_mushroom_block":{"id":210},"mushroom_stem":{"id":211},"iron_bars":{"id":212},"glass_pane":{"id":213},"melon":{"id":214},"vine":{"id":215},"oak_fence_gate":{"id":216},"spruce_fence_gate":{"id":217},"birch_fence_gate":{"id":218},"jungle_fence_gate":{"id":219},"acacia_fence_gate":{"id":220},"dark_oak_fence_gate":{"id":221},"brick_stairs":{"id":222},"stone_brick_stairs":{"id":223},"mycelium":{"id":224},"lily_pad":{"id":225},"nether_bricks":{"id":226},"nether_brick_fence":{"id":227},"nether_brick_stairs":{"id":228},"enchanting_table":{"id":229},"end_portal_frame":{"id":230},"end_stone":{"id":231},"end_stone_bricks":{"id":232},"dragon_egg":{"id":233},"redstone_lamp":{"id":234},"sandstone_stairs":{"id":235},"emerald_ore":{"id":236},"ender_chest":{"id":237},"tripwire_hook":{"id":238},"emerald_block":{"id":239},"spruce_stairs":{"id":240},"birch_stairs":{"id":241},"jungle_stairs":{"id":242},"command_block":{"id":243},"beacon":{"id":244},"cobblestone_wall":{"id":245},"mossy_cobblestone_wall":{"id":246},"brick_wall":{"id":247},"prismarine_wall":{"id":248},"red_sandstone_wall":{"id":249},"mossy_stone_brick_wall":{"id":250},"granite_wall":{"id":251},"stone_brick_wall":{"id":252},"nether_brick_wall":{"id":253},"andesite_wall":{"id":254},"red_nether_brick_wall":{"id":255},"sandstone_wall":{"id":256},"end_stone_brick_wall":{"id":257},"diorite_wall":{"id":258},"oak_button":{"id":259},"spruce_button":{"id":260},"birch_button":{"id":261},"jungle_button":{"id":262},"acacia_button":{"id":263},"dark_oak_button":{"id":264},"anvil":{"id":265},"chipped_anvil":{"id":266},"damaged_anvil":{"id":267},"trapped_chest":{"id":268},"light_weighted_pressure_plate":{"id":269},"heavy_weighted_pressure_plate":{"id":270},"daylight_detector":{"id":271},"redstone_block":{"id":272},"nether_quartz_ore":{"id":273},"hopper":{"id":274},"chiseled_quartz_block":{"id":275},"quartz_block":{"id":276},"quartz_pillar":{"id":277},"quartz_stairs":{"id":278},"activator_rail":{"id":279},"dropper":{"id":280},"white_terracotta":{"id":281},"orange_terracotta":{"id":282},"magenta_terracotta":{"id":283},"light_blue_terracotta":{"id":284},"yellow_terracotta":{"id":285},"lime_terracotta":{"id":286},"pink_terracotta":{"id":287},"gray_terracotta":{"id":288},"light_gray_terracotta":{"id":289},"cyan_terracotta":{"id":290},"purple_terracotta":{"id":291},"blue_terracotta":{"id":292},"brown_terracotta":{"id":293},"green_terracotta":{"id":294},"red_terracotta":{"id":295},"black_terracotta":{"id":296},"barrier":{"id":297},"iron_trapdoor":{"id":298},"hay_block":{"id":299},"white_carpet":{"id":300},"orange_carpet":{"id":301},"magenta_carpet":{"id":302},"light_blue_carpet":{"id":303},"yellow_carpet":{"id":304},"lime_carpet":{"id":305},"pink_carpet":{"id":306},"gray_carpet":{"id":307},"light_gray_carpet":{"id":308},"cyan_carpet":{"id":309},"purple_carpet":{"id":310},"blue_carpet":{"id":311},"brown_carpet":{"id":312},"green_carpet":{"id":313},"red_carpet":{"id":314},"black_carpet":{"id":315},"terracotta":{"id":316},"coal_block":{"id":317},"packed_ice":{"id":318},"acacia_stairs":{"id":319},"dark_oak_stairs":{"id":320},"slime_block":{"id":321},"grass_path":{"id":322},"sunflower":{"id":323},"lilac":{"id":324},"rose_bush":{"id":325},"peony":{"id":326},"tall_grass":{"id":327},"large_fern":{"id":328},"white_stained_glass":{"id":329},"orange_stained_glass":{"id":330},"magenta_stained_glass":{"id":331},"light_blue_stained_glass":{"id":332},"yellow_stained_glass":{"id":333},"lime_stained_glass":{"id":334},"pink_stained_glass":{"id":335},"gray_stained_glass":{"id":336},"light_gray_stained_glass":{"id":337},"cyan_stained_glass":{"id":338},"purple_stained_glass":{"id":339},"blue_stained_glass":{"id":340},"brown_stained_glass":{"id":341},"green_stained_glass":{"id":342},"red_stained_glass":{"id":343},"black_stained_glass":{"id":344},"white_stained_glass_pane":{"id":345},"orange_stained_glass_pane":{"id":346},"magenta_stained_glass_pane":{"id":347},"light_blue_stained_glass_pane":{"id":348},"yellow_stained_glass_pane":{"id":349},"lime_stained_glass_pane":{"id":350},"pink_stained_glass_pane":{"id":351},"gray_stained_glass_pane":{"id":352},"light_gray_stained_glass_pane":{"id":353},"cyan_stained_glass_pane":{"id":354},"purple_stained_glass_pane":{"id":355},"blue_stained_glass_pane":{"id":356},"brown_stained_glass_pane":{"id":357},"green_stained_glass_pane":{"id":358},"red_stained_glass_pane":{"id":359},"black_stained_glass_pane":{"id":360},"prismarine":{"id":361},"prismarine_bricks":{"id":362},"dark_prismarine":{"id":363},"prismarine_stairs":{"id":364},"prismarine_brick_stairs":{"id":365},"dark_prismarine_stairs":{"id":366},"sea_lantern":{"id":367},"red_sandstone":{"id":368},"chiseled_red_sandstone":{"id":369},"cut_red_sandstone":{"id":370},"red_sandstone_stairs":{"id":371},"repeating_command_block":{"id":372},"chain_command_block":{"id":373},"magma_block":{"id":374},"nether_wart_block":{"id":375},"red_nether_bricks":{"id":376},"bone_block":{"id":377},"structure_void":{"id":378},"observer":{"id":379},"shulker_box":{"id":380},"white_shulker_box":{"id":381},"orange_shulker_box":{"id":382},"magenta_shulker_box":{"id":383},"light_blue_shulker_box":{"id":384},"yellow_shulker_box":{"id":385},"lime_shulker_box":{"id":386},"pink_shulker_box":{"id":387},"gray_shulker_box":{"id":388},"light_gray_shulker_box":{"id":389},"cyan_shulker_box":{"id":390},"purple_shulker_box":{"id":391},"blue_shulker_box":{"id":392},"brown_shulker_box":{"id":393},"green_shulker_box":{"id":394},"red_shulker_box":{"id":395},"black_shulker_box":{"id":396},"white_glazed_terracotta":{"id":397},"orange_glazed_terracotta":{"id":398},"magenta_glazed_terracotta":{"id":399},"light_blue_glazed_terracotta":{"id":400},"yellow_glazed_terracotta":{"id":401},"lime_glazed_terracotta":{"id":402},"pink_glazed_terracotta":{"id":403},"gray_glazed_terracotta":{"id":404},"light_gray_glazed_terracotta":{"id":405},"cyan_glazed_terracotta":{"id":406},"purple_glazed_terracotta":{"id":407},"blue_glazed_terracotta":{"id":408},"brown_glazed_terracotta":{"id":409},"green_glazed_terracotta":{"id":410},"red_glazed_terracotta":{"id":411},"black_glazed_terracotta":{"id":412},"white_concrete":{"id":413},"orange_concrete":{"id":414},"magenta_concrete":{"id":415},"light_blue_concrete":{"id":416},"yellow_concrete":{"id":417},"lime_concrete":{"id":418},"pink_concrete":{"id":419},"gray_concrete":{"id":420},"light_gray_concrete":{"id":421},"cyan_concrete":{"id":422},"purple_concrete":{"id":423},"blue_concrete":{"id":424},"brown_concrete":{"id":425},"green_concrete":{"id":426},"red_concrete":{"id":427},"black_concrete":{"id":428},"white_concrete_powder":{"id":429},"orange_concrete_powder":{"id":430},"magenta_concrete_powder":{"id":431},"light_blue_concrete_powder":{"id":432},"yellow_concrete_powder":{"id":433},"lime_concrete_powder":{"id":434},"pink_concrete_powder":{"id":435},"gray_concrete_powder":{"id":436},"light_gray_concrete_powder":{"id":437},"cyan_concrete_powder":{"id":438},"purple_concrete_powder":{"id":439},"blue_concrete_powder":{"id":440},"brown_concrete_powder":{"id":441},"green_concrete_powder":{"id":442},"red_concrete_powder":{"id":443},"black_concrete_powder":{"id":444},"turtle_egg":{"id":445},"dead_tube_coral_block":{"id":446},"dead_brain_coral_block":{"id":447},"dead_bubble_coral_block":{"id":448},"dead_fire_coral_block":{"id":449},"dead_horn_coral_block":{"id":450},"tube_coral_block":{"id":451},"brain_coral_block":{"id":452},"bubble_coral_block":{"id":453},"fire_coral_block":{"id":454},"horn_coral_block":{"id":455},"tube_coral":{"id":456},"brain_coral":{"id":457},"bubble_coral":{"id":458},"fire_coral":{"id":459},"horn_coral":{"id":460},"dead_brain_coral":{"id":461},"dead_bubble_coral":{"id":462},"dead_fire_coral":{"id":463},"dead_horn_coral":{"id":464},"dead_tube_coral":{"id":465},"tube_coral_fan":{"id":466},"brain_coral_fan":{"id":467},"bubble_coral_fan":{"id":468},"fire_coral_fan":{"id":469},"horn_coral_fan":{"id":470},"dead_tube_coral_fan":{"id":471},"dead_brain_coral_fan":{"id":472},"dead_bubble_coral_fan":{"id":473},"dead_fire_coral_fan":{"id":474},"dead_horn_coral_fan":{"id":475},"blue_ice":{"id":476},"conduit":{"id":477},"polished_granite_stairs":{"id":478},"smooth_red_sandstone_stairs":{"id":479},"mossy_stone_brick_stairs":{"id":480},"polished_diorite_stairs":{"id":481},"mossy_cobblestone_stairs":{"id":482},"end_stone_brick_stairs":{"id":483},"stone_stairs":{"id":484},"smooth_sandstone_stairs":{"id":485},"smooth_quartz_stairs":{"id":486},"granite_stairs":{"id":487},"andesite_stairs":{"id":488},"red_nether_brick_stairs":{"id":489},"polished_andesite_stairs":{"id":490},"diorite_stairs":{"id":491},"polished_granite_slab":{"id":492},"smooth_red_sandstone_slab":{"id":493},"mossy_stone_brick_slab":{"id":494},"polished_diorite_slab":{"id":495},"mossy_cobblestone_slab":{"id":496},"end_stone_brick_slab":{"id":497},"smooth_sandstone_slab":{"id":498},"smooth_quartz_slab":{"id":499},"granite_slab":{"id":500},"andesite_slab":{"id":501},"red_nether_brick_slab":{"id":502},"polished_andesite_slab":{"id":503},"diorite_slab":{"id":504},"scaffolding":{"id":505},"iron_door":{"id":506},"oak_door":{"id":507},"spruce_door":{"id":508},"birch_door":{"id":509},"jungle_door":{"id":510},"acacia_door":{"id":511},"dark_oak_door":{"id":512},"repeater":{"id":513},"comparator":{"id":514},"structure_block":{"id":515},"jigsaw":{"id":516},"composter":{"id":517},"turtle_helmet":{"id":518},"scute":{"id":519},"iron_shovel":{"id":520},"iron_pickaxe":{"id":521},"iron_axe":{"id":522},"flint_and_steel":{"id":523},"apple":{"id":524},"bow":{"id":525},"arrow":{"id":526},"coal":{"id":527},"charcoal":{"id":528},"diamond":{"id":529},"iron_ingot":{"id":530},"gold_ingot":{"id":531},"iron_sword":{"id":532},"wooden_sword":{"id":533},"wooden_shovel":{"id":534},"wooden_pickaxe":{"id":535},"wooden_axe":{"id":536},"stone_sword":{"id":537},"stone_shovel":{"id":538},"stone_pickaxe":{"id":539},"stone_axe":{"id":540},"diamond_sword":{"id":541},"diamond_shovel":{"id":542},"diamond_pickaxe":{"id":543},"diamond_axe":{"id":544},"stick":{"id":545},"bowl":{"id":546},"mushroom_stew":{"id":547},"golden_sword":{"id":548},"golden_shovel":{"id":549},"golden_pickaxe":{"id":550},"golden_axe":{"id":551},"string":{"id":552},"feather":{"id":553},"gunpowder":{"id":554},"wooden_hoe":{"id":555},"stone_hoe":{"id":556},"iron_hoe":{"id":557},"diamond_hoe":{"id":558},"golden_hoe":{"id":559},"wheat_seeds":{"id":560},"wheat":{"id":561},"bread":{"id":562},"leather_helmet":{"id":563},"leather_chestplate":{"id":564},"leather_leggings":{"id":565},"leather_boots":{"id":566},"chainmail_helmet":{"id":567},"chainmail_chestplate":{"id":568},"chainmail_leggings":{"id":569},"chainmail_boots":{"id":570},"iron_helmet":{"id":571},"iron_chestplate":{"id":572},"iron_leggings":{"id":573},"iron_boots":{"id":574},"diamond_helmet":{"id":575},"diamond_chestplate":{"id":576},"diamond_leggings":{"id":577},"diamond_boots":{"id":578},"golden_helmet":{"id":579},"golden_chestplate":{"id":580},"golden_leggings":{"id":581},"golden_boots":{"id":582},"flint":{"id":583},"porkchop":{"id":584},"cooked_porkchop":{"id":585},"painting":{"id":586},"golden_apple":{"id":587},"enchanted_golden_apple":{"id":588},"oak_sign":{"id":589},"spruce_sign":{"id":590},"birch_sign":{"id":591},"jungle_sign":{"id":592},"acacia_sign":{"id":593},"dark_oak_sign":{"id":594},"bucket":{"id":595},"water_bucket":{"id":596},"lava_bucket":{"id":597},"minecart":{"id":598},"saddle":{"id":599},"redstone":{"id":600},"snowball":{"id":601},"oak_boat":{"id":602},"leather":{"id":603},"milk_bucket":{"id":604},"pufferfish_bucket":{"id":605},"salmon_bucket":{"id":606},"cod_bucket":{"id":607},"tropical_fish_bucket":{"id":608},"brick":{"id":609},"clay_ball":{"id":610},"sugar_cane":{"id":611},"kelp":{"id":612},"dried_kelp_block":{"id":613},"bamboo":{"id":614},"paper":{"id":615},"book":{"id":616},"slime_ball":{"id":617},"chest_minecart":{"id":618},"furnace_minecart":{"id":619},"egg":{"id":620},"compass":{"id":621},"fishing_rod":{"id":622},"clock":{"id":623},"glowstone_dust":{"id":624},"cod":{"id":625},"salmon":{"id":626},"tropical_fish":{"id":627},"pufferfish":{"id":628},"cooked_cod":{"id":629},"cooked_salmon":{"id":630},"ink_sac":{"id":631},"red_dye":{"id":632},"green_dye":{"id":633},"cocoa_beans":{"id":634},"lapis_lazuli":{"id":635},"purple_dye":{"id":636},"cyan_dye":{"id":637},"light_gray_dye":{"id":638},"gray_dye":{"id":639},"pink_dye":{"id":640},"lime_dye":{"id":641},"yellow_dye":{"id":642},"light_blue_dye":{"id":643},"magenta_dye":{"id":644},"orange_dye":{"id":645},"bone_meal":{"id":646},"blue_dye":{"id":647},"brown_dye":{"id":648},"black_dye":{"id":649},"white_dye":{"id":650},"bone":{"id":651},"sugar":{"id":652},"cake":{"id":653},"white_bed":{"id":654},"orange_bed":{"id":655},"magenta_bed":{"id":656},"light_blue_bed":{"id":657},"yellow_bed":{"id":658},"lime_bed":{"id":659},"pink_bed":{"id":660},"gray_bed":{"id":661},"light_gray_bed":{"id":662},"cyan_bed":{"id":663},"purple_bed":{"id":664},"blue_bed":{"id":665},"brown_bed":{"id":666},"green_bed":{"id":667},"red_bed":{"id":668},"black_bed":{"id":669},"cookie":{"id":670},"filled_map":{"id":671},"shears":{"id":672},"melon_slice":{"id":673},"dried_kelp":{"id":674},"pumpkin_seeds":{"id":675},"melon_seeds":{"id":676},"beef":{"id":677},"cooked_beef":{"id":678},"chicken":{"id":679},"cooked_chicken":{"id":680},"rotten_flesh":{"id":681},"ender_pearl":{"id":682},"blaze_rod":{"id":683},"ghast_tear":{"id":684},"gold_nugget":{"id":685},"nether_wart":{"id":686},"potion":{"id":687},"glass_bottle":{"id":688},"spider_eye":{"id":689},"fermented_spider_eye":{"id":690},"blaze_powder":{"id":691},"magma_cream":{"id":692},"brewing_stand":{"id":693},"cauldron":{"id":694},"ender_eye":{"id":695},"glistering_melon_slice":{"id":696},"bat_spawn_egg":{"id":697},"blaze_spawn_egg":{"id":698},"cat_spawn_egg":{"id":699},"cave_spider_spawn_egg":{"id":700},"chicken_spawn_egg":{"id":701},"cod_spawn_egg":{"id":702},"cow_spawn_egg":{"id":703},"creeper_spawn_egg":{"id":704},"dolphin_spawn_egg":{"id":705},"donkey_spawn_egg":{"id":706},"drowned_spawn_egg":{"id":707},"elder_guardian_spawn_egg":{"id":708},"enderman_spawn_egg":{"id":709},"endermite_spawn_egg":{"id":710},"evoker_spawn_egg":{"id":711},"fox_spawn_egg":{"id":712},"ghast_spawn_egg":{"id":713},"guardian_spawn_egg":{"id":714},"horse_spawn_egg":{"id":715},"husk_spawn_egg":{"id":716},"llama_spawn_egg":{"id":717},"magma_cube_spawn_egg":{"id":718},"mooshroom_spawn_egg":{"id":719},"mule_spawn_egg":{"id":720},"ocelot_spawn_egg":{"id":721},"panda_spawn_egg":{"id":722},"parrot_spawn_egg":{"id":723},"phantom_spawn_egg":{"id":724},"pig_spawn_egg":{"id":725},"pillager_spawn_egg":{"id":726},"polar_bear_spawn_egg":{"id":727},"pufferfish_spawn_egg":{"id":728},"rabbit_spawn_egg":{"id":729},"ravager_spawn_egg":{"id":730},"salmon_spawn_egg":{"id":731},"sheep_spawn_egg":{"id":732},"shulker_spawn_egg":{"id":733},"silverfish_spawn_egg":{"id":734},"skeleton_spawn_egg":{"id":735},"skeleton_horse_spawn_egg":{"id":736},"slime_spawn_egg":{"id":737},"spider_spawn_egg":{"id":738},"squid_spawn_egg":{"id":739},"stray_spawn_egg":{"id":740},"trader_llama_spawn_egg":{"id":741},"tropical_fish_spawn_egg":{"id":742},"turtle_spawn_egg":{"id":743},"vex_spawn_egg":{"id":744},"villager_spawn_egg":{"id":745},"vindicator_spawn_egg":{"id":746},"wandering_trader_spawn_egg":{"id":747},"witch_spawn_egg":{"id":748},"wither_skeleton_spawn_egg":{"id":749},"wolf_spawn_egg":{"id":750},"zombie_spawn_egg":{"id":751},"zombie_horse_spawn_egg":{"id":752},"zombie_pigman_spawn_egg":{"id":753},"zombie_villager_spawn_egg":{"id":754},"experience_bottle":{"id":755},"fire_charge":{"id":756},"writable_book":{"id":757},"written_book":{"id":758},"emerald":{"id":759},"item_frame":{"id":760},"flower_pot":{"id":761},"carrot":{"id":762},"potato":{"id":763},"baked_potato":{"id":764},"poisonous_potato":{"id":765},"map":{"id":766},"golden_carrot":{"id":767},"skeleton_skull":{"id":768},"wither_skeleton_skull":{"id":769},"player_head":{"id":770},"zombie_head":{"id":771},"creeper_head":{"id":772},"dragon_head":{"id":773},"carrot_on_a_stick":{"id":774},"nether_star":{"id":775},"pumpkin_pie":{"id":776},"firework_rocket":{"id":777},"firework_star":{"id":778},"enchanted_book":{"id":779},"nether_brick":{"id":780},"quartz":{"id":781},"tnt_minecart":{"id":782},"hopper_minecart":{"id":783},"prismarine_shard":{"id":784},"prismarine_crystals":{"id":785},"rabbit":{"id":786},"cooked_rabbit":{"id":787},"rabbit_stew":{"id":788},"rabbit_foot":{"id":789},"rabbit_hide":{"id":790},"armor_stand":{"id":791},"iron_horse_armor":{"id":792},"golden_horse_armor":{"id":793},"diamond_horse_armor":{"id":794},"leather_horse_armor":{"id":795},"lead":{"id":796},"name_tag":{"id":797},"command_block_minecart":{"id":798},"mutton":{"id":799},"cooked_mutton":{"id":800},"white_banner":{"id":801},"orange_banner":{"id":802},"magenta_banner":{"id":803},"light_blue_banner":{"id":804},"yellow_banner":{"id":805},"lime_banner":{"id":806},"pink_banner":{"id":807},"gray_banner":{"id":808},"light_gray_banner":{"id":809},"cyan_banner":{"id":810},"purple_banner":{"id":811},"blue_banner":{"id":812},"brown_banner":{"id":813},"green_banner":{"id":814},"red_banner":{"id":815},"black_banner":{"id":816},"end_crystal":{"id":817},"chorus_fruit":{"id":818},"popped_chorus_fruit":{"id":819},"beetroot":{"id":820},"beetroot_seeds":{"id":821},"beetroot_soup":{"id":822},"dragon_breath":{"id":823},"splash_potion":{"id":824},"spectral_arrow":{"id":825},"tipped_arrow":{"id":826},"lingering_potion":{"id":827},"shield":{"id":828},"elytra":{"id":829},"spruce_boat":{"id":830},"birch_boat":{"id":831},"jungle_boat":{"id":832},"acacia_boat":{"id":833},"dark_oak_boat":{"id":834},"totem_of_undying":{"id":835},"shulker_shell":{"id":836},"iron_nugget":{"id":837},"knowledge_book":{"id":838},"debug_stick":{"id":839},"music_disc_13":{"id":840},"music_disc_cat":{"id":841},"music_disc_blocks":{"id":842},"music_disc_chirp":{"id":843},"music_disc_far":{"id":844},"music_disc_mall":{"id":845},"music_disc_mellohi":{"id":846},"music_disc_stal":{"id":847},"music_disc_strad":{"id":848},"music_disc_ward":{"id":849},"music_disc_11":{"id":850},"music_disc_wait":{"id":851},"trident":{"id":852},"phantom_membrane":{"id":853},"nautilus_shell":{"id":854},"heart_of_the_sea":{"id":855},"crossbow":{"id":856},"suspicious_stew":{"id":857},"loom":{"id":858},"flower_banner_pattern":{"id":859},"creeper_banner_pattern":{"id":860},"skull_banner_pattern":{"id":861},"mojang_banner_pattern":{"id":862},"globe_banner_pattern":{"id":863},"barrel":{"id":864},"smoker":{"id":865},"blast_furnace":{"id":866},"cartography_table":{"id":867},"fletching_table":{"id":868},"grindstone":{"id":869},"lectern":{"id":870},"smithing_table":{"id":871},"stonecutter":{"id":872},"bell":{"id":873},"lantern":{"id":874},"sweet_berries":{"id":875},"campfire":{"id":876}}},"potion":{"default":"empty","id":7,"entries":{"empty":{"id":0},"water":{"id":1},"mundane":{"id":2},"thick":{"id":3},"awkward":{"id":4},"night_vision":{"id":5},"long_night_vision":{"id":6},"invisibility":{"id":7},"long_invisibility":{"id":8},"leaping":{"id":9},"long_leaping":{"id":10},"strong_leaping":{"id":11},"fire_resistance":{"id":12},"long_fire_resistance":{"id":13},"swiftness":{"id":14},"long_swiftness":{"id":15},"strong_swiftness":{"id":16},"slowness":{"id":17},"long_slowness":{"id":18},"strong_slowness":{"id":19},"turtle_master":{"id":20},"long_turtle_master":{"id":21},"strong_turtle_master":{"id":22},"water_breathing":{"id":23},"long_water_breathing":{"id":24},"healing":{"id":25},"strong_healing":{"id":26},"harming":{"id":27},"strong_harming":{"id":28},"poison":{"id":29},"long_poison":{"id":30},"strong_poison":{"id":31},"regeneration":{"id":32},"long_regeneration":{"id":33},"strong_regeneration":{"id":34},"strength":{"id":35},"long_strength":{"id":36},"strong_strength":{"id":37},"weakness":{"id":38},"long_weakness":{"id":39},"luck":{"id":40},"slow_falling":{"id":41},"long_slow_falling":{"id":42}}},"carver":{"id":8,"entries":{"cave":{"id":0},"hell_cave":{"id":1},"canyon":{"id":2},"underwater_canyon":{"id":3},"underwater_cave":{"id":4}}},"surface_builder":{"id":9,"entries":{"default":{"id":0},"mountain":{"id":1},"shattered_savanna":{"id":2},"gravelly_mountain":{"id":3},"giant_tree_taiga":{"id":4},"swamp":{"id":5},"badlands":{"id":6},"wooded_badlands":{"id":7},"eroded_badlands":{"id":8},"frozen_ocean":{"id":9},"nether":{"id":10},"nope":{"id":11}}},"feature":{"id":10,"entries":{"pillager_outpost":{"id":0},"mineshaft":{"id":1},"woodland_mansion":{"id":2},"jungle_temple":{"id":3},"desert_pyramid":{"id":4},"igloo":{"id":5},"shipwreck":{"id":6},"swamp_hut":{"id":7},"stronghold":{"id":8},"ocean_monument":{"id":9},"ocean_ruin":{"id":10},"nether_bridge":{"id":11},"end_city":{"id":12},"buried_treasure":{"id":13},"village":{"id":14},"fancy_tree":{"id":15},"birch_tree":{"id":16},"super_birch_tree":{"id":17},"jungle_ground_bush":{"id":18},"jungle_tree":{"id":19},"pine_tree":{"id":20},"dark_oak_tree":{"id":21},"savanna_tree":{"id":22},"spruce_tree":{"id":23},"swamp_tree":{"id":24},"normal_tree":{"id":25},"mega_jungle_tree":{"id":26},"mega_pine_tree":{"id":27},"mega_spruce_tree":{"id":28},"default_flower":{"id":29},"forest_flower":{"id":30},"plain_flower":{"id":31},"swamp_flower":{"id":32},"general_forest_flower":{"id":33},"jungle_grass":{"id":34},"taiga_grass":{"id":35},"grass":{"id":36},"void_start_platform":{"id":37},"cactus":{"id":38},"dead_bush":{"id":39},"desert_well":{"id":40},"fossil":{"id":41},"hell_fire":{"id":42},"huge_red_mushroom":{"id":43},"huge_brown_mushroom":{"id":44},"ice_spike":{"id":45},"glowstone_blob":{"id":46},"melon":{"id":47},"pumpkin":{"id":48},"reed":{"id":49},"freeze_top_layer":{"id":50},"vines":{"id":51},"waterlily":{"id":52},"monster_room":{"id":53},"blue_ice":{"id":54},"iceberg":{"id":55},"forest_rock":{"id":56},"hay_pile":{"id":57},"snow_pile":{"id":58},"ice_pile":{"id":59},"melon_pile":{"id":60},"pumpkin_pile":{"id":61},"bush":{"id":62},"disk":{"id":63},"double_plant":{"id":64},"nether_spring":{"id":65},"ice_patch":{"id":66},"lake":{"id":67},"ore":{"id":68},"random_random_selector":{"id":69},"random_selector":{"id":70},"simple_random_selector":{"id":71},"random_boolean_selector":{"id":72},"emerald_ore":{"id":73},"spring_feature":{"id":74},"end_spike":{"id":75},"end_island":{"id":76},"chorus_plant":{"id":77},"end_gateway":{"id":78},"seagrass":{"id":79},"kelp":{"id":80},"coral_tree":{"id":81},"coral_mushroom":{"id":82},"coral_claw":{"id":83},"sea_pickle":{"id":84},"simple_block":{"id":85},"bamboo":{"id":86},"decorated":{"id":87},"decorated_flower":{"id":88},"sweet_berry_bush":{"id":89},"fill_layer":{"id":90},"bonus_chest":{"id":91}}},"decorator":{"id":11,"entries":{"count_heightmap":{"id":0},"count_top_solid":{"id":1},"count_heightmap_32":{"id":2},"count_heightmap_double":{"id":3},"count_height_64":{"id":4},"noise_heightmap_32":{"id":5},"noise_heightmap_double":{"id":6},"nope":{"id":7},"chance_heightmap":{"id":8},"chance_heightmap_double":{"id":9},"chance_passthrough":{"id":10},"chance_top_solid_heightmap":{"id":11},"count_extra_heightmap":{"id":12},"count_range":{"id":13},"count_biased_range":{"id":14},"count_very_biased_range":{"id":15},"random_count_range":{"id":16},"chance_range":{"id":17},"count_chance_heightmap":{"id":18},"count_chance_heightmap_double":{"id":19},"count_depth_average":{"id":20},"top_solid_heightmap":{"id":21},"top_solid_heightmap_range":{"id":22},"top_solid_heightmap_noise_biased":{"id":23},"carving_mask":{"id":24},"forest_rock":{"id":25},"hell_fire":{"id":26},"magma":{"id":27},"emerald_ore":{"id":28},"lava_lake":{"id":29},"water_lake":{"id":30},"dungeons":{"id":31},"dark_oak_tree":{"id":32},"iceberg":{"id":33},"light_gem_chance":{"id":34},"end_island":{"id":35},"chorus_plant":{"id":36},"end_gateway":{"id":37}}},"biome":{"id":12,"entries":{"ocean":{"id":0},"plains":{"id":1},"desert":{"id":2},"mountains":{"id":3},"forest":{"id":4},"taiga":{"id":5},"swamp":{"id":6},"river":{"id":7},"nether":{"id":8},"the_end":{"id":9},"frozen_ocean":{"id":10},"frozen_river":{"id":11},"snowy_tundra":{"id":12},"snowy_mountains":{"id":13},"mushroom_fields":{"id":14},"mushroom_field_shore":{"id":15},"beach":{"id":16},"desert_hills":{"id":17},"wooded_hills":{"id":18},"taiga_hills":{"id":19},"mountain_edge":{"id":20},"jungle":{"id":21},"jungle_hills":{"id":22},"jungle_edge":{"id":23},"deep_ocean":{"id":24},"stone_shore":{"id":25},"snowy_beach":{"id":26},"birch_forest":{"id":27},"birch_forest_hills":{"id":28},"dark_forest":{"id":29},"snowy_taiga":{"id":30},"snowy_taiga_hills":{"id":31},"giant_tree_taiga":{"id":32},"giant_tree_taiga_hills":{"id":33},"wooded_mountains":{"id":34},"savanna":{"id":35},"savanna_plateau":{"id":36},"badlands":{"id":37},"wooded_badlands_plateau":{"id":38},"badlands_plateau":{"id":39},"small_end_islands":{"id":40},"end_midlands":{"id":41},"end_highlands":{"id":42},"end_barrens":{"id":43},"warm_ocean":{"id":44},"lukewarm_ocean":{"id":45},"cold_ocean":{"id":46},"deep_warm_ocean":{"id":47},"deep_lukewarm_ocean":{"id":48},"deep_cold_ocean":{"id":49},"deep_frozen_ocean":{"id":50},"the_void":{"id":127},"sunflower_plains":{"id":129},"desert_lakes":{"id":130},"gravelly_mountains":{"id":131},"flower_forest":{"id":132},"taiga_mountains":{"id":133},"swamp_hills":{"id":134},"ice_spikes":{"id":140},"modified_jungle":{"id":149},"modified_jungle_edge":{"id":151},"tall_birch_forest":{"id":155},"tall_birch_hills":{"id":156},"dark_forest_hills":{"id":157},"snowy_taiga_mountains":{"id":158},"giant_spruce_taiga":{"id":160},"giant_spruce_taiga_hills":{"id":161},"modified_gravelly_mountains":{"id":162},"shattered_savanna":{"id":163},"shattered_savanna_plateau":{"id":164},"eroded_badlands":{"id":165},"modified_wooded_badlands_plateau":{"id":166},"modified_badlands_plateau":{"id":167},"bamboo_jungle":{"id":168},"bamboo_jungle_hills":{"id":169}}},"particle_type":{"id":13,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55},"campfire_cosy_smoke":{"id":56},"campfire_signal_smoke":{"id":57}}},"biome_source_type":{"id":14,"entries":{"checkerboard":{"id":0},"fixed":{"id":1},"vanilla_layered":{"id":2},"the_end":{"id":3}}},"block_entity_type":{"id":15,"entries":{"furnace":{"id":0},"chest":{"id":1},"trapped_chest":{"id":2},"ender_chest":{"id":3},"jukebox":{"id":4},"dispenser":{"id":5},"dropper":{"id":6},"sign":{"id":7},"mob_spawner":{"id":8},"piston":{"id":9},"brewing_stand":{"id":10},"enchanting_table":{"id":11},"end_portal":{"id":12},"beacon":{"id":13},"skull":{"id":14},"daylight_detector":{"id":15},"hopper":{"id":16},"comparator":{"id":17},"banner":{"id":18},"structure_block":{"id":19},"end_gateway":{"id":20},"command_block":{"id":21},"shulker_box":{"id":22},"bed":{"id":23},"conduit":{"id":24},"barrel":{"id":25},"smoker":{"id":26},"blast_furnace":{"id":27},"lectern":{"id":28},"bell":{"id":29},"jigsaw":{"id":30},"campfire":{"id":31}}},"chunk_generator_type":{"id":16,"entries":{"surface":{"id":0},"caves":{"id":1},"floating_islands":{"id":2},"debug":{"id":3},"flat":{"id":4}}},"dimension_type":{"id":17,"entries":{"overworld":{"id":1},"the_nether":{"id":0},"the_end":{"id":2}}},"motive":{"default":"kebab","id":18,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"custom_stat":{"id":19,"entries":{"leave_game":{"id":0},"play_one_minute":{"id":1},"time_since_death":{"id":2},"time_since_rest":{"id":3},"sneak_time":{"id":4},"walk_one_cm":{"id":5},"crouch_one_cm":{"id":6},"sprint_one_cm":{"id":7},"walk_on_water_one_cm":{"id":8},"fall_one_cm":{"id":9},"climb_one_cm":{"id":10},"fly_one_cm":{"id":11},"walk_under_water_one_cm":{"id":12},"minecart_one_cm":{"id":13},"boat_one_cm":{"id":14},"pig_one_cm":{"id":15},"horse_one_cm":{"id":16},"aviate_one_cm":{"id":17},"swim_one_cm":{"id":18},"jump":{"id":19},"drop":{"id":20},"damage_dealt":{"id":21},"damage_dealt_absorbed":{"id":22},"damage_dealt_resisted":{"id":23},"damage_taken":{"id":24},"damage_blocked_by_shield":{"id":25},"damage_absorbed":{"id":26},"damage_resisted":{"id":27},"deaths":{"id":28},"mob_kills":{"id":29},"animals_bred":{"id":30},"player_kills":{"id":31},"fish_caught":{"id":32},"talked_to_villager":{"id":33},"traded_with_villager":{"id":34},"eat_cake_slice":{"id":35},"fill_cauldron":{"id":36},"use_cauldron":{"id":37},"clean_armor":{"id":38},"clean_banner":{"id":39},"clean_shulker_box":{"id":40},"interact_with_brewingstand":{"id":41},"interact_with_beacon":{"id":42},"inspect_dropper":{"id":43},"inspect_hopper":{"id":44},"inspect_dispenser":{"id":45},"play_noteblock":{"id":46},"tune_noteblock":{"id":47},"pot_flower":{"id":48},"trigger_trapped_chest":{"id":49},"open_enderchest":{"id":50},"enchant_item":{"id":51},"play_record":{"id":52},"interact_with_furnace":{"id":53},"interact_with_crafting_table":{"id":54},"open_chest":{"id":55},"sleep_in_bed":{"id":56},"open_shulker_box":{"id":57},"open_barrel":{"id":58},"interact_with_blast_furnace":{"id":59},"interact_with_smoker":{"id":60},"interact_with_lectern":{"id":61},"interact_with_campfire":{"id":62},"interact_with_cartography_table":{"id":63},"interact_with_loom":{"id":64},"interact_with_stonecutter":{"id":65},"bell_ring":{"id":66},"raid_trigger":{"id":67},"raid_win":{"id":68}}},"chunk_status":{"default":"empty","id":20,"entries":{"empty":{"id":0},"structure_starts":{"id":1},"structure_references":{"id":2},"biomes":{"id":3},"noise":{"id":4},"surface":{"id":5},"carvers":{"id":6},"liquid_carvers":{"id":7},"features":{"id":8},"light":{"id":9},"spawn":{"id":10},"heightmaps":{"id":11},"full":{"id":12}}},"structure_feature":{"id":21,"entries":{"mineshaft":{"id":0},"pillager_outpost":{"id":1},"fortress":{"id":2},"stronghold":{"id":3},"jungle_pyramid":{"id":4},"ocean_ruin":{"id":5},"desert_pyramid":{"id":6},"igloo":{"id":7},"swamp_hut":{"id":8},"monument":{"id":9},"endcity":{"id":10},"mansion":{"id":11},"buried_treasure":{"id":12},"shipwreck":{"id":13},"village":{"id":14}}},"structure_piece":{"id":22,"entries":{"mscorridor":{"id":0},"mscrossing":{"id":1},"msroom":{"id":2},"msstairs":{"id":3},"pcp":{"id":4},"nvi":{"id":5},"nebcr":{"id":6},"nebef":{"id":7},"nebs":{"id":8},"neccs":{"id":9},"nectb":{"id":10},"nece":{"id":11},"nescsc":{"id":12},"nesclt":{"id":13},"nesc":{"id":14},"nescrt":{"id":15},"necsr":{"id":16},"nemt":{"id":17},"nerc":{"id":18},"nesr":{"id":19},"nestart":{"id":20},"shcc":{"id":21},"shfc":{"id":22},"sh5c":{"id":23},"shlt":{"id":24},"shli":{"id":25},"shpr":{"id":26},"shph":{"id":27},"shrt":{"id":28},"shrc":{"id":29},"shsd":{"id":30},"shstart":{"id":31},"shs":{"id":32},"shssd":{"id":33},"tejp":{"id":34},"orp":{"id":35},"iglu":{"id":36},"tesh":{"id":37},"tedp":{"id":38},"omb":{"id":39},"omcr":{"id":40},"omdxr":{"id":41},"omdxyr":{"id":42},"omdyr":{"id":43},"omdyzr":{"id":44},"omdzr":{"id":45},"omentry":{"id":46},"ompenthouse":{"id":47},"omsimple":{"id":48},"omsimplet":{"id":49},"omwr":{"id":50},"ecp":{"id":51},"wmp":{"id":52},"btp":{"id":53},"shipwreck":{"id":54}}},"rule_test":{"id":23,"entries":{"always_true":{"id":0},"block_match":{"id":1},"blockstate_match":{"id":2},"tag_match":{"id":3},"random_block_match":{"id":4},"random_blockstate_match":{"id":5}}},"structure_processor":{"id":24,"entries":{"block_ignore":{"id":0},"block_rot":{"id":1},"gravity":{"id":2},"jigsaw_replacement":{"id":3},"rule":{"id":4},"nop":{"id":5}}},"structure_pool_element":{"id":25,"entries":{"single_pool_element":{"id":0},"list_pool_element":{"id":1},"feature_pool_element":{"id":2},"empty_pool_element":{"id":3}}},"menu":{"id":26,"entries":{"generic_9x1":{"id":0},"generic_9x2":{"id":1},"generic_9x3":{"id":2},"generic_9x4":{"id":3},"generic_9x5":{"id":4},"generic_9x6":{"id":5},"generic_3x3":{"id":6},"anvil":{"id":7},"beacon":{"id":8},"blast_furnace":{"id":9},"brewing_stand":{"id":10},"crafting":{"id":11},"enchantment":{"id":12},"furnace":{"id":13},"grindstone":{"id":14},"hopper":{"id":15},"lectern":{"id":16},"loom":{"id":17},"merchant":{"id":18},"shulker_box":{"id":19},"smoker":{"id":20},"cartography":{"id":21},"stonecutter":{"id":22}}},"recipe_type":{"id":27,"entries":{"crafting":{"id":0},"smelting":{"id":1},"blasting":{"id":2},"smoking":{"id":3},"campfire_cooking":{"id":4},"stonecutting":{"id":5}}},"recipe_serializer":{"id":28,"entries":{"crafting_shaped":{"id":0},"crafting_shapeless":{"id":1},"crafting_special_armordye":{"id":2},"crafting_special_bookcloning":{"id":3},"crafting_special_mapcloning":{"id":4},"crafting_special_mapextending":{"id":5},"crafting_special_firework_rocket":{"id":6},"crafting_special_firework_star":{"id":7},"crafting_special_firework_star_fade":{"id":8},"crafting_special_tippedarrow":{"id":9},"crafting_special_bannerduplicate":{"id":10},"crafting_special_shielddecoration":{"id":11},"crafting_special_shulkerboxcoloring":{"id":12},"crafting_special_suspiciousstew":{"id":13},"crafting_special_repairitem":{"id":14},"smelting":{"id":15},"blasting":{"id":16},"smoking":{"id":17},"campfire_cooking":{"id":18},"stonecutting":{"id":19}}},"stat_type":{"id":29,"entries":{"mined":{"id":0},"crafted":{"id":1},"used":{"id":2},"broken":{"id":3},"picked_up":{"id":4},"dropped":{"id":5},"killed":{"id":6},"killed_by":{"id":7},"custom":{"id":8}}},"villager_type":{"default":"plains","id":30,"entries":{"desert":{"id":0},"jungle":{"id":1},"plains":{"id":2},"savanna":{"id":3},"snow":{"id":4},"swamp":{"id":5},"taiga":{"id":6}}},"villager_profession":{"default":"none","id":31,"entries":{"none":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14}}},"point_of_interest_type":{"default":"unemployed","id":32,"entries":{"unemployed":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14},"home":{"id":15},"meeting":{"id":16}}},"memory_module_type":{"default":"dummy","id":33,"entries":{"dummy":{"id":0},"home":{"id":1},"job_site":{"id":2},"meeting_point":{"id":3},"secondary_job_site":{"id":4},"mobs":{"id":5},"visible_mobs":{"id":6},"visible_villager_babies":{"id":7},"nearest_players":{"id":8},"nearest_visible_player":{"id":9},"walk_target":{"id":10},"look_target":{"id":11},"interaction_target":{"id":12},"breed_target":{"id":13},"path":{"id":14},"interactable_doors":{"id":15},"opened_doors":{"id":16},"nearest_bed":{"id":17},"hurt_by":{"id":18},"hurt_by_entity":{"id":19},"nearest_hostile":{"id":20},"hiding_place":{"id":21},"heard_bell_time":{"id":22},"cant_reach_walk_target_since":{"id":23},"golem_last_seen_time":{"id":24},"last_slept":{"id":25},"last_worked_at_poi":{"id":26}}},"sensor_type":{"default":"dummy","id":34,"entries":{"dummy":{"id":0},"nearest_living_entities":{"id":1},"nearest_players":{"id":2},"interactable_doors":{"id":3},"nearest_bed":{"id":4},"hurt_by":{"id":5},"villager_hostiles":{"id":6},"villager_babies":{"id":7},"secondary_pois":{"id":8},"golem_last_seen":{"id":9}}},"schedule":{"id":35,"entries":{"empty":{"id":0},"simple":{"id":1},"villager_baby":{"id":2},"villager_default":{"id":3}}},"activity":{"id":36,"entries":{"core":{"id":0},"idle":{"id":1},"work":{"id":2},"play":{"id":3},"rest":{"id":4},"meet":{"id":5},"panic":{"id":6},"raid":{"id":7},"pre_raid":{"id":8},"hide":{"id":9}}}}}
\ No newline at end of file
+{"minecraft":{"sound_event":{"id":0,"entries":{"ambient.cave":{"id":0},"ambient.underwater.enter":{"id":1},"ambient.underwater.exit":{"id":2},"ambient.underwater.loop":{"id":3},"ambient.underwater.loop.additions":{"id":4},"ambient.underwater.loop.additions.rare":{"id":5},"ambient.underwater.loop.additions.ultra_rare":{"id":6},"block.anvil.break":{"id":7},"block.anvil.destroy":{"id":8},"block.anvil.fall":{"id":9},"block.anvil.hit":{"id":10},"block.anvil.land":{"id":11},"block.anvil.place":{"id":12},"block.anvil.step":{"id":13},"block.anvil.use":{"id":14},"item.armor.equip_chain":{"id":15},"item.armor.equip_diamond":{"id":16},"item.armor.equip_elytra":{"id":17},"item.armor.equip_generic":{"id":18},"item.armor.equip_gold":{"id":19},"item.armor.equip_iron":{"id":20},"item.armor.equip_leather":{"id":21},"item.armor.equip_turtle":{"id":22},"entity.armor_stand.break":{"id":23},"entity.armor_stand.fall":{"id":24},"entity.armor_stand.hit":{"id":25},"entity.armor_stand.place":{"id":26},"entity.arrow.hit":{"id":27},"entity.arrow.hit_player":{"id":28},"entity.arrow.shoot":{"id":29},"item.axe.strip":{"id":30},"block.bamboo.break":{"id":31},"block.bamboo.fall":{"id":32},"block.bamboo.hit":{"id":33},"block.bamboo.place":{"id":34},"block.bamboo.step":{"id":35},"block.bamboo_sapling.break":{"id":36},"block.bamboo_sapling.hit":{"id":37},"block.bamboo_sapling.place":{"id":38},"block.barrel.close":{"id":39},"block.barrel.open":{"id":40},"entity.bat.ambient":{"id":41},"entity.bat.death":{"id":42},"entity.bat.hurt":{"id":43},"entity.bat.loop":{"id":44},"entity.bat.takeoff":{"id":45},"block.beacon.activate":{"id":46},"block.beacon.ambient":{"id":47},"block.beacon.deactivate":{"id":48},"block.beacon.power_select":{"id":49},"block.bell.use":{"id":50},"block.bell.resonate":{"id":51},"entity.blaze.ambient":{"id":52},"entity.blaze.burn":{"id":53},"entity.blaze.death":{"id":54},"entity.blaze.hurt":{"id":55},"entity.blaze.shoot":{"id":56},"entity.boat.paddle_land":{"id":57},"entity.boat.paddle_water":{"id":58},"item.book.page_turn":{"id":59},"item.book.put":{"id":60},"entity.fishing_bobber.retrieve":{"id":61},"entity.fishing_bobber.splash":{"id":62},"entity.fishing_bobber.throw":{"id":63},"block.blastfurnace.fire_crackle":{"id":64},"item.bottle.empty":{"id":65},"item.bottle.fill":{"id":66},"item.bottle.fill_dragonbreath":{"id":67},"block.brewing_stand.brew":{"id":68},"block.bubble_column.bubble_pop":{"id":69},"block.bubble_column.upwards_ambient":{"id":70},"block.bubble_column.upwards_inside":{"id":71},"block.bubble_column.whirlpool_ambient":{"id":72},"block.bubble_column.whirlpool_inside":{"id":73},"item.bucket.empty":{"id":74},"item.bucket.empty_fish":{"id":75},"item.bucket.empty_lava":{"id":76},"item.bucket.fill":{"id":77},"item.bucket.fill_fish":{"id":78},"item.bucket.fill_lava":{"id":79},"block.campfire.crackle":{"id":80},"entity.cat.ambient":{"id":81},"entity.cat.stray_ambient":{"id":82},"entity.cat.death":{"id":83},"entity.cat.eat":{"id":84},"entity.cat.hiss":{"id":85},"entity.cat.beg_for_food":{"id":86},"entity.cat.hurt":{"id":87},"entity.cat.purr":{"id":88},"entity.cat.purreow":{"id":89},"block.chest.close":{"id":90},"block.chest.locked":{"id":91},"block.chest.open":{"id":92},"entity.chicken.ambient":{"id":93},"entity.chicken.death":{"id":94},"entity.chicken.egg":{"id":95},"entity.chicken.hurt":{"id":96},"entity.chicken.step":{"id":97},"block.chorus_flower.death":{"id":98},"block.chorus_flower.grow":{"id":99},"item.chorus_fruit.teleport":{"id":100},"block.wool.break":{"id":101},"block.wool.fall":{"id":102},"block.wool.hit":{"id":103},"block.wool.place":{"id":104},"block.wool.step":{"id":105},"entity.cod.ambient":{"id":106},"entity.cod.death":{"id":107},"entity.cod.flop":{"id":108},"entity.cod.hurt":{"id":109},"block.comparator.click":{"id":110},"block.composter.empty":{"id":111},"block.composter.fill":{"id":112},"block.composter.fill_success":{"id":113},"block.composter.ready":{"id":114},"block.conduit.activate":{"id":115},"block.conduit.ambient":{"id":116},"block.conduit.ambient.short":{"id":117},"block.conduit.attack.target":{"id":118},"block.conduit.deactivate":{"id":119},"entity.cow.ambient":{"id":120},"entity.cow.death":{"id":121},"entity.cow.hurt":{"id":122},"entity.cow.milk":{"id":123},"entity.cow.step":{"id":124},"entity.creeper.death":{"id":125},"entity.creeper.hurt":{"id":126},"entity.creeper.primed":{"id":127},"block.crop.break":{"id":128},"item.crop.plant":{"id":129},"item.crossbow.hit":{"id":130},"item.crossbow.loading_end":{"id":131},"item.crossbow.loading_middle":{"id":132},"item.crossbow.loading_start":{"id":133},"item.crossbow.quick_charge_1":{"id":134},"item.crossbow.quick_charge_2":{"id":135},"item.crossbow.quick_charge_3":{"id":136},"item.crossbow.shoot":{"id":137},"block.dispenser.dispense":{"id":138},"block.dispenser.fail":{"id":139},"block.dispenser.launch":{"id":140},"entity.dolphin.ambient":{"id":141},"entity.dolphin.ambient_water":{"id":142},"entity.dolphin.attack":{"id":143},"entity.dolphin.death":{"id":144},"entity.dolphin.eat":{"id":145},"entity.dolphin.hurt":{"id":146},"entity.dolphin.jump":{"id":147},"entity.dolphin.play":{"id":148},"entity.dolphin.splash":{"id":149},"entity.dolphin.swim":{"id":150},"entity.donkey.ambient":{"id":151},"entity.donkey.angry":{"id":152},"entity.donkey.chest":{"id":153},"entity.donkey.death":{"id":154},"entity.donkey.hurt":{"id":155},"entity.drowned.ambient":{"id":156},"entity.drowned.ambient_water":{"id":157},"entity.drowned.death":{"id":158},"entity.drowned.death_water":{"id":159},"entity.drowned.hurt":{"id":160},"entity.drowned.hurt_water":{"id":161},"entity.drowned.shoot":{"id":162},"entity.drowned.step":{"id":163},"entity.drowned.swim":{"id":164},"entity.egg.throw":{"id":165},"entity.elder_guardian.ambient":{"id":166},"entity.elder_guardian.ambient_land":{"id":167},"entity.elder_guardian.curse":{"id":168},"entity.elder_guardian.death":{"id":169},"entity.elder_guardian.death_land":{"id":170},"entity.elder_guardian.flop":{"id":171},"entity.elder_guardian.hurt":{"id":172},"entity.elder_guardian.hurt_land":{"id":173},"item.elytra.flying":{"id":174},"block.enchantment_table.use":{"id":175},"block.ender_chest.close":{"id":176},"block.ender_chest.open":{"id":177},"entity.ender_dragon.ambient":{"id":178},"entity.ender_dragon.death":{"id":179},"entity.dragon_fireball.explode":{"id":180},"entity.ender_dragon.flap":{"id":181},"entity.ender_dragon.growl":{"id":182},"entity.ender_dragon.hurt":{"id":183},"entity.ender_dragon.shoot":{"id":184},"entity.ender_eye.death":{"id":185},"entity.ender_eye.launch":{"id":186},"entity.enderman.ambient":{"id":187},"entity.enderman.death":{"id":188},"entity.enderman.hurt":{"id":189},"entity.enderman.scream":{"id":190},"entity.enderman.stare":{"id":191},"entity.enderman.teleport":{"id":192},"entity.endermite.ambient":{"id":193},"entity.endermite.death":{"id":194},"entity.endermite.hurt":{"id":195},"entity.endermite.step":{"id":196},"entity.ender_pearl.throw":{"id":197},"block.end_gateway.spawn":{"id":198},"block.end_portal_frame.fill":{"id":199},"block.end_portal.spawn":{"id":200},"entity.evoker.ambient":{"id":201},"entity.evoker.cast_spell":{"id":202},"entity.evoker.celebrate":{"id":203},"entity.evoker.death":{"id":204},"entity.evoker_fangs.attack":{"id":205},"entity.evoker.hurt":{"id":206},"entity.evoker.prepare_attack":{"id":207},"entity.evoker.prepare_summon":{"id":208},"entity.evoker.prepare_wololo":{"id":209},"entity.experience_bottle.throw":{"id":210},"entity.experience_orb.pickup":{"id":211},"block.fence_gate.close":{"id":212},"block.fence_gate.open":{"id":213},"item.firecharge.use":{"id":214},"entity.firework_rocket.blast":{"id":215},"entity.firework_rocket.blast_far":{"id":216},"entity.firework_rocket.large_blast":{"id":217},"entity.firework_rocket.large_blast_far":{"id":218},"entity.firework_rocket.launch":{"id":219},"entity.firework_rocket.shoot":{"id":220},"entity.firework_rocket.twinkle":{"id":221},"entity.firework_rocket.twinkle_far":{"id":222},"block.fire.ambient":{"id":223},"block.fire.extinguish":{"id":224},"entity.fish.swim":{"id":225},"item.flintandsteel.use":{"id":226},"entity.fox.aggro":{"id":227},"entity.fox.ambient":{"id":228},"entity.fox.bite":{"id":229},"entity.fox.death":{"id":230},"entity.fox.eat":{"id":231},"entity.fox.hurt":{"id":232},"entity.fox.screech":{"id":233},"entity.fox.sleep":{"id":234},"entity.fox.sniff":{"id":235},"entity.fox.spit":{"id":236},"block.furnace.fire_crackle":{"id":237},"entity.generic.big_fall":{"id":238},"entity.generic.burn":{"id":239},"entity.generic.death":{"id":240},"entity.generic.drink":{"id":241},"entity.generic.eat":{"id":242},"entity.generic.explode":{"id":243},"entity.generic.extinguish_fire":{"id":244},"entity.generic.hurt":{"id":245},"entity.generic.small_fall":{"id":246},"entity.generic.splash":{"id":247},"entity.generic.swim":{"id":248},"entity.ghast.ambient":{"id":249},"entity.ghast.death":{"id":250},"entity.ghast.hurt":{"id":251},"entity.ghast.scream":{"id":252},"entity.ghast.shoot":{"id":253},"entity.ghast.warn":{"id":254},"block.glass.break":{"id":255},"block.glass.fall":{"id":256},"block.glass.hit":{"id":257},"block.glass.place":{"id":258},"block.glass.step":{"id":259},"block.grass.break":{"id":260},"block.grass.fall":{"id":261},"block.grass.hit":{"id":262},"block.grass.place":{"id":263},"block.grass.step":{"id":264},"block.wet_grass.break":{"id":265},"block.wet_grass.fall":{"id":266},"block.wet_grass.hit":{"id":267},"block.wet_grass.place":{"id":268},"block.wet_grass.step":{"id":269},"block.coral_block.break":{"id":270},"block.coral_block.fall":{"id":271},"block.coral_block.hit":{"id":272},"block.coral_block.place":{"id":273},"block.coral_block.step":{"id":274},"block.gravel.break":{"id":275},"block.gravel.fall":{"id":276},"block.gravel.hit":{"id":277},"block.gravel.place":{"id":278},"block.gravel.step":{"id":279},"block.grindstone.use":{"id":280},"entity.guardian.ambient":{"id":281},"entity.guardian.ambient_land":{"id":282},"entity.guardian.attack":{"id":283},"entity.guardian.death":{"id":284},"entity.guardian.death_land":{"id":285},"entity.guardian.flop":{"id":286},"entity.guardian.hurt":{"id":287},"entity.guardian.hurt_land":{"id":288},"item.hoe.till":{"id":289},"entity.horse.ambient":{"id":290},"entity.horse.angry":{"id":291},"entity.horse.armor":{"id":292},"entity.horse.breathe":{"id":293},"entity.horse.death":{"id":294},"entity.horse.eat":{"id":295},"entity.horse.gallop":{"id":296},"entity.horse.hurt":{"id":297},"entity.horse.jump":{"id":298},"entity.horse.land":{"id":299},"entity.horse.saddle":{"id":300},"entity.horse.step":{"id":301},"entity.horse.step_wood":{"id":302},"entity.hostile.big_fall":{"id":303},"entity.hostile.death":{"id":304},"entity.hostile.hurt":{"id":305},"entity.hostile.small_fall":{"id":306},"entity.hostile.splash":{"id":307},"entity.hostile.swim":{"id":308},"entity.husk.ambient":{"id":309},"entity.husk.converted_to_zombie":{"id":310},"entity.husk.death":{"id":311},"entity.husk.hurt":{"id":312},"entity.husk.step":{"id":313},"entity.ravager.ambient":{"id":314},"entity.ravager.attack":{"id":315},"entity.ravager.celebrate":{"id":316},"entity.ravager.death":{"id":317},"entity.ravager.hurt":{"id":318},"entity.ravager.step":{"id":319},"entity.ravager.stunned":{"id":320},"entity.ravager.roar":{"id":321},"entity.illusioner.ambient":{"id":322},"entity.illusioner.cast_spell":{"id":323},"entity.illusioner.death":{"id":324},"entity.illusioner.hurt":{"id":325},"entity.illusioner.mirror_move":{"id":326},"entity.illusioner.prepare_blindness":{"id":327},"entity.illusioner.prepare_mirror":{"id":328},"block.iron_door.close":{"id":329},"block.iron_door.open":{"id":330},"entity.iron_golem.attack":{"id":331},"entity.iron_golem.death":{"id":332},"entity.iron_golem.hurt":{"id":333},"entity.iron_golem.step":{"id":334},"block.iron_trapdoor.close":{"id":335},"block.iron_trapdoor.open":{"id":336},"entity.item_frame.add_item":{"id":337},"entity.item_frame.break":{"id":338},"entity.item_frame.place":{"id":339},"entity.item_frame.remove_item":{"id":340},"entity.item_frame.rotate_item":{"id":341},"entity.item.break":{"id":342},"entity.item.pickup":{"id":343},"block.ladder.break":{"id":344},"block.ladder.fall":{"id":345},"block.ladder.hit":{"id":346},"block.ladder.place":{"id":347},"block.ladder.step":{"id":348},"block.lantern.break":{"id":349},"block.lantern.fall":{"id":350},"block.lantern.hit":{"id":351},"block.lantern.place":{"id":352},"block.lantern.step":{"id":353},"block.lava.ambient":{"id":354},"block.lava.extinguish":{"id":355},"block.lava.pop":{"id":356},"entity.leash_knot.break":{"id":357},"entity.leash_knot.place":{"id":358},"block.lever.click":{"id":359},"entity.lightning_bolt.impact":{"id":360},"entity.lightning_bolt.thunder":{"id":361},"entity.lingering_potion.throw":{"id":362},"entity.llama.ambient":{"id":363},"entity.llama.angry":{"id":364},"entity.llama.chest":{"id":365},"entity.llama.death":{"id":366},"entity.llama.eat":{"id":367},"entity.llama.hurt":{"id":368},"entity.llama.spit":{"id":369},"entity.llama.step":{"id":370},"entity.llama.swag":{"id":371},"entity.magma_cube.death":{"id":372},"entity.magma_cube.hurt":{"id":373},"entity.magma_cube.jump":{"id":374},"entity.magma_cube.squish":{"id":375},"block.metal.break":{"id":376},"block.metal.fall":{"id":377},"block.metal.hit":{"id":378},"block.metal.place":{"id":379},"block.metal_pressure_plate.click_off":{"id":380},"block.metal_pressure_plate.click_on":{"id":381},"block.metal.step":{"id":382},"entity.minecart.inside":{"id":383},"entity.minecart.riding":{"id":384},"entity.mooshroom.convert":{"id":385},"entity.mooshroom.eat":{"id":386},"entity.mooshroom.milk":{"id":387},"entity.mooshroom.suspicious_milk":{"id":388},"entity.mooshroom.shear":{"id":389},"entity.mule.ambient":{"id":390},"entity.mule.chest":{"id":391},"entity.mule.death":{"id":392},"entity.mule.hurt":{"id":393},"music.creative":{"id":394},"music.credits":{"id":395},"music.dragon":{"id":396},"music.end":{"id":397},"music.game":{"id":398},"music.menu":{"id":399},"music.nether":{"id":400},"music.under_water":{"id":401},"block.nether_wart.break":{"id":402},"item.nether_wart.plant":{"id":403},"block.note_block.basedrum":{"id":404},"block.note_block.bass":{"id":405},"block.note_block.bell":{"id":406},"block.note_block.chime":{"id":407},"block.note_block.flute":{"id":408},"block.note_block.guitar":{"id":409},"block.note_block.harp":{"id":410},"block.note_block.hat":{"id":411},"block.note_block.pling":{"id":412},"block.note_block.snare":{"id":413},"block.note_block.xylophone":{"id":414},"block.note_block.iron_xylophone":{"id":415},"block.note_block.cow_bell":{"id":416},"block.note_block.didgeridoo":{"id":417},"block.note_block.bit":{"id":418},"block.note_block.banjo":{"id":419},"entity.ocelot.hurt":{"id":420},"entity.ocelot.ambient":{"id":421},"entity.ocelot.death":{"id":422},"entity.painting.break":{"id":423},"entity.painting.place":{"id":424},"entity.panda.pre_sneeze":{"id":425},"entity.panda.sneeze":{"id":426},"entity.panda.ambient":{"id":427},"entity.panda.death":{"id":428},"entity.panda.eat":{"id":429},"entity.panda.step":{"id":430},"entity.panda.cant_breed":{"id":431},"entity.panda.aggressive_ambient":{"id":432},"entity.panda.worried_ambient":{"id":433},"entity.panda.hurt":{"id":434},"entity.panda.bite":{"id":435},"entity.parrot.ambient":{"id":436},"entity.parrot.death":{"id":437},"entity.parrot.eat":{"id":438},"entity.parrot.fly":{"id":439},"entity.parrot.hurt":{"id":440},"entity.parrot.imitate.blaze":{"id":441},"entity.parrot.imitate.creeper":{"id":442},"entity.parrot.imitate.drowned":{"id":443},"entity.parrot.imitate.elder_guardian":{"id":444},"entity.parrot.imitate.ender_dragon":{"id":445},"entity.parrot.imitate.enderman":{"id":446},"entity.parrot.imitate.endermite":{"id":447},"entity.parrot.imitate.evoker":{"id":448},"entity.parrot.imitate.ghast":{"id":449},"entity.parrot.imitate.guardian":{"id":450},"entity.parrot.imitate.husk":{"id":451},"entity.parrot.imitate.illusioner":{"id":452},"entity.parrot.imitate.magma_cube":{"id":453},"entity.parrot.imitate.panda":{"id":454},"entity.parrot.imitate.phantom":{"id":455},"entity.parrot.imitate.pillager":{"id":456},"entity.parrot.imitate.polar_bear":{"id":457},"entity.parrot.imitate.ravager":{"id":458},"entity.parrot.imitate.shulker":{"id":459},"entity.parrot.imitate.silverfish":{"id":460},"entity.parrot.imitate.skeleton":{"id":461},"entity.parrot.imitate.slime":{"id":462},"entity.parrot.imitate.spider":{"id":463},"entity.parrot.imitate.stray":{"id":464},"entity.parrot.imitate.vex":{"id":465},"entity.parrot.imitate.vindicator":{"id":466},"entity.parrot.imitate.witch":{"id":467},"entity.parrot.imitate.wither":{"id":468},"entity.parrot.imitate.wither_skeleton":{"id":469},"entity.parrot.imitate.wolf":{"id":470},"entity.parrot.imitate.zombie":{"id":471},"entity.parrot.imitate.zombie_pigman":{"id":472},"entity.parrot.imitate.zombie_villager":{"id":473},"entity.parrot.step":{"id":474},"entity.phantom.ambient":{"id":475},"entity.phantom.bite":{"id":476},"entity.phantom.death":{"id":477},"entity.phantom.flap":{"id":478},"entity.phantom.hurt":{"id":479},"entity.phantom.swoop":{"id":480},"entity.pig.ambient":{"id":481},"entity.pig.death":{"id":482},"entity.pig.hurt":{"id":483},"entity.pig.saddle":{"id":484},"entity.pig.step":{"id":485},"entity.pillager.ambient":{"id":486},"entity.pillager.celebrate":{"id":487},"entity.pillager.death":{"id":488},"entity.pillager.hurt":{"id":489},"block.piston.contract":{"id":490},"block.piston.extend":{"id":491},"entity.player.attack.crit":{"id":492},"entity.player.attack.knockback":{"id":493},"entity.player.attack.nodamage":{"id":494},"entity.player.attack.strong":{"id":495},"entity.player.attack.sweep":{"id":496},"entity.player.attack.weak":{"id":497},"entity.player.big_fall":{"id":498},"entity.player.breath":{"id":499},"entity.player.burp":{"id":500},"entity.player.death":{"id":501},"entity.player.hurt":{"id":502},"entity.player.hurt_drown":{"id":503},"entity.player.hurt_on_fire":{"id":504},"entity.player.hurt_sweet_berry_bush":{"id":505},"entity.player.levelup":{"id":506},"entity.player.small_fall":{"id":507},"entity.player.splash":{"id":508},"entity.player.splash.high_speed":{"id":509},"entity.player.swim":{"id":510},"entity.polar_bear.ambient":{"id":511},"entity.polar_bear.ambient_baby":{"id":512},"entity.polar_bear.death":{"id":513},"entity.polar_bear.hurt":{"id":514},"entity.polar_bear.step":{"id":515},"entity.polar_bear.warning":{"id":516},"block.portal.ambient":{"id":517},"block.portal.travel":{"id":518},"block.portal.trigger":{"id":519},"entity.puffer_fish.ambient":{"id":520},"entity.puffer_fish.blow_out":{"id":521},"entity.puffer_fish.blow_up":{"id":522},"entity.puffer_fish.death":{"id":523},"entity.puffer_fish.flop":{"id":524},"entity.puffer_fish.hurt":{"id":525},"entity.puffer_fish.sting":{"id":526},"block.pumpkin.carve":{"id":527},"entity.rabbit.ambient":{"id":528},"entity.rabbit.attack":{"id":529},"entity.rabbit.death":{"id":530},"entity.rabbit.hurt":{"id":531},"entity.rabbit.jump":{"id":532},"event.raid.horn":{"id":533},"music_disc.11":{"id":534},"music_disc.13":{"id":535},"music_disc.blocks":{"id":536},"music_disc.cat":{"id":537},"music_disc.chirp":{"id":538},"music_disc.far":{"id":539},"music_disc.mall":{"id":540},"music_disc.mellohi":{"id":541},"music_disc.stal":{"id":542},"music_disc.strad":{"id":543},"music_disc.wait":{"id":544},"music_disc.ward":{"id":545},"block.redstone_torch.burnout":{"id":546},"entity.salmon.ambient":{"id":547},"entity.salmon.death":{"id":548},"entity.salmon.flop":{"id":549},"entity.salmon.hurt":{"id":550},"block.sand.break":{"id":551},"block.sand.fall":{"id":552},"block.sand.hit":{"id":553},"block.sand.place":{"id":554},"block.sand.step":{"id":555},"block.scaffolding.break":{"id":556},"block.scaffolding.fall":{"id":557},"block.scaffolding.hit":{"id":558},"block.scaffolding.place":{"id":559},"block.scaffolding.step":{"id":560},"entity.sheep.ambient":{"id":561},"entity.sheep.death":{"id":562},"entity.sheep.hurt":{"id":563},"entity.sheep.shear":{"id":564},"entity.sheep.step":{"id":565},"item.shield.block":{"id":566},"item.shield.break":{"id":567},"item.shovel.flatten":{"id":568},"entity.shulker.ambient":{"id":569},"block.shulker_box.close":{"id":570},"block.shulker_box.open":{"id":571},"entity.shulker_bullet.hit":{"id":572},"entity.shulker_bullet.hurt":{"id":573},"entity.shulker.close":{"id":574},"entity.shulker.death":{"id":575},"entity.shulker.hurt":{"id":576},"entity.shulker.hurt_closed":{"id":577},"entity.shulker.open":{"id":578},"entity.shulker.shoot":{"id":579},"entity.shulker.teleport":{"id":580},"entity.silverfish.ambient":{"id":581},"entity.silverfish.death":{"id":582},"entity.silverfish.hurt":{"id":583},"entity.silverfish.step":{"id":584},"entity.skeleton.ambient":{"id":585},"entity.skeleton.death":{"id":586},"entity.skeleton_horse.ambient":{"id":587},"entity.skeleton_horse.death":{"id":588},"entity.skeleton_horse.hurt":{"id":589},"entity.skeleton_horse.swim":{"id":590},"entity.skeleton_horse.ambient_water":{"id":591},"entity.skeleton_horse.gallop_water":{"id":592},"entity.skeleton_horse.jump_water":{"id":593},"entity.skeleton_horse.step_water":{"id":594},"entity.skeleton.hurt":{"id":595},"entity.skeleton.shoot":{"id":596},"entity.skeleton.step":{"id":597},"entity.slime.attack":{"id":598},"entity.slime.death":{"id":599},"entity.slime.hurt":{"id":600},"entity.slime.jump":{"id":601},"entity.slime.squish":{"id":602},"block.slime_block.break":{"id":603},"block.slime_block.fall":{"id":604},"block.slime_block.hit":{"id":605},"block.slime_block.place":{"id":606},"block.slime_block.step":{"id":607},"entity.magma_cube.death_small":{"id":608},"entity.magma_cube.hurt_small":{"id":609},"entity.magma_cube.squish_small":{"id":610},"entity.slime.death_small":{"id":611},"entity.slime.hurt_small":{"id":612},"entity.slime.jump_small":{"id":613},"entity.slime.squish_small":{"id":614},"block.smoker.smoke":{"id":615},"entity.snowball.throw":{"id":616},"block.snow.break":{"id":617},"block.snow.fall":{"id":618},"entity.snow_golem.ambient":{"id":619},"entity.snow_golem.death":{"id":620},"entity.snow_golem.hurt":{"id":621},"entity.snow_golem.shoot":{"id":622},"block.snow.hit":{"id":623},"block.snow.place":{"id":624},"block.snow.step":{"id":625},"entity.spider.ambient":{"id":626},"entity.spider.death":{"id":627},"entity.spider.hurt":{"id":628},"entity.spider.step":{"id":629},"entity.splash_potion.break":{"id":630},"entity.splash_potion.throw":{"id":631},"entity.squid.ambient":{"id":632},"entity.squid.death":{"id":633},"entity.squid.hurt":{"id":634},"entity.squid.squirt":{"id":635},"block.stone.break":{"id":636},"block.stone_button.click_off":{"id":637},"block.stone_button.click_on":{"id":638},"block.stone.fall":{"id":639},"block.stone.hit":{"id":640},"block.stone.place":{"id":641},"block.stone_pressure_plate.click_off":{"id":642},"block.stone_pressure_plate.click_on":{"id":643},"block.stone.step":{"id":644},"entity.stray.ambient":{"id":645},"entity.stray.death":{"id":646},"entity.stray.hurt":{"id":647},"entity.stray.step":{"id":648},"block.sweet_berry_bush.break":{"id":649},"block.sweet_berry_bush.place":{"id":650},"item.sweet_berries.pick_from_bush":{"id":651},"enchant.thorns.hit":{"id":652},"entity.tnt.primed":{"id":653},"item.totem.use":{"id":654},"item.trident.hit":{"id":655},"item.trident.hit_ground":{"id":656},"item.trident.return":{"id":657},"item.trident.riptide_1":{"id":658},"item.trident.riptide_2":{"id":659},"item.trident.riptide_3":{"id":660},"item.trident.throw":{"id":661},"item.trident.thunder":{"id":662},"block.tripwire.attach":{"id":663},"block.tripwire.click_off":{"id":664},"block.tripwire.click_on":{"id":665},"block.tripwire.detach":{"id":666},"entity.tropical_fish.ambient":{"id":667},"entity.tropical_fish.death":{"id":668},"entity.tropical_fish.flop":{"id":669},"entity.tropical_fish.hurt":{"id":670},"entity.turtle.ambient_land":{"id":671},"entity.turtle.death":{"id":672},"entity.turtle.death_baby":{"id":673},"entity.turtle.egg_break":{"id":674},"entity.turtle.egg_crack":{"id":675},"entity.turtle.egg_hatch":{"id":676},"entity.turtle.hurt":{"id":677},"entity.turtle.hurt_baby":{"id":678},"entity.turtle.lay_egg":{"id":679},"entity.turtle.shamble":{"id":680},"entity.turtle.shamble_baby":{"id":681},"entity.turtle.swim":{"id":682},"ui.button.click":{"id":683},"ui.loom.select_pattern":{"id":684},"ui.loom.take_result":{"id":685},"ui.cartography_table.take_result":{"id":686},"ui.stonecutter.take_result":{"id":687},"ui.stonecutter.select_recipe":{"id":688},"ui.toast.challenge_complete":{"id":689},"ui.toast.in":{"id":690},"ui.toast.out":{"id":691},"entity.vex.ambient":{"id":692},"entity.vex.charge":{"id":693},"entity.vex.death":{"id":694},"entity.vex.hurt":{"id":695},"entity.villager.ambient":{"id":696},"entity.villager.celebrate":{"id":697},"entity.villager.death":{"id":698},"entity.villager.hurt":{"id":699},"entity.villager.no":{"id":700},"entity.villager.trade":{"id":701},"entity.villager.yes":{"id":702},"entity.villager.work_armorer":{"id":703},"entity.villager.work_butcher":{"id":704},"entity.villager.work_cartographer":{"id":705},"entity.villager.work_cleric":{"id":706},"entity.villager.work_farmer":{"id":707},"entity.villager.work_fisherman":{"id":708},"entity.villager.work_fletcher":{"id":709},"entity.villager.work_leatherworker":{"id":710},"entity.villager.work_librarian":{"id":711},"entity.villager.work_mason":{"id":712},"entity.villager.work_shepherd":{"id":713},"entity.villager.work_toolsmith":{"id":714},"entity.villager.work_weaponsmith":{"id":715},"entity.vindicator.ambient":{"id":716},"entity.vindicator.celebrate":{"id":717},"entity.vindicator.death":{"id":718},"entity.vindicator.hurt":{"id":719},"block.lily_pad.place":{"id":720},"entity.wandering_trader.ambient":{"id":721},"entity.wandering_trader.death":{"id":722},"entity.wandering_trader.disappeared":{"id":723},"entity.wandering_trader.drink_milk":{"id":724},"entity.wandering_trader.drink_potion":{"id":725},"entity.wandering_trader.hurt":{"id":726},"entity.wandering_trader.no":{"id":727},"entity.wandering_trader.reappeared":{"id":728},"entity.wandering_trader.trade":{"id":729},"entity.wandering_trader.yes":{"id":730},"block.water.ambient":{"id":731},"weather.rain":{"id":732},"weather.rain.above":{"id":733},"entity.witch.ambient":{"id":734},"entity.witch.celebrate":{"id":735},"entity.witch.death":{"id":736},"entity.witch.drink":{"id":737},"entity.witch.hurt":{"id":738},"entity.witch.throw":{"id":739},"entity.wither.ambient":{"id":740},"entity.wither.break_block":{"id":741},"entity.wither.death":{"id":742},"entity.wither.hurt":{"id":743},"entity.wither.shoot":{"id":744},"entity.wither_skeleton.ambient":{"id":745},"entity.wither_skeleton.death":{"id":746},"entity.wither_skeleton.hurt":{"id":747},"entity.wither_skeleton.step":{"id":748},"entity.wither.spawn":{"id":749},"entity.wolf.ambient":{"id":750},"entity.wolf.death":{"id":751},"entity.wolf.growl":{"id":752},"entity.wolf.howl":{"id":753},"entity.wolf.hurt":{"id":754},"entity.wolf.pant":{"id":755},"entity.wolf.shake":{"id":756},"entity.wolf.step":{"id":757},"entity.wolf.whine":{"id":758},"block.wooden_door.close":{"id":759},"block.wooden_door.open":{"id":760},"block.wooden_trapdoor.close":{"id":761},"block.wooden_trapdoor.open":{"id":762},"block.wood.break":{"id":763},"block.wooden_button.click_off":{"id":764},"block.wooden_button.click_on":{"id":765},"block.wood.fall":{"id":766},"block.wood.hit":{"id":767},"block.wood.place":{"id":768},"block.wooden_pressure_plate.click_off":{"id":769},"block.wooden_pressure_plate.click_on":{"id":770},"block.wood.step":{"id":771},"entity.zombie.ambient":{"id":772},"entity.zombie.attack_wooden_door":{"id":773},"entity.zombie.attack_iron_door":{"id":774},"entity.zombie.break_wooden_door":{"id":775},"entity.zombie.converted_to_drowned":{"id":776},"entity.zombie.death":{"id":777},"entity.zombie.destroy_egg":{"id":778},"entity.zombie_horse.ambient":{"id":779},"entity.zombie_horse.death":{"id":780},"entity.zombie_horse.hurt":{"id":781},"entity.zombie.hurt":{"id":782},"entity.zombie.infect":{"id":783},"entity.zombie_pigman.ambient":{"id":784},"entity.zombie_pigman.angry":{"id":785},"entity.zombie_pigman.death":{"id":786},"entity.zombie_pigman.hurt":{"id":787},"entity.zombie.step":{"id":788},"entity.zombie_villager.ambient":{"id":789},"entity.zombie_villager.converted":{"id":790},"entity.zombie_villager.cure":{"id":791},"entity.zombie_villager.death":{"id":792},"entity.zombie_villager.hurt":{"id":793},"entity.zombie_villager.step":{"id":794}}},"fluid":{"default":"empty","id":1,"entries":{"empty":{"id":0},"flowing_water":{"id":1},"water":{"id":2},"flowing_lava":{"id":3},"lava":{"id":4}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611},"conduit":{"id":612},"bamboo_sapling":{"id":613},"bamboo":{"id":614},"potted_bamboo":{"id":615},"void_air":{"id":616},"cave_air":{"id":617},"bubble_column":{"id":618},"polished_granite_stairs":{"id":619},"smooth_red_sandstone_stairs":{"id":620},"mossy_stone_brick_stairs":{"id":621},"polished_diorite_stairs":{"id":622},"mossy_cobblestone_stairs":{"id":623},"end_stone_brick_stairs":{"id":624},"stone_stairs":{"id":625},"smooth_sandstone_stairs":{"id":626},"smooth_quartz_stairs":{"id":627},"granite_stairs":{"id":628},"andesite_stairs":{"id":629},"red_nether_brick_stairs":{"id":630},"polished_andesite_stairs":{"id":631},"diorite_stairs":{"id":632},"polished_granite_slab":{"id":633},"smooth_red_sandstone_slab":{"id":634},"mossy_stone_brick_slab":{"id":635},"polished_diorite_slab":{"id":636},"mossy_cobblestone_slab":{"id":637},"end_stone_brick_slab":{"id":638},"smooth_sandstone_slab":{"id":639},"smooth_quartz_slab":{"id":640},"granite_slab":{"id":641},"andesite_slab":{"id":642},"red_nether_brick_slab":{"id":643},"polished_andesite_slab":{"id":644},"diorite_slab":{"id":645},"brick_wall":{"id":646},"prismarine_wall":{"id":647},"red_sandstone_wall":{"id":648},"mossy_stone_brick_wall":{"id":649},"granite_wall":{"id":650},"stone_brick_wall":{"id":651},"nether_brick_wall":{"id":652},"andesite_wall":{"id":653},"red_nether_brick_wall":{"id":654},"sandstone_wall":{"id":655},"end_stone_brick_wall":{"id":656},"diorite_wall":{"id":657},"scaffolding":{"id":658},"loom":{"id":659},"barrel":{"id":660},"smoker":{"id":661},"blast_furnace":{"id":662},"cartography_table":{"id":663},"fletching_table":{"id":664},"grindstone":{"id":665},"lectern":{"id":666},"smithing_table":{"id":667},"stonecutter":{"id":668},"bell":{"id":669},"lantern":{"id":670},"campfire":{"id":671},"sweet_berry_bush":{"id":672},"structure_block":{"id":673},"jigsaw":{"id":674},"composter":{"id":675}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"entity_type":{"default":"pig","id":5,"entries":{"area_effect_cloud":{"id":0},"armor_stand":{"id":1},"arrow":{"id":2},"bat":{"id":3},"blaze":{"id":4},"boat":{"id":5},"cat":{"id":6},"cave_spider":{"id":7},"chicken":{"id":8},"cod":{"id":9},"cow":{"id":10},"creeper":{"id":11},"donkey":{"id":12},"dolphin":{"id":13},"dragon_fireball":{"id":14},"drowned":{"id":15},"elder_guardian":{"id":16},"end_crystal":{"id":17},"ender_dragon":{"id":18},"enderman":{"id":19},"endermite":{"id":20},"evoker_fangs":{"id":21},"evoker":{"id":22},"experience_orb":{"id":23},"eye_of_ender":{"id":24},"falling_block":{"id":25},"firework_rocket":{"id":26},"fox":{"id":27},"ghast":{"id":28},"giant":{"id":29},"guardian":{"id":30},"horse":{"id":31},"husk":{"id":32},"illusioner":{"id":33},"item":{"id":34},"item_frame":{"id":35},"fireball":{"id":36},"leash_knot":{"id":37},"llama":{"id":38},"llama_spit":{"id":39},"magma_cube":{"id":40},"minecart":{"id":41},"chest_minecart":{"id":42},"command_block_minecart":{"id":43},"furnace_minecart":{"id":44},"hopper_minecart":{"id":45},"spawner_minecart":{"id":46},"tnt_minecart":{"id":47},"mule":{"id":48},"mooshroom":{"id":49},"ocelot":{"id":50},"painting":{"id":51},"panda":{"id":52},"parrot":{"id":53},"pig":{"id":54},"pufferfish":{"id":55},"zombie_pigman":{"id":56},"polar_bear":{"id":57},"tnt":{"id":58},"rabbit":{"id":59},"salmon":{"id":60},"sheep":{"id":61},"shulker":{"id":62},"shulker_bullet":{"id":63},"silverfish":{"id":64},"skeleton":{"id":65},"skeleton_horse":{"id":66},"slime":{"id":67},"small_fireball":{"id":68},"snow_golem":{"id":69},"snowball":{"id":70},"spectral_arrow":{"id":71},"spider":{"id":72},"squid":{"id":73},"stray":{"id":74},"trader_llama":{"id":75},"tropical_fish":{"id":76},"turtle":{"id":77},"egg":{"id":78},"ender_pearl":{"id":79},"experience_bottle":{"id":80},"potion":{"id":81},"trident":{"id":82},"vex":{"id":83},"villager":{"id":84},"iron_golem":{"id":85},"vindicator":{"id":86},"pillager":{"id":87},"wandering_trader":{"id":88},"witch":{"id":89},"wither":{"id":90},"wither_skeleton":{"id":91},"wither_skull":{"id":92},"wolf":{"id":93},"zombie":{"id":94},"zombie_horse":{"id":95},"zombie_villager":{"id":96},"phantom":{"id":97},"ravager":{"id":98},"lightning_bolt":{"id":99},"player":{"id":100},"fishing_bobber":{"id":101}}},"item":{"default":"air","id":6,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"cornflower":{"id":108},"lily_of_the_valley":{"id":109},"wither_rose":{"id":110},"brown_mushroom":{"id":111},"red_mushroom":{"id":112},"gold_block":{"id":113},"iron_block":{"id":114},"oak_slab":{"id":115},"spruce_slab":{"id":116},"birch_slab":{"id":117},"jungle_slab":{"id":118},"acacia_slab":{"id":119},"dark_oak_slab":{"id":120},"stone_slab":{"id":121},"smooth_stone_slab":{"id":122},"sandstone_slab":{"id":123},"cut_sandstone_slab":{"id":124},"petrified_oak_slab":{"id":125},"cobblestone_slab":{"id":126},"brick_slab":{"id":127},"stone_brick_slab":{"id":128},"nether_brick_slab":{"id":129},"quartz_slab":{"id":130},"red_sandstone_slab":{"id":131},"cut_red_sandstone_slab":{"id":132},"purpur_slab":{"id":133},"prismarine_slab":{"id":134},"prismarine_brick_slab":{"id":135},"dark_prismarine_slab":{"id":136},"smooth_quartz":{"id":137},"smooth_red_sandstone":{"id":138},"smooth_sandstone":{"id":139},"smooth_stone":{"id":140},"bricks":{"id":141},"tnt":{"id":142},"bookshelf":{"id":143},"mossy_cobblestone":{"id":144},"obsidian":{"id":145},"torch":{"id":146},"end_rod":{"id":147},"chorus_plant":{"id":148},"chorus_flower":{"id":149},"purpur_block":{"id":150},"purpur_pillar":{"id":151},"purpur_stairs":{"id":152},"spawner":{"id":153},"oak_stairs":{"id":154},"chest":{"id":155},"diamond_ore":{"id":156},"diamond_block":{"id":157},"crafting_table":{"id":158},"farmland":{"id":159},"furnace":{"id":160},"ladder":{"id":161},"rail":{"id":162},"cobblestone_stairs":{"id":163},"lever":{"id":164},"stone_pressure_plate":{"id":165},"oak_pressure_plate":{"id":166},"spruce_pressure_plate":{"id":167},"birch_pressure_plate":{"id":168},"jungle_pressure_plate":{"id":169},"acacia_pressure_plate":{"id":170},"dark_oak_pressure_plate":{"id":171},"redstone_ore":{"id":172},"redstone_torch":{"id":173},"stone_button":{"id":174},"snow":{"id":175},"ice":{"id":176},"snow_block":{"id":177},"cactus":{"id":178},"clay":{"id":179},"jukebox":{"id":180},"oak_fence":{"id":181},"spruce_fence":{"id":182},"birch_fence":{"id":183},"jungle_fence":{"id":184},"acacia_fence":{"id":185},"dark_oak_fence":{"id":186},"pumpkin":{"id":187},"carved_pumpkin":{"id":188},"netherrack":{"id":189},"soul_sand":{"id":190},"glowstone":{"id":191},"jack_o_lantern":{"id":192},"oak_trapdoor":{"id":193},"spruce_trapdoor":{"id":194},"birch_trapdoor":{"id":195},"jungle_trapdoor":{"id":196},"acacia_trapdoor":{"id":197},"dark_oak_trapdoor":{"id":198},"infested_stone":{"id":199},"infested_cobblestone":{"id":200},"infested_stone_bricks":{"id":201},"infested_mossy_stone_bricks":{"id":202},"infested_cracked_stone_bricks":{"id":203},"infested_chiseled_stone_bricks":{"id":204},"stone_bricks":{"id":205},"mossy_stone_bricks":{"id":206},"cracked_stone_bricks":{"id":207},"chiseled_stone_bricks":{"id":208},"brown_mushroom_block":{"id":209},"red_mushroom_block":{"id":210},"mushroom_stem":{"id":211},"iron_bars":{"id":212},"glass_pane":{"id":213},"melon":{"id":214},"vine":{"id":215},"oak_fence_gate":{"id":216},"spruce_fence_gate":{"id":217},"birch_fence_gate":{"id":218},"jungle_fence_gate":{"id":219},"acacia_fence_gate":{"id":220},"dark_oak_fence_gate":{"id":221},"brick_stairs":{"id":222},"stone_brick_stairs":{"id":223},"mycelium":{"id":224},"lily_pad":{"id":225},"nether_bricks":{"id":226},"nether_brick_fence":{"id":227},"nether_brick_stairs":{"id":228},"enchanting_table":{"id":229},"end_portal_frame":{"id":230},"end_stone":{"id":231},"end_stone_bricks":{"id":232},"dragon_egg":{"id":233},"redstone_lamp":{"id":234},"sandstone_stairs":{"id":235},"emerald_ore":{"id":236},"ender_chest":{"id":237},"tripwire_hook":{"id":238},"emerald_block":{"id":239},"spruce_stairs":{"id":240},"birch_stairs":{"id":241},"jungle_stairs":{"id":242},"command_block":{"id":243},"beacon":{"id":244},"cobblestone_wall":{"id":245},"mossy_cobblestone_wall":{"id":246},"brick_wall":{"id":247},"prismarine_wall":{"id":248},"red_sandstone_wall":{"id":249},"mossy_stone_brick_wall":{"id":250},"granite_wall":{"id":251},"stone_brick_wall":{"id":252},"nether_brick_wall":{"id":253},"andesite_wall":{"id":254},"red_nether_brick_wall":{"id":255},"sandstone_wall":{"id":256},"end_stone_brick_wall":{"id":257},"diorite_wall":{"id":258},"oak_button":{"id":259},"spruce_button":{"id":260},"birch_button":{"id":261},"jungle_button":{"id":262},"acacia_button":{"id":263},"dark_oak_button":{"id":264},"anvil":{"id":265},"chipped_anvil":{"id":266},"damaged_anvil":{"id":267},"trapped_chest":{"id":268},"light_weighted_pressure_plate":{"id":269},"heavy_weighted_pressure_plate":{"id":270},"daylight_detector":{"id":271},"redstone_block":{"id":272},"nether_quartz_ore":{"id":273},"hopper":{"id":274},"chiseled_quartz_block":{"id":275},"quartz_block":{"id":276},"quartz_pillar":{"id":277},"quartz_stairs":{"id":278},"activator_rail":{"id":279},"dropper":{"id":280},"white_terracotta":{"id":281},"orange_terracotta":{"id":282},"magenta_terracotta":{"id":283},"light_blue_terracotta":{"id":284},"yellow_terracotta":{"id":285},"lime_terracotta":{"id":286},"pink_terracotta":{"id":287},"gray_terracotta":{"id":288},"light_gray_terracotta":{"id":289},"cyan_terracotta":{"id":290},"purple_terracotta":{"id":291},"blue_terracotta":{"id":292},"brown_terracotta":{"id":293},"green_terracotta":{"id":294},"red_terracotta":{"id":295},"black_terracotta":{"id":296},"barrier":{"id":297},"iron_trapdoor":{"id":298},"hay_block":{"id":299},"white_carpet":{"id":300},"orange_carpet":{"id":301},"magenta_carpet":{"id":302},"light_blue_carpet":{"id":303},"yellow_carpet":{"id":304},"lime_carpet":{"id":305},"pink_carpet":{"id":306},"gray_carpet":{"id":307},"light_gray_carpet":{"id":308},"cyan_carpet":{"id":309},"purple_carpet":{"id":310},"blue_carpet":{"id":311},"brown_carpet":{"id":312},"green_carpet":{"id":313},"red_carpet":{"id":314},"black_carpet":{"id":315},"terracotta":{"id":316},"coal_block":{"id":317},"packed_ice":{"id":318},"acacia_stairs":{"id":319},"dark_oak_stairs":{"id":320},"slime_block":{"id":321},"grass_path":{"id":322},"sunflower":{"id":323},"lilac":{"id":324},"rose_bush":{"id":325},"peony":{"id":326},"tall_grass":{"id":327},"large_fern":{"id":328},"white_stained_glass":{"id":329},"orange_stained_glass":{"id":330},"magenta_stained_glass":{"id":331},"light_blue_stained_glass":{"id":332},"yellow_stained_glass":{"id":333},"lime_stained_glass":{"id":334},"pink_stained_glass":{"id":335},"gray_stained_glass":{"id":336},"light_gray_stained_glass":{"id":337},"cyan_stained_glass":{"id":338},"purple_stained_glass":{"id":339},"blue_stained_glass":{"id":340},"brown_stained_glass":{"id":341},"green_stained_glass":{"id":342},"red_stained_glass":{"id":343},"black_stained_glass":{"id":344},"white_stained_glass_pane":{"id":345},"orange_stained_glass_pane":{"id":346},"magenta_stained_glass_pane":{"id":347},"light_blue_stained_glass_pane":{"id":348},"yellow_stained_glass_pane":{"id":349},"lime_stained_glass_pane":{"id":350},"pink_stained_glass_pane":{"id":351},"gray_stained_glass_pane":{"id":352},"light_gray_stained_glass_pane":{"id":353},"cyan_stained_glass_pane":{"id":354},"purple_stained_glass_pane":{"id":355},"blue_stained_glass_pane":{"id":356},"brown_stained_glass_pane":{"id":357},"green_stained_glass_pane":{"id":358},"red_stained_glass_pane":{"id":359},"black_stained_glass_pane":{"id":360},"prismarine":{"id":361},"prismarine_bricks":{"id":362},"dark_prismarine":{"id":363},"prismarine_stairs":{"id":364},"prismarine_brick_stairs":{"id":365},"dark_prismarine_stairs":{"id":366},"sea_lantern":{"id":367},"red_sandstone":{"id":368},"chiseled_red_sandstone":{"id":369},"cut_red_sandstone":{"id":370},"red_sandstone_stairs":{"id":371},"repeating_command_block":{"id":372},"chain_command_block":{"id":373},"magma_block":{"id":374},"nether_wart_block":{"id":375},"red_nether_bricks":{"id":376},"bone_block":{"id":377},"structure_void":{"id":378},"observer":{"id":379},"shulker_box":{"id":380},"white_shulker_box":{"id":381},"orange_shulker_box":{"id":382},"magenta_shulker_box":{"id":383},"light_blue_shulker_box":{"id":384},"yellow_shulker_box":{"id":385},"lime_shulker_box":{"id":386},"pink_shulker_box":{"id":387},"gray_shulker_box":{"id":388},"light_gray_shulker_box":{"id":389},"cyan_shulker_box":{"id":390},"purple_shulker_box":{"id":391},"blue_shulker_box":{"id":392},"brown_shulker_box":{"id":393},"green_shulker_box":{"id":394},"red_shulker_box":{"id":395},"black_shulker_box":{"id":396},"white_glazed_terracotta":{"id":397},"orange_glazed_terracotta":{"id":398},"magenta_glazed_terracotta":{"id":399},"light_blue_glazed_terracotta":{"id":400},"yellow_glazed_terracotta":{"id":401},"lime_glazed_terracotta":{"id":402},"pink_glazed_terracotta":{"id":403},"gray_glazed_terracotta":{"id":404},"light_gray_glazed_terracotta":{"id":405},"cyan_glazed_terracotta":{"id":406},"purple_glazed_terracotta":{"id":407},"blue_glazed_terracotta":{"id":408},"brown_glazed_terracotta":{"id":409},"green_glazed_terracotta":{"id":410},"red_glazed_terracotta":{"id":411},"black_glazed_terracotta":{"id":412},"white_concrete":{"id":413},"orange_concrete":{"id":414},"magenta_concrete":{"id":415},"light_blue_concrete":{"id":416},"yellow_concrete":{"id":417},"lime_concrete":{"id":418},"pink_concrete":{"id":419},"gray_concrete":{"id":420},"light_gray_concrete":{"id":421},"cyan_concrete":{"id":422},"purple_concrete":{"id":423},"blue_concrete":{"id":424},"brown_concrete":{"id":425},"green_concrete":{"id":426},"red_concrete":{"id":427},"black_concrete":{"id":428},"white_concrete_powder":{"id":429},"orange_concrete_powder":{"id":430},"magenta_concrete_powder":{"id":431},"light_blue_concrete_powder":{"id":432},"yellow_concrete_powder":{"id":433},"lime_concrete_powder":{"id":434},"pink_concrete_powder":{"id":435},"gray_concrete_powder":{"id":436},"light_gray_concrete_powder":{"id":437},"cyan_concrete_powder":{"id":438},"purple_concrete_powder":{"id":439},"blue_concrete_powder":{"id":440},"brown_concrete_powder":{"id":441},"green_concrete_powder":{"id":442},"red_concrete_powder":{"id":443},"black_concrete_powder":{"id":444},"turtle_egg":{"id":445},"dead_tube_coral_block":{"id":446},"dead_brain_coral_block":{"id":447},"dead_bubble_coral_block":{"id":448},"dead_fire_coral_block":{"id":449},"dead_horn_coral_block":{"id":450},"tube_coral_block":{"id":451},"brain_coral_block":{"id":452},"bubble_coral_block":{"id":453},"fire_coral_block":{"id":454},"horn_coral_block":{"id":455},"tube_coral":{"id":456},"brain_coral":{"id":457},"bubble_coral":{"id":458},"fire_coral":{"id":459},"horn_coral":{"id":460},"dead_brain_coral":{"id":461},"dead_bubble_coral":{"id":462},"dead_fire_coral":{"id":463},"dead_horn_coral":{"id":464},"dead_tube_coral":{"id":465},"tube_coral_fan":{"id":466},"brain_coral_fan":{"id":467},"bubble_coral_fan":{"id":468},"fire_coral_fan":{"id":469},"horn_coral_fan":{"id":470},"dead_tube_coral_fan":{"id":471},"dead_brain_coral_fan":{"id":472},"dead_bubble_coral_fan":{"id":473},"dead_fire_coral_fan":{"id":474},"dead_horn_coral_fan":{"id":475},"blue_ice":{"id":476},"conduit":{"id":477},"polished_granite_stairs":{"id":478},"smooth_red_sandstone_stairs":{"id":479},"mossy_stone_brick_stairs":{"id":480},"polished_diorite_stairs":{"id":481},"mossy_cobblestone_stairs":{"id":482},"end_stone_brick_stairs":{"id":483},"stone_stairs":{"id":484},"smooth_sandstone_stairs":{"id":485},"smooth_quartz_stairs":{"id":486},"granite_stairs":{"id":487},"andesite_stairs":{"id":488},"red_nether_brick_stairs":{"id":489},"polished_andesite_stairs":{"id":490},"diorite_stairs":{"id":491},"polished_granite_slab":{"id":492},"smooth_red_sandstone_slab":{"id":493},"mossy_stone_brick_slab":{"id":494},"polished_diorite_slab":{"id":495},"mossy_cobblestone_slab":{"id":496},"end_stone_brick_slab":{"id":497},"smooth_sandstone_slab":{"id":498},"smooth_quartz_slab":{"id":499},"granite_slab":{"id":500},"andesite_slab":{"id":501},"red_nether_brick_slab":{"id":502},"polished_andesite_slab":{"id":503},"diorite_slab":{"id":504},"scaffolding":{"id":505},"iron_door":{"id":506},"oak_door":{"id":507},"spruce_door":{"id":508},"birch_door":{"id":509},"jungle_door":{"id":510},"acacia_door":{"id":511},"dark_oak_door":{"id":512},"repeater":{"id":513},"comparator":{"id":514},"structure_block":{"id":515},"jigsaw":{"id":516},"composter":{"id":517},"turtle_helmet":{"id":518},"scute":{"id":519},"iron_shovel":{"id":520},"iron_pickaxe":{"id":521},"iron_axe":{"id":522},"flint_and_steel":{"id":523},"apple":{"id":524},"bow":{"id":525},"arrow":{"id":526},"coal":{"id":527},"charcoal":{"id":528},"diamond":{"id":529},"iron_ingot":{"id":530},"gold_ingot":{"id":531},"iron_sword":{"id":532},"wooden_sword":{"id":533},"wooden_shovel":{"id":534},"wooden_pickaxe":{"id":535},"wooden_axe":{"id":536},"stone_sword":{"id":537},"stone_shovel":{"id":538},"stone_pickaxe":{"id":539},"stone_axe":{"id":540},"diamond_sword":{"id":541},"diamond_shovel":{"id":542},"diamond_pickaxe":{"id":543},"diamond_axe":{"id":544},"stick":{"id":545},"bowl":{"id":546},"mushroom_stew":{"id":547},"golden_sword":{"id":548},"golden_shovel":{"id":549},"golden_pickaxe":{"id":550},"golden_axe":{"id":551},"string":{"id":552},"feather":{"id":553},"gunpowder":{"id":554},"wooden_hoe":{"id":555},"stone_hoe":{"id":556},"iron_hoe":{"id":557},"diamond_hoe":{"id":558},"golden_hoe":{"id":559},"wheat_seeds":{"id":560},"wheat":{"id":561},"bread":{"id":562},"leather_helmet":{"id":563},"leather_chestplate":{"id":564},"leather_leggings":{"id":565},"leather_boots":{"id":566},"chainmail_helmet":{"id":567},"chainmail_chestplate":{"id":568},"chainmail_leggings":{"id":569},"chainmail_boots":{"id":570},"iron_helmet":{"id":571},"iron_chestplate":{"id":572},"iron_leggings":{"id":573},"iron_boots":{"id":574},"diamond_helmet":{"id":575},"diamond_chestplate":{"id":576},"diamond_leggings":{"id":577},"diamond_boots":{"id":578},"golden_helmet":{"id":579},"golden_chestplate":{"id":580},"golden_leggings":{"id":581},"golden_boots":{"id":582},"flint":{"id":583},"porkchop":{"id":584},"cooked_porkchop":{"id":585},"painting":{"id":586},"golden_apple":{"id":587},"enchanted_golden_apple":{"id":588},"oak_sign":{"id":589},"spruce_sign":{"id":590},"birch_sign":{"id":591},"jungle_sign":{"id":592},"acacia_sign":{"id":593},"dark_oak_sign":{"id":594},"bucket":{"id":595},"water_bucket":{"id":596},"lava_bucket":{"id":597},"minecart":{"id":598},"saddle":{"id":599},"redstone":{"id":600},"snowball":{"id":601},"oak_boat":{"id":602},"leather":{"id":603},"milk_bucket":{"id":604},"pufferfish_bucket":{"id":605},"salmon_bucket":{"id":606},"cod_bucket":{"id":607},"tropical_fish_bucket":{"id":608},"brick":{"id":609},"clay_ball":{"id":610},"sugar_cane":{"id":611},"kelp":{"id":612},"dried_kelp_block":{"id":613},"bamboo":{"id":614},"paper":{"id":615},"book":{"id":616},"slime_ball":{"id":617},"chest_minecart":{"id":618},"furnace_minecart":{"id":619},"egg":{"id":620},"compass":{"id":621},"fishing_rod":{"id":622},"clock":{"id":623},"glowstone_dust":{"id":624},"cod":{"id":625},"salmon":{"id":626},"tropical_fish":{"id":627},"pufferfish":{"id":628},"cooked_cod":{"id":629},"cooked_salmon":{"id":630},"ink_sac":{"id":631},"red_dye":{"id":632},"green_dye":{"id":633},"cocoa_beans":{"id":634},"lapis_lazuli":{"id":635},"purple_dye":{"id":636},"cyan_dye":{"id":637},"light_gray_dye":{"id":638},"gray_dye":{"id":639},"pink_dye":{"id":640},"lime_dye":{"id":641},"yellow_dye":{"id":642},"light_blue_dye":{"id":643},"magenta_dye":{"id":644},"orange_dye":{"id":645},"bone_meal":{"id":646},"blue_dye":{"id":647},"brown_dye":{"id":648},"black_dye":{"id":649},"white_dye":{"id":650},"bone":{"id":651},"sugar":{"id":652},"cake":{"id":653},"white_bed":{"id":654},"orange_bed":{"id":655},"magenta_bed":{"id":656},"light_blue_bed":{"id":657},"yellow_bed":{"id":658},"lime_bed":{"id":659},"pink_bed":{"id":660},"gray_bed":{"id":661},"light_gray_bed":{"id":662},"cyan_bed":{"id":663},"purple_bed":{"id":664},"blue_bed":{"id":665},"brown_bed":{"id":666},"green_bed":{"id":667},"red_bed":{"id":668},"black_bed":{"id":669},"cookie":{"id":670},"filled_map":{"id":671},"shears":{"id":672},"melon_slice":{"id":673},"dried_kelp":{"id":674},"pumpkin_seeds":{"id":675},"melon_seeds":{"id":676},"beef":{"id":677},"cooked_beef":{"id":678},"chicken":{"id":679},"cooked_chicken":{"id":680},"rotten_flesh":{"id":681},"ender_pearl":{"id":682},"blaze_rod":{"id":683},"ghast_tear":{"id":684},"gold_nugget":{"id":685},"nether_wart":{"id":686},"potion":{"id":687},"glass_bottle":{"id":688},"spider_eye":{"id":689},"fermented_spider_eye":{"id":690},"blaze_powder":{"id":691},"magma_cream":{"id":692},"brewing_stand":{"id":693},"cauldron":{"id":694},"ender_eye":{"id":695},"glistering_melon_slice":{"id":696},"bat_spawn_egg":{"id":697},"blaze_spawn_egg":{"id":698},"cat_spawn_egg":{"id":699},"cave_spider_spawn_egg":{"id":700},"chicken_spawn_egg":{"id":701},"cod_spawn_egg":{"id":702},"cow_spawn_egg":{"id":703},"creeper_spawn_egg":{"id":704},"dolphin_spawn_egg":{"id":705},"donkey_spawn_egg":{"id":706},"drowned_spawn_egg":{"id":707},"elder_guardian_spawn_egg":{"id":708},"enderman_spawn_egg":{"id":709},"endermite_spawn_egg":{"id":710},"evoker_spawn_egg":{"id":711},"fox_spawn_egg":{"id":712},"ghast_spawn_egg":{"id":713},"guardian_spawn_egg":{"id":714},"horse_spawn_egg":{"id":715},"husk_spawn_egg":{"id":716},"llama_spawn_egg":{"id":717},"magma_cube_spawn_egg":{"id":718},"mooshroom_spawn_egg":{"id":719},"mule_spawn_egg":{"id":720},"ocelot_spawn_egg":{"id":721},"panda_spawn_egg":{"id":722},"parrot_spawn_egg":{"id":723},"phantom_spawn_egg":{"id":724},"pig_spawn_egg":{"id":725},"pillager_spawn_egg":{"id":726},"polar_bear_spawn_egg":{"id":727},"pufferfish_spawn_egg":{"id":728},"rabbit_spawn_egg":{"id":729},"ravager_spawn_egg":{"id":730},"salmon_spawn_egg":{"id":731},"sheep_spawn_egg":{"id":732},"shulker_spawn_egg":{"id":733},"silverfish_spawn_egg":{"id":734},"skeleton_spawn_egg":{"id":735},"skeleton_horse_spawn_egg":{"id":736},"slime_spawn_egg":{"id":737},"spider_spawn_egg":{"id":738},"squid_spawn_egg":{"id":739},"stray_spawn_egg":{"id":740},"trader_llama_spawn_egg":{"id":741},"tropical_fish_spawn_egg":{"id":742},"turtle_spawn_egg":{"id":743},"vex_spawn_egg":{"id":744},"villager_spawn_egg":{"id":745},"vindicator_spawn_egg":{"id":746},"wandering_trader_spawn_egg":{"id":747},"witch_spawn_egg":{"id":748},"wither_skeleton_spawn_egg":{"id":749},"wolf_spawn_egg":{"id":750},"zombie_spawn_egg":{"id":751},"zombie_horse_spawn_egg":{"id":752},"zombie_pigman_spawn_egg":{"id":753},"zombie_villager_spawn_egg":{"id":754},"experience_bottle":{"id":755},"fire_charge":{"id":756},"writable_book":{"id":757},"written_book":{"id":758},"emerald":{"id":759},"item_frame":{"id":760},"flower_pot":{"id":761},"carrot":{"id":762},"potato":{"id":763},"baked_potato":{"id":764},"poisonous_potato":{"id":765},"map":{"id":766},"golden_carrot":{"id":767},"skeleton_skull":{"id":768},"wither_skeleton_skull":{"id":769},"player_head":{"id":770},"zombie_head":{"id":771},"creeper_head":{"id":772},"dragon_head":{"id":773},"carrot_on_a_stick":{"id":774},"nether_star":{"id":775},"pumpkin_pie":{"id":776},"firework_rocket":{"id":777},"firework_star":{"id":778},"enchanted_book":{"id":779},"nether_brick":{"id":780},"quartz":{"id":781},"tnt_minecart":{"id":782},"hopper_minecart":{"id":783},"prismarine_shard":{"id":784},"prismarine_crystals":{"id":785},"rabbit":{"id":786},"cooked_rabbit":{"id":787},"rabbit_stew":{"id":788},"rabbit_foot":{"id":789},"rabbit_hide":{"id":790},"armor_stand":{"id":791},"iron_horse_armor":{"id":792},"golden_horse_armor":{"id":793},"diamond_horse_armor":{"id":794},"leather_horse_armor":{"id":795},"lead":{"id":796},"name_tag":{"id":797},"command_block_minecart":{"id":798},"mutton":{"id":799},"cooked_mutton":{"id":800},"white_banner":{"id":801},"orange_banner":{"id":802},"magenta_banner":{"id":803},"light_blue_banner":{"id":804},"yellow_banner":{"id":805},"lime_banner":{"id":806},"pink_banner":{"id":807},"gray_banner":{"id":808},"light_gray_banner":{"id":809},"cyan_banner":{"id":810},"purple_banner":{"id":811},"blue_banner":{"id":812},"brown_banner":{"id":813},"green_banner":{"id":814},"red_banner":{"id":815},"black_banner":{"id":816},"end_crystal":{"id":817},"chorus_fruit":{"id":818},"popped_chorus_fruit":{"id":819},"beetroot":{"id":820},"beetroot_seeds":{"id":821},"beetroot_soup":{"id":822},"dragon_breath":{"id":823},"splash_potion":{"id":824},"spectral_arrow":{"id":825},"tipped_arrow":{"id":826},"lingering_potion":{"id":827},"shield":{"id":828},"elytra":{"id":829},"spruce_boat":{"id":830},"birch_boat":{"id":831},"jungle_boat":{"id":832},"acacia_boat":{"id":833},"dark_oak_boat":{"id":834},"totem_of_undying":{"id":835},"shulker_shell":{"id":836},"iron_nugget":{"id":837},"knowledge_book":{"id":838},"debug_stick":{"id":839},"music_disc_13":{"id":840},"music_disc_cat":{"id":841},"music_disc_blocks":{"id":842},"music_disc_chirp":{"id":843},"music_disc_far":{"id":844},"music_disc_mall":{"id":845},"music_disc_mellohi":{"id":846},"music_disc_stal":{"id":847},"music_disc_strad":{"id":848},"music_disc_ward":{"id":849},"music_disc_11":{"id":850},"music_disc_wait":{"id":851},"trident":{"id":852},"phantom_membrane":{"id":853},"nautilus_shell":{"id":854},"heart_of_the_sea":{"id":855},"crossbow":{"id":856},"suspicious_stew":{"id":857},"loom":{"id":858},"flower_banner_pattern":{"id":859},"creeper_banner_pattern":{"id":860},"skull_banner_pattern":{"id":861},"mojang_banner_pattern":{"id":862},"globe_banner_pattern":{"id":863},"barrel":{"id":864},"smoker":{"id":865},"blast_furnace":{"id":866},"cartography_table":{"id":867},"fletching_table":{"id":868},"grindstone":{"id":869},"lectern":{"id":870},"smithing_table":{"id":871},"stonecutter":{"id":872},"bell":{"id":873},"lantern":{"id":874},"sweet_berries":{"id":875},"campfire":{"id":876}}},"potion":{"default":"empty","id":7,"entries":{"empty":{"id":0},"water":{"id":1},"mundane":{"id":2},"thick":{"id":3},"awkward":{"id":4},"night_vision":{"id":5},"long_night_vision":{"id":6},"invisibility":{"id":7},"long_invisibility":{"id":8},"leaping":{"id":9},"long_leaping":{"id":10},"strong_leaping":{"id":11},"fire_resistance":{"id":12},"long_fire_resistance":{"id":13},"swiftness":{"id":14},"long_swiftness":{"id":15},"strong_swiftness":{"id":16},"slowness":{"id":17},"long_slowness":{"id":18},"strong_slowness":{"id":19},"turtle_master":{"id":20},"long_turtle_master":{"id":21},"strong_turtle_master":{"id":22},"water_breathing":{"id":23},"long_water_breathing":{"id":24},"healing":{"id":25},"strong_healing":{"id":26},"harming":{"id":27},"strong_harming":{"id":28},"poison":{"id":29},"long_poison":{"id":30},"strong_poison":{"id":31},"regeneration":{"id":32},"long_regeneration":{"id":33},"strong_regeneration":{"id":34},"strength":{"id":35},"long_strength":{"id":36},"strong_strength":{"id":37},"weakness":{"id":38},"long_weakness":{"id":39},"luck":{"id":40},"slow_falling":{"id":41},"long_slow_falling":{"id":42}}},"carver":{"id":8,"entries":{"cave":{"id":0},"hell_cave":{"id":1},"canyon":{"id":2},"underwater_canyon":{"id":3},"underwater_cave":{"id":4}}},"surface_builder":{"id":9,"entries":{"default":{"id":0},"mountain":{"id":1},"shattered_savanna":{"id":2},"gravelly_mountain":{"id":3},"giant_tree_taiga":{"id":4},"swamp":{"id":5},"badlands":{"id":6},"wooded_badlands":{"id":7},"eroded_badlands":{"id":8},"frozen_ocean":{"id":9},"nether":{"id":10},"nope":{"id":11}}},"feature":{"id":10,"entries":{"pillager_outpost":{"id":0},"mineshaft":{"id":1},"woodland_mansion":{"id":2},"jungle_temple":{"id":3},"desert_pyramid":{"id":4},"igloo":{"id":5},"shipwreck":{"id":6},"swamp_hut":{"id":7},"stronghold":{"id":8},"ocean_monument":{"id":9},"ocean_ruin":{"id":10},"nether_bridge":{"id":11},"end_city":{"id":12},"buried_treasure":{"id":13},"village":{"id":14},"fancy_tree":{"id":15},"birch_tree":{"id":16},"super_birch_tree":{"id":17},"jungle_ground_bush":{"id":18},"jungle_tree":{"id":19},"pine_tree":{"id":20},"dark_oak_tree":{"id":21},"savanna_tree":{"id":22},"spruce_tree":{"id":23},"swamp_tree":{"id":24},"normal_tree":{"id":25},"mega_jungle_tree":{"id":26},"mega_pine_tree":{"id":27},"mega_spruce_tree":{"id":28},"default_flower":{"id":29},"forest_flower":{"id":30},"plain_flower":{"id":31},"swamp_flower":{"id":32},"general_forest_flower":{"id":33},"jungle_grass":{"id":34},"taiga_grass":{"id":35},"grass":{"id":36},"void_start_platform":{"id":37},"cactus":{"id":38},"dead_bush":{"id":39},"desert_well":{"id":40},"fossil":{"id":41},"hell_fire":{"id":42},"huge_red_mushroom":{"id":43},"huge_brown_mushroom":{"id":44},"ice_spike":{"id":45},"glowstone_blob":{"id":46},"melon":{"id":47},"pumpkin":{"id":48},"reed":{"id":49},"freeze_top_layer":{"id":50},"vines":{"id":51},"waterlily":{"id":52},"monster_room":{"id":53},"blue_ice":{"id":54},"iceberg":{"id":55},"forest_rock":{"id":56},"hay_pile":{"id":57},"snow_pile":{"id":58},"ice_pile":{"id":59},"melon_pile":{"id":60},"pumpkin_pile":{"id":61},"bush":{"id":62},"disk":{"id":63},"double_plant":{"id":64},"nether_spring":{"id":65},"ice_patch":{"id":66},"lake":{"id":67},"ore":{"id":68},"random_random_selector":{"id":69},"random_selector":{"id":70},"simple_random_selector":{"id":71},"random_boolean_selector":{"id":72},"emerald_ore":{"id":73},"spring_feature":{"id":74},"end_spike":{"id":75},"end_island":{"id":76},"chorus_plant":{"id":77},"end_gateway":{"id":78},"seagrass":{"id":79},"kelp":{"id":80},"coral_tree":{"id":81},"coral_mushroom":{"id":82},"coral_claw":{"id":83},"sea_pickle":{"id":84},"simple_block":{"id":85},"bamboo":{"id":86},"decorated":{"id":87},"decorated_flower":{"id":88},"sweet_berry_bush":{"id":89},"fill_layer":{"id":90},"bonus_chest":{"id":91}}},"decorator":{"id":11,"entries":{"count_heightmap":{"id":0},"count_top_solid":{"id":1},"count_heightmap_32":{"id":2},"count_heightmap_double":{"id":3},"count_height_64":{"id":4},"noise_heightmap_32":{"id":5},"noise_heightmap_double":{"id":6},"nope":{"id":7},"chance_heightmap":{"id":8},"chance_heightmap_double":{"id":9},"chance_passthrough":{"id":10},"chance_top_solid_heightmap":{"id":11},"count_extra_heightmap":{"id":12},"count_range":{"id":13},"count_biased_range":{"id":14},"count_very_biased_range":{"id":15},"random_count_range":{"id":16},"chance_range":{"id":17},"count_chance_heightmap":{"id":18},"count_chance_heightmap_double":{"id":19},"count_depth_average":{"id":20},"top_solid_heightmap":{"id":21},"top_solid_heightmap_range":{"id":22},"top_solid_heightmap_noise_biased":{"id":23},"carving_mask":{"id":24},"forest_rock":{"id":25},"hell_fire":{"id":26},"magma":{"id":27},"emerald_ore":{"id":28},"lava_lake":{"id":29},"water_lake":{"id":30},"dungeons":{"id":31},"dark_oak_tree":{"id":32},"iceberg":{"id":33},"light_gem_chance":{"id":34},"end_island":{"id":35},"chorus_plant":{"id":36},"end_gateway":{"id":37}}},"biome":{"id":12,"entries":{"ocean":{"id":0},"plains":{"id":1},"desert":{"id":2},"mountains":{"id":3},"forest":{"id":4},"taiga":{"id":5},"swamp":{"id":6},"river":{"id":7},"nether":{"id":8},"the_end":{"id":9},"frozen_ocean":{"id":10},"frozen_river":{"id":11},"snowy_tundra":{"id":12},"snowy_mountains":{"id":13},"mushroom_fields":{"id":14},"mushroom_field_shore":{"id":15},"beach":{"id":16},"desert_hills":{"id":17},"wooded_hills":{"id":18},"taiga_hills":{"id":19},"mountain_edge":{"id":20},"jungle":{"id":21},"jungle_hills":{"id":22},"jungle_edge":{"id":23},"deep_ocean":{"id":24},"stone_shore":{"id":25},"snowy_beach":{"id":26},"birch_forest":{"id":27},"birch_forest_hills":{"id":28},"dark_forest":{"id":29},"snowy_taiga":{"id":30},"snowy_taiga_hills":{"id":31},"giant_tree_taiga":{"id":32},"giant_tree_taiga_hills":{"id":33},"wooded_mountains":{"id":34},"savanna":{"id":35},"savanna_plateau":{"id":36},"badlands":{"id":37},"wooded_badlands_plateau":{"id":38},"badlands_plateau":{"id":39},"small_end_islands":{"id":40},"end_midlands":{"id":41},"end_highlands":{"id":42},"end_barrens":{"id":43},"warm_ocean":{"id":44},"lukewarm_ocean":{"id":45},"cold_ocean":{"id":46},"deep_warm_ocean":{"id":47},"deep_lukewarm_ocean":{"id":48},"deep_cold_ocean":{"id":49},"deep_frozen_ocean":{"id":50},"the_void":{"id":127},"sunflower_plains":{"id":129},"desert_lakes":{"id":130},"gravelly_mountains":{"id":131},"flower_forest":{"id":132},"taiga_mountains":{"id":133},"swamp_hills":{"id":134},"ice_spikes":{"id":140},"modified_jungle":{"id":149},"modified_jungle_edge":{"id":151},"tall_birch_forest":{"id":155},"tall_birch_hills":{"id":156},"dark_forest_hills":{"id":157},"snowy_taiga_mountains":{"id":158},"giant_spruce_taiga":{"id":160},"giant_spruce_taiga_hills":{"id":161},"modified_gravelly_mountains":{"id":162},"shattered_savanna":{"id":163},"shattered_savanna_plateau":{"id":164},"eroded_badlands":{"id":165},"modified_wooded_badlands_plateau":{"id":166},"modified_badlands_plateau":{"id":167},"bamboo_jungle":{"id":168},"bamboo_jungle_hills":{"id":169}}},"particle_type":{"id":13,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55},"campfire_cosy_smoke":{"id":56},"campfire_signal_smoke":{"id":57}}},"biome_source_type":{"id":14,"entries":{"checkerboard":{"id":0},"fixed":{"id":1},"vanilla_layered":{"id":2},"the_end":{"id":3}}},"block_entity_type":{"id":15,"entries":{"furnace":{"id":0},"chest":{"id":1},"trapped_chest":{"id":2},"ender_chest":{"id":3},"jukebox":{"id":4},"dispenser":{"id":5},"dropper":{"id":6},"sign":{"id":7},"mob_spawner":{"id":8},"piston":{"id":9},"brewing_stand":{"id":10},"enchanting_table":{"id":11},"end_portal":{"id":12},"beacon":{"id":13},"skull":{"id":14},"daylight_detector":{"id":15},"hopper":{"id":16},"comparator":{"id":17},"banner":{"id":18},"structure_block":{"id":19},"end_gateway":{"id":20},"command_block":{"id":21},"shulker_box":{"id":22},"bed":{"id":23},"conduit":{"id":24},"barrel":{"id":25},"smoker":{"id":26},"blast_furnace":{"id":27},"lectern":{"id":28},"bell":{"id":29},"jigsaw":{"id":30},"campfire":{"id":31}}},"chunk_generator_type":{"id":16,"entries":{"surface":{"id":0},"caves":{"id":1},"floating_islands":{"id":2},"debug":{"id":3},"flat":{"id":4}}},"dimension_type":{"id":17,"entries":{"overworld":{"id":0,"has_skylight":true},"the_nether":{"id":11,"has_skylight":false},"the_end":{"id":-1,"has_skylight":false}}},"motive":{"default":"kebab","id":18,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"custom_stat":{"id":19,"entries":{"leave_game":{"id":0},"play_one_minute":{"id":1},"time_since_death":{"id":2},"time_since_rest":{"id":3},"sneak_time":{"id":4},"walk_one_cm":{"id":5},"crouch_one_cm":{"id":6},"sprint_one_cm":{"id":7},"walk_on_water_one_cm":{"id":8},"fall_one_cm":{"id":9},"climb_one_cm":{"id":10},"fly_one_cm":{"id":11},"walk_under_water_one_cm":{"id":12},"minecart_one_cm":{"id":13},"boat_one_cm":{"id":14},"pig_one_cm":{"id":15},"horse_one_cm":{"id":16},"aviate_one_cm":{"id":17},"swim_one_cm":{"id":18},"jump":{"id":19},"drop":{"id":20},"damage_dealt":{"id":21},"damage_dealt_absorbed":{"id":22},"damage_dealt_resisted":{"id":23},"damage_taken":{"id":24},"damage_blocked_by_shield":{"id":25},"damage_absorbed":{"id":26},"damage_resisted":{"id":27},"deaths":{"id":28},"mob_kills":{"id":29},"animals_bred":{"id":30},"player_kills":{"id":31},"fish_caught":{"id":32},"talked_to_villager":{"id":33},"traded_with_villager":{"id":34},"eat_cake_slice":{"id":35},"fill_cauldron":{"id":36},"use_cauldron":{"id":37},"clean_armor":{"id":38},"clean_banner":{"id":39},"clean_shulker_box":{"id":40},"interact_with_brewingstand":{"id":41},"interact_with_beacon":{"id":42},"inspect_dropper":{"id":43},"inspect_hopper":{"id":44},"inspect_dispenser":{"id":45},"play_noteblock":{"id":46},"tune_noteblock":{"id":47},"pot_flower":{"id":48},"trigger_trapped_chest":{"id":49},"open_enderchest":{"id":50},"enchant_item":{"id":51},"play_record":{"id":52},"interact_with_furnace":{"id":53},"interact_with_crafting_table":{"id":54},"open_chest":{"id":55},"sleep_in_bed":{"id":56},"open_shulker_box":{"id":57},"open_barrel":{"id":58},"interact_with_blast_furnace":{"id":59},"interact_with_smoker":{"id":60},"interact_with_lectern":{"id":61},"interact_with_campfire":{"id":62},"interact_with_cartography_table":{"id":63},"interact_with_loom":{"id":64},"interact_with_stonecutter":{"id":65},"bell_ring":{"id":66},"raid_trigger":{"id":67},"raid_win":{"id":68}}},"chunk_status":{"default":"empty","id":20,"entries":{"empty":{"id":0},"structure_starts":{"id":1},"structure_references":{"id":2},"biomes":{"id":3},"noise":{"id":4},"surface":{"id":5},"carvers":{"id":6},"liquid_carvers":{"id":7},"features":{"id":8},"light":{"id":9},"spawn":{"id":10},"heightmaps":{"id":11},"full":{"id":12}}},"structure_feature":{"id":21,"entries":{"mineshaft":{"id":0},"pillager_outpost":{"id":1},"fortress":{"id":2},"stronghold":{"id":3},"jungle_pyramid":{"id":4},"ocean_ruin":{"id":5},"desert_pyramid":{"id":6},"igloo":{"id":7},"swamp_hut":{"id":8},"monument":{"id":9},"endcity":{"id":10},"mansion":{"id":11},"buried_treasure":{"id":12},"shipwreck":{"id":13},"village":{"id":14}}},"structure_piece":{"id":22,"entries":{"mscorridor":{"id":0},"mscrossing":{"id":1},"msroom":{"id":2},"msstairs":{"id":3},"pcp":{"id":4},"nvi":{"id":5},"nebcr":{"id":6},"nebef":{"id":7},"nebs":{"id":8},"neccs":{"id":9},"nectb":{"id":10},"nece":{"id":11},"nescsc":{"id":12},"nesclt":{"id":13},"nesc":{"id":14},"nescrt":{"id":15},"necsr":{"id":16},"nemt":{"id":17},"nerc":{"id":18},"nesr":{"id":19},"nestart":{"id":20},"shcc":{"id":21},"shfc":{"id":22},"sh5c":{"id":23},"shlt":{"id":24},"shli":{"id":25},"shpr":{"id":26},"shph":{"id":27},"shrt":{"id":28},"shrc":{"id":29},"shsd":{"id":30},"shstart":{"id":31},"shs":{"id":32},"shssd":{"id":33},"tejp":{"id":34},"orp":{"id":35},"iglu":{"id":36},"tesh":{"id":37},"tedp":{"id":38},"omb":{"id":39},"omcr":{"id":40},"omdxr":{"id":41},"omdxyr":{"id":42},"omdyr":{"id":43},"omdyzr":{"id":44},"omdzr":{"id":45},"omentry":{"id":46},"ompenthouse":{"id":47},"omsimple":{"id":48},"omsimplet":{"id":49},"omwr":{"id":50},"ecp":{"id":51},"wmp":{"id":52},"btp":{"id":53},"shipwreck":{"id":54}}},"rule_test":{"id":23,"entries":{"always_true":{"id":0},"block_match":{"id":1},"blockstate_match":{"id":2},"tag_match":{"id":3},"random_block_match":{"id":4},"random_blockstate_match":{"id":5}}},"structure_processor":{"id":24,"entries":{"block_ignore":{"id":0},"block_rot":{"id":1},"gravity":{"id":2},"jigsaw_replacement":{"id":3},"rule":{"id":4},"nop":{"id":5}}},"structure_pool_element":{"id":25,"entries":{"single_pool_element":{"id":0},"list_pool_element":{"id":1},"feature_pool_element":{"id":2},"empty_pool_element":{"id":3}}},"menu":{"id":26,"entries":{"generic_9x1":{"id":0},"generic_9x2":{"id":1},"generic_9x3":{"id":2},"generic_9x4":{"id":3},"generic_9x5":{"id":4},"generic_9x6":{"id":5},"generic_3x3":{"id":6},"anvil":{"id":7},"beacon":{"id":8},"blast_furnace":{"id":9},"brewing_stand":{"id":10},"crafting":{"id":11},"enchantment":{"id":12},"furnace":{"id":13},"grindstone":{"id":14},"hopper":{"id":15},"lectern":{"id":16},"loom":{"id":17},"merchant":{"id":18},"shulker_box":{"id":19},"smoker":{"id":20},"cartography":{"id":21},"stonecutter":{"id":22}}},"recipe_type":{"id":27,"entries":{"crafting":{"id":0},"smelting":{"id":1},"blasting":{"id":2},"smoking":{"id":3},"campfire_cooking":{"id":4},"stonecutting":{"id":5}}},"recipe_serializer":{"id":28,"entries":{"crafting_shaped":{"id":0},"crafting_shapeless":{"id":1},"crafting_special_armordye":{"id":2},"crafting_special_bookcloning":{"id":3},"crafting_special_mapcloning":{"id":4},"crafting_special_mapextending":{"id":5},"crafting_special_firework_rocket":{"id":6},"crafting_special_firework_star":{"id":7},"crafting_special_firework_star_fade":{"id":8},"crafting_special_tippedarrow":{"id":9},"crafting_special_bannerduplicate":{"id":10},"crafting_special_shielddecoration":{"id":11},"crafting_special_shulkerboxcoloring":{"id":12},"crafting_special_suspiciousstew":{"id":13},"crafting_special_repairitem":{"id":14},"smelting":{"id":15},"blasting":{"id":16},"smoking":{"id":17},"campfire_cooking":{"id":18},"stonecutting":{"id":19}}},"stat_type":{"id":29,"entries":{"mined":{"id":0},"crafted":{"id":1},"used":{"id":2},"broken":{"id":3},"picked_up":{"id":4},"dropped":{"id":5},"killed":{"id":6},"killed_by":{"id":7},"custom":{"id":8}}},"villager_type":{"default":"plains","id":30,"entries":{"desert":{"id":0},"jungle":{"id":1},"plains":{"id":2},"savanna":{"id":3},"snow":{"id":4},"swamp":{"id":5},"taiga":{"id":6}}},"villager_profession":{"default":"none","id":31,"entries":{"none":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14}}},"point_of_interest_type":{"default":"unemployed","id":32,"entries":{"unemployed":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14},"home":{"id":15},"meeting":{"id":16}}},"memory_module_type":{"default":"dummy","id":33,"entries":{"dummy":{"id":0},"home":{"id":1},"job_site":{"id":2},"meeting_point":{"id":3},"secondary_job_site":{"id":4},"mobs":{"id":5},"visible_mobs":{"id":6},"visible_villager_babies":{"id":7},"nearest_players":{"id":8},"nearest_visible_player":{"id":9},"walk_target":{"id":10},"look_target":{"id":11},"interaction_target":{"id":12},"breed_target":{"id":13},"path":{"id":14},"interactable_doors":{"id":15},"opened_doors":{"id":16},"nearest_bed":{"id":17},"hurt_by":{"id":18},"hurt_by_entity":{"id":19},"nearest_hostile":{"id":20},"hiding_place":{"id":21},"heard_bell_time":{"id":22},"cant_reach_walk_target_since":{"id":23},"golem_last_seen_time":{"id":24},"last_slept":{"id":25},"last_worked_at_poi":{"id":26}}},"sensor_type":{"default":"dummy","id":34,"entries":{"dummy":{"id":0},"nearest_living_entities":{"id":1},"nearest_players":{"id":2},"interactable_doors":{"id":3},"nearest_bed":{"id":4},"hurt_by":{"id":5},"villager_hostiles":{"id":6},"villager_babies":{"id":7},"secondary_pois":{"id":8},"golem_last_seen":{"id":9}}},"schedule":{"id":35,"entries":{"empty":{"id":0},"simple":{"id":1},"villager_baby":{"id":2},"villager_default":{"id":3}}},"activity":{"id":36,"entries":{"core":{"id":0},"idle":{"id":1},"work":{"id":2},"play":{"id":3},"rest":{"id":4},"meet":{"id":5},"panic":{"id":6},"raid":{"id":7},"pre_raid":{"id":8},"hide":{"id":9}}}}}
\ No newline at end of file
diff --git a/src/main/resources/assets/mapping/1.15.2/registries.json b/src/main/resources/assets/mapping/1.15.2/registries.json
index a43cc74da..b323bcd07 100644
--- a/src/main/resources/assets/mapping/1.15.2/registries.json
+++ b/src/main/resources/assets/mapping/1.15.2/registries.json
@@ -1 +1 @@
-{"minecraft":{"sound_event":{"id":0,"entries":{"ambient.cave":{"id":0},"ambient.underwater.enter":{"id":1},"ambient.underwater.exit":{"id":2},"ambient.underwater.loop":{"id":3},"ambient.underwater.loop.additions":{"id":4},"ambient.underwater.loop.additions.rare":{"id":5},"ambient.underwater.loop.additions.ultra_rare":{"id":6},"block.anvil.break":{"id":7},"block.anvil.destroy":{"id":8},"block.anvil.fall":{"id":9},"block.anvil.hit":{"id":10},"block.anvil.land":{"id":11},"block.anvil.place":{"id":12},"block.anvil.step":{"id":13},"block.anvil.use":{"id":14},"item.armor.equip_chain":{"id":15},"item.armor.equip_diamond":{"id":16},"item.armor.equip_elytra":{"id":17},"item.armor.equip_generic":{"id":18},"item.armor.equip_gold":{"id":19},"item.armor.equip_iron":{"id":20},"item.armor.equip_leather":{"id":21},"item.armor.equip_turtle":{"id":22},"entity.armor_stand.break":{"id":23},"entity.armor_stand.fall":{"id":24},"entity.armor_stand.hit":{"id":25},"entity.armor_stand.place":{"id":26},"entity.arrow.hit":{"id":27},"entity.arrow.hit_player":{"id":28},"entity.arrow.shoot":{"id":29},"item.axe.strip":{"id":30},"block.bamboo.break":{"id":31},"block.bamboo.fall":{"id":32},"block.bamboo.hit":{"id":33},"block.bamboo.place":{"id":34},"block.bamboo.step":{"id":35},"block.bamboo_sapling.break":{"id":36},"block.bamboo_sapling.hit":{"id":37},"block.bamboo_sapling.place":{"id":38},"block.barrel.close":{"id":39},"block.barrel.open":{"id":40},"entity.bat.ambient":{"id":41},"entity.bat.death":{"id":42},"entity.bat.hurt":{"id":43},"entity.bat.loop":{"id":44},"entity.bat.takeoff":{"id":45},"block.beacon.activate":{"id":46},"block.beacon.ambient":{"id":47},"block.beacon.deactivate":{"id":48},"block.beacon.power_select":{"id":49},"entity.bee.death":{"id":50},"entity.bee.hurt":{"id":51},"entity.bee.loop_aggressive":{"id":52},"entity.bee.loop":{"id":53},"entity.bee.sting":{"id":54},"entity.bee.pollinate":{"id":55},"block.beehive.drip":{"id":56},"block.beehive.enter":{"id":57},"block.beehive.exit":{"id":58},"block.beehive.shear":{"id":59},"block.beehive.work":{"id":60},"block.bell.use":{"id":61},"block.bell.resonate":{"id":62},"entity.blaze.ambient":{"id":63},"entity.blaze.burn":{"id":64},"entity.blaze.death":{"id":65},"entity.blaze.hurt":{"id":66},"entity.blaze.shoot":{"id":67},"entity.boat.paddle_land":{"id":68},"entity.boat.paddle_water":{"id":69},"item.book.page_turn":{"id":70},"item.book.put":{"id":71},"entity.fishing_bobber.retrieve":{"id":72},"entity.fishing_bobber.splash":{"id":73},"entity.fishing_bobber.throw":{"id":74},"block.blastfurnace.fire_crackle":{"id":75},"item.bottle.empty":{"id":76},"item.bottle.fill":{"id":77},"item.bottle.fill_dragonbreath":{"id":78},"block.brewing_stand.brew":{"id":79},"block.bubble_column.bubble_pop":{"id":80},"block.bubble_column.upwards_ambient":{"id":81},"block.bubble_column.upwards_inside":{"id":82},"block.bubble_column.whirlpool_ambient":{"id":83},"block.bubble_column.whirlpool_inside":{"id":84},"item.bucket.empty":{"id":85},"item.bucket.empty_fish":{"id":86},"item.bucket.empty_lava":{"id":87},"item.bucket.fill":{"id":88},"item.bucket.fill_fish":{"id":89},"item.bucket.fill_lava":{"id":90},"block.campfire.crackle":{"id":91},"entity.cat.ambient":{"id":92},"entity.cat.stray_ambient":{"id":93},"entity.cat.death":{"id":94},"entity.cat.eat":{"id":95},"entity.cat.hiss":{"id":96},"entity.cat.beg_for_food":{"id":97},"entity.cat.hurt":{"id":98},"entity.cat.purr":{"id":99},"entity.cat.purreow":{"id":100},"block.chest.close":{"id":101},"block.chest.locked":{"id":102},"block.chest.open":{"id":103},"entity.chicken.ambient":{"id":104},"entity.chicken.death":{"id":105},"entity.chicken.egg":{"id":106},"entity.chicken.hurt":{"id":107},"entity.chicken.step":{"id":108},"block.chorus_flower.death":{"id":109},"block.chorus_flower.grow":{"id":110},"item.chorus_fruit.teleport":{"id":111},"block.wool.break":{"id":112},"block.wool.fall":{"id":113},"block.wool.hit":{"id":114},"block.wool.place":{"id":115},"block.wool.step":{"id":116},"entity.cod.ambient":{"id":117},"entity.cod.death":{"id":118},"entity.cod.flop":{"id":119},"entity.cod.hurt":{"id":120},"block.comparator.click":{"id":121},"block.composter.empty":{"id":122},"block.composter.fill":{"id":123},"block.composter.fill_success":{"id":124},"block.composter.ready":{"id":125},"block.conduit.activate":{"id":126},"block.conduit.ambient":{"id":127},"block.conduit.ambient.short":{"id":128},"block.conduit.attack.target":{"id":129},"block.conduit.deactivate":{"id":130},"entity.cow.ambient":{"id":131},"entity.cow.death":{"id":132},"entity.cow.hurt":{"id":133},"entity.cow.milk":{"id":134},"entity.cow.step":{"id":135},"entity.creeper.death":{"id":136},"entity.creeper.hurt":{"id":137},"entity.creeper.primed":{"id":138},"block.crop.break":{"id":139},"item.crop.plant":{"id":140},"item.crossbow.hit":{"id":141},"item.crossbow.loading_end":{"id":142},"item.crossbow.loading_middle":{"id":143},"item.crossbow.loading_start":{"id":144},"item.crossbow.quick_charge_1":{"id":145},"item.crossbow.quick_charge_2":{"id":146},"item.crossbow.quick_charge_3":{"id":147},"item.crossbow.shoot":{"id":148},"block.dispenser.dispense":{"id":149},"block.dispenser.fail":{"id":150},"block.dispenser.launch":{"id":151},"entity.dolphin.ambient":{"id":152},"entity.dolphin.ambient_water":{"id":153},"entity.dolphin.attack":{"id":154},"entity.dolphin.death":{"id":155},"entity.dolphin.eat":{"id":156},"entity.dolphin.hurt":{"id":157},"entity.dolphin.jump":{"id":158},"entity.dolphin.play":{"id":159},"entity.dolphin.splash":{"id":160},"entity.dolphin.swim":{"id":161},"entity.donkey.ambient":{"id":162},"entity.donkey.angry":{"id":163},"entity.donkey.chest":{"id":164},"entity.donkey.death":{"id":165},"entity.donkey.hurt":{"id":166},"entity.drowned.ambient":{"id":167},"entity.drowned.ambient_water":{"id":168},"entity.drowned.death":{"id":169},"entity.drowned.death_water":{"id":170},"entity.drowned.hurt":{"id":171},"entity.drowned.hurt_water":{"id":172},"entity.drowned.shoot":{"id":173},"entity.drowned.step":{"id":174},"entity.drowned.swim":{"id":175},"entity.egg.throw":{"id":176},"entity.elder_guardian.ambient":{"id":177},"entity.elder_guardian.ambient_land":{"id":178},"entity.elder_guardian.curse":{"id":179},"entity.elder_guardian.death":{"id":180},"entity.elder_guardian.death_land":{"id":181},"entity.elder_guardian.flop":{"id":182},"entity.elder_guardian.hurt":{"id":183},"entity.elder_guardian.hurt_land":{"id":184},"item.elytra.flying":{"id":185},"block.enchantment_table.use":{"id":186},"block.ender_chest.close":{"id":187},"block.ender_chest.open":{"id":188},"entity.ender_dragon.ambient":{"id":189},"entity.ender_dragon.death":{"id":190},"entity.dragon_fireball.explode":{"id":191},"entity.ender_dragon.flap":{"id":192},"entity.ender_dragon.growl":{"id":193},"entity.ender_dragon.hurt":{"id":194},"entity.ender_dragon.shoot":{"id":195},"entity.ender_eye.death":{"id":196},"entity.ender_eye.launch":{"id":197},"entity.enderman.ambient":{"id":198},"entity.enderman.death":{"id":199},"entity.enderman.hurt":{"id":200},"entity.enderman.scream":{"id":201},"entity.enderman.stare":{"id":202},"entity.enderman.teleport":{"id":203},"entity.endermite.ambient":{"id":204},"entity.endermite.death":{"id":205},"entity.endermite.hurt":{"id":206},"entity.endermite.step":{"id":207},"entity.ender_pearl.throw":{"id":208},"block.end_gateway.spawn":{"id":209},"block.end_portal_frame.fill":{"id":210},"block.end_portal.spawn":{"id":211},"entity.evoker.ambient":{"id":212},"entity.evoker.cast_spell":{"id":213},"entity.evoker.celebrate":{"id":214},"entity.evoker.death":{"id":215},"entity.evoker_fangs.attack":{"id":216},"entity.evoker.hurt":{"id":217},"entity.evoker.prepare_attack":{"id":218},"entity.evoker.prepare_summon":{"id":219},"entity.evoker.prepare_wololo":{"id":220},"entity.experience_bottle.throw":{"id":221},"entity.experience_orb.pickup":{"id":222},"block.fence_gate.close":{"id":223},"block.fence_gate.open":{"id":224},"item.firecharge.use":{"id":225},"entity.firework_rocket.blast":{"id":226},"entity.firework_rocket.blast_far":{"id":227},"entity.firework_rocket.large_blast":{"id":228},"entity.firework_rocket.large_blast_far":{"id":229},"entity.firework_rocket.launch":{"id":230},"entity.firework_rocket.shoot":{"id":231},"entity.firework_rocket.twinkle":{"id":232},"entity.firework_rocket.twinkle_far":{"id":233},"block.fire.ambient":{"id":234},"block.fire.extinguish":{"id":235},"entity.fish.swim":{"id":236},"item.flintandsteel.use":{"id":237},"entity.fox.aggro":{"id":238},"entity.fox.ambient":{"id":239},"entity.fox.bite":{"id":240},"entity.fox.death":{"id":241},"entity.fox.eat":{"id":242},"entity.fox.hurt":{"id":243},"entity.fox.screech":{"id":244},"entity.fox.sleep":{"id":245},"entity.fox.sniff":{"id":246},"entity.fox.spit":{"id":247},"block.furnace.fire_crackle":{"id":248},"entity.generic.big_fall":{"id":249},"entity.generic.burn":{"id":250},"entity.generic.death":{"id":251},"entity.generic.drink":{"id":252},"entity.generic.eat":{"id":253},"entity.generic.explode":{"id":254},"entity.generic.extinguish_fire":{"id":255},"entity.generic.hurt":{"id":256},"entity.generic.small_fall":{"id":257},"entity.generic.splash":{"id":258},"entity.generic.swim":{"id":259},"entity.ghast.ambient":{"id":260},"entity.ghast.death":{"id":261},"entity.ghast.hurt":{"id":262},"entity.ghast.scream":{"id":263},"entity.ghast.shoot":{"id":264},"entity.ghast.warn":{"id":265},"block.glass.break":{"id":266},"block.glass.fall":{"id":267},"block.glass.hit":{"id":268},"block.glass.place":{"id":269},"block.glass.step":{"id":270},"block.grass.break":{"id":271},"block.grass.fall":{"id":272},"block.grass.hit":{"id":273},"block.grass.place":{"id":274},"block.grass.step":{"id":275},"block.wet_grass.break":{"id":276},"block.wet_grass.fall":{"id":277},"block.wet_grass.hit":{"id":278},"block.wet_grass.place":{"id":279},"block.wet_grass.step":{"id":280},"block.coral_block.break":{"id":281},"block.coral_block.fall":{"id":282},"block.coral_block.hit":{"id":283},"block.coral_block.place":{"id":284},"block.coral_block.step":{"id":285},"block.gravel.break":{"id":286},"block.gravel.fall":{"id":287},"block.gravel.hit":{"id":288},"block.gravel.place":{"id":289},"block.gravel.step":{"id":290},"block.grindstone.use":{"id":291},"entity.guardian.ambient":{"id":292},"entity.guardian.ambient_land":{"id":293},"entity.guardian.attack":{"id":294},"entity.guardian.death":{"id":295},"entity.guardian.death_land":{"id":296},"entity.guardian.flop":{"id":297},"entity.guardian.hurt":{"id":298},"entity.guardian.hurt_land":{"id":299},"item.hoe.till":{"id":300},"block.honey_block.break":{"id":301},"block.honey_block.fall":{"id":302},"block.honey_block.hit":{"id":303},"block.honey_block.place":{"id":304},"block.honey_block.slide":{"id":305},"block.honey_block.step":{"id":306},"item.honey_bottle.drink":{"id":307},"entity.horse.ambient":{"id":308},"entity.horse.angry":{"id":309},"entity.horse.armor":{"id":310},"entity.horse.breathe":{"id":311},"entity.horse.death":{"id":312},"entity.horse.eat":{"id":313},"entity.horse.gallop":{"id":314},"entity.horse.hurt":{"id":315},"entity.horse.jump":{"id":316},"entity.horse.land":{"id":317},"entity.horse.saddle":{"id":318},"entity.horse.step":{"id":319},"entity.horse.step_wood":{"id":320},"entity.hostile.big_fall":{"id":321},"entity.hostile.death":{"id":322},"entity.hostile.hurt":{"id":323},"entity.hostile.small_fall":{"id":324},"entity.hostile.splash":{"id":325},"entity.hostile.swim":{"id":326},"entity.husk.ambient":{"id":327},"entity.husk.converted_to_zombie":{"id":328},"entity.husk.death":{"id":329},"entity.husk.hurt":{"id":330},"entity.husk.step":{"id":331},"entity.ravager.ambient":{"id":332},"entity.ravager.attack":{"id":333},"entity.ravager.celebrate":{"id":334},"entity.ravager.death":{"id":335},"entity.ravager.hurt":{"id":336},"entity.ravager.step":{"id":337},"entity.ravager.stunned":{"id":338},"entity.ravager.roar":{"id":339},"entity.illusioner.ambient":{"id":340},"entity.illusioner.cast_spell":{"id":341},"entity.illusioner.death":{"id":342},"entity.illusioner.hurt":{"id":343},"entity.illusioner.mirror_move":{"id":344},"entity.illusioner.prepare_blindness":{"id":345},"entity.illusioner.prepare_mirror":{"id":346},"block.iron_door.close":{"id":347},"block.iron_door.open":{"id":348},"entity.iron_golem.attack":{"id":349},"entity.iron_golem.damage":{"id":350},"entity.iron_golem.death":{"id":351},"entity.iron_golem.hurt":{"id":352},"entity.iron_golem.repair":{"id":353},"entity.iron_golem.step":{"id":354},"block.iron_trapdoor.close":{"id":355},"block.iron_trapdoor.open":{"id":356},"entity.item_frame.add_item":{"id":357},"entity.item_frame.break":{"id":358},"entity.item_frame.place":{"id":359},"entity.item_frame.remove_item":{"id":360},"entity.item_frame.rotate_item":{"id":361},"entity.item.break":{"id":362},"entity.item.pickup":{"id":363},"block.ladder.break":{"id":364},"block.ladder.fall":{"id":365},"block.ladder.hit":{"id":366},"block.ladder.place":{"id":367},"block.ladder.step":{"id":368},"block.lantern.break":{"id":369},"block.lantern.fall":{"id":370},"block.lantern.hit":{"id":371},"block.lantern.place":{"id":372},"block.lantern.step":{"id":373},"block.lava.ambient":{"id":374},"block.lava.extinguish":{"id":375},"block.lava.pop":{"id":376},"entity.leash_knot.break":{"id":377},"entity.leash_knot.place":{"id":378},"block.lever.click":{"id":379},"entity.lightning_bolt.impact":{"id":380},"entity.lightning_bolt.thunder":{"id":381},"entity.lingering_potion.throw":{"id":382},"entity.llama.ambient":{"id":383},"entity.llama.angry":{"id":384},"entity.llama.chest":{"id":385},"entity.llama.death":{"id":386},"entity.llama.eat":{"id":387},"entity.llama.hurt":{"id":388},"entity.llama.spit":{"id":389},"entity.llama.step":{"id":390},"entity.llama.swag":{"id":391},"entity.magma_cube.death":{"id":392},"entity.magma_cube.hurt":{"id":393},"entity.magma_cube.jump":{"id":394},"entity.magma_cube.squish":{"id":395},"block.metal.break":{"id":396},"block.metal.fall":{"id":397},"block.metal.hit":{"id":398},"block.metal.place":{"id":399},"block.metal_pressure_plate.click_off":{"id":400},"block.metal_pressure_plate.click_on":{"id":401},"block.metal.step":{"id":402},"entity.minecart.inside":{"id":403},"entity.minecart.riding":{"id":404},"entity.mooshroom.convert":{"id":405},"entity.mooshroom.eat":{"id":406},"entity.mooshroom.milk":{"id":407},"entity.mooshroom.suspicious_milk":{"id":408},"entity.mooshroom.shear":{"id":409},"entity.mule.ambient":{"id":410},"entity.mule.chest":{"id":411},"entity.mule.death":{"id":412},"entity.mule.hurt":{"id":413},"music.creative":{"id":414},"music.credits":{"id":415},"music.dragon":{"id":416},"music.end":{"id":417},"music.game":{"id":418},"music.menu":{"id":419},"music.nether":{"id":420},"music.under_water":{"id":421},"block.nether_wart.break":{"id":422},"item.nether_wart.plant":{"id":423},"block.note_block.basedrum":{"id":424},"block.note_block.bass":{"id":425},"block.note_block.bell":{"id":426},"block.note_block.chime":{"id":427},"block.note_block.flute":{"id":428},"block.note_block.guitar":{"id":429},"block.note_block.harp":{"id":430},"block.note_block.hat":{"id":431},"block.note_block.pling":{"id":432},"block.note_block.snare":{"id":433},"block.note_block.xylophone":{"id":434},"block.note_block.iron_xylophone":{"id":435},"block.note_block.cow_bell":{"id":436},"block.note_block.didgeridoo":{"id":437},"block.note_block.bit":{"id":438},"block.note_block.banjo":{"id":439},"entity.ocelot.hurt":{"id":440},"entity.ocelot.ambient":{"id":441},"entity.ocelot.death":{"id":442},"entity.painting.break":{"id":443},"entity.painting.place":{"id":444},"entity.panda.pre_sneeze":{"id":445},"entity.panda.sneeze":{"id":446},"entity.panda.ambient":{"id":447},"entity.panda.death":{"id":448},"entity.panda.eat":{"id":449},"entity.panda.step":{"id":450},"entity.panda.cant_breed":{"id":451},"entity.panda.aggressive_ambient":{"id":452},"entity.panda.worried_ambient":{"id":453},"entity.panda.hurt":{"id":454},"entity.panda.bite":{"id":455},"entity.parrot.ambient":{"id":456},"entity.parrot.death":{"id":457},"entity.parrot.eat":{"id":458},"entity.parrot.fly":{"id":459},"entity.parrot.hurt":{"id":460},"entity.parrot.imitate.blaze":{"id":461},"entity.parrot.imitate.creeper":{"id":462},"entity.parrot.imitate.drowned":{"id":463},"entity.parrot.imitate.elder_guardian":{"id":464},"entity.parrot.imitate.ender_dragon":{"id":465},"entity.parrot.imitate.endermite":{"id":466},"entity.parrot.imitate.evoker":{"id":467},"entity.parrot.imitate.ghast":{"id":468},"entity.parrot.imitate.guardian":{"id":469},"entity.parrot.imitate.husk":{"id":470},"entity.parrot.imitate.illusioner":{"id":471},"entity.parrot.imitate.magma_cube":{"id":472},"entity.parrot.imitate.phantom":{"id":473},"entity.parrot.imitate.pillager":{"id":474},"entity.parrot.imitate.ravager":{"id":475},"entity.parrot.imitate.shulker":{"id":476},"entity.parrot.imitate.silverfish":{"id":477},"entity.parrot.imitate.skeleton":{"id":478},"entity.parrot.imitate.slime":{"id":479},"entity.parrot.imitate.spider":{"id":480},"entity.parrot.imitate.stray":{"id":481},"entity.parrot.imitate.vex":{"id":482},"entity.parrot.imitate.vindicator":{"id":483},"entity.parrot.imitate.witch":{"id":484},"entity.parrot.imitate.wither":{"id":485},"entity.parrot.imitate.wither_skeleton":{"id":486},"entity.parrot.imitate.zombie":{"id":487},"entity.parrot.imitate.zombie_villager":{"id":488},"entity.parrot.step":{"id":489},"entity.phantom.ambient":{"id":490},"entity.phantom.bite":{"id":491},"entity.phantom.death":{"id":492},"entity.phantom.flap":{"id":493},"entity.phantom.hurt":{"id":494},"entity.phantom.swoop":{"id":495},"entity.pig.ambient":{"id":496},"entity.pig.death":{"id":497},"entity.pig.hurt":{"id":498},"entity.pig.saddle":{"id":499},"entity.pig.step":{"id":500},"entity.pillager.ambient":{"id":501},"entity.pillager.celebrate":{"id":502},"entity.pillager.death":{"id":503},"entity.pillager.hurt":{"id":504},"block.piston.contract":{"id":505},"block.piston.extend":{"id":506},"entity.player.attack.crit":{"id":507},"entity.player.attack.knockback":{"id":508},"entity.player.attack.nodamage":{"id":509},"entity.player.attack.strong":{"id":510},"entity.player.attack.sweep":{"id":511},"entity.player.attack.weak":{"id":512},"entity.player.big_fall":{"id":513},"entity.player.breath":{"id":514},"entity.player.burp":{"id":515},"entity.player.death":{"id":516},"entity.player.hurt":{"id":517},"entity.player.hurt_drown":{"id":518},"entity.player.hurt_on_fire":{"id":519},"entity.player.hurt_sweet_berry_bush":{"id":520},"entity.player.levelup":{"id":521},"entity.player.small_fall":{"id":522},"entity.player.splash":{"id":523},"entity.player.splash.high_speed":{"id":524},"entity.player.swim":{"id":525},"entity.polar_bear.ambient":{"id":526},"entity.polar_bear.ambient_baby":{"id":527},"entity.polar_bear.death":{"id":528},"entity.polar_bear.hurt":{"id":529},"entity.polar_bear.step":{"id":530},"entity.polar_bear.warning":{"id":531},"block.portal.ambient":{"id":532},"block.portal.travel":{"id":533},"block.portal.trigger":{"id":534},"entity.puffer_fish.ambient":{"id":535},"entity.puffer_fish.blow_out":{"id":536},"entity.puffer_fish.blow_up":{"id":537},"entity.puffer_fish.death":{"id":538},"entity.puffer_fish.flop":{"id":539},"entity.puffer_fish.hurt":{"id":540},"entity.puffer_fish.sting":{"id":541},"block.pumpkin.carve":{"id":542},"entity.rabbit.ambient":{"id":543},"entity.rabbit.attack":{"id":544},"entity.rabbit.death":{"id":545},"entity.rabbit.hurt":{"id":546},"entity.rabbit.jump":{"id":547},"event.raid.horn":{"id":548},"music_disc.11":{"id":549},"music_disc.13":{"id":550},"music_disc.blocks":{"id":551},"music_disc.cat":{"id":552},"music_disc.chirp":{"id":553},"music_disc.far":{"id":554},"music_disc.mall":{"id":555},"music_disc.mellohi":{"id":556},"music_disc.stal":{"id":557},"music_disc.strad":{"id":558},"music_disc.wait":{"id":559},"music_disc.ward":{"id":560},"block.redstone_torch.burnout":{"id":561},"entity.salmon.ambient":{"id":562},"entity.salmon.death":{"id":563},"entity.salmon.flop":{"id":564},"entity.salmon.hurt":{"id":565},"block.sand.break":{"id":566},"block.sand.fall":{"id":567},"block.sand.hit":{"id":568},"block.sand.place":{"id":569},"block.sand.step":{"id":570},"block.scaffolding.break":{"id":571},"block.scaffolding.fall":{"id":572},"block.scaffolding.hit":{"id":573},"block.scaffolding.place":{"id":574},"block.scaffolding.step":{"id":575},"entity.sheep.ambient":{"id":576},"entity.sheep.death":{"id":577},"entity.sheep.hurt":{"id":578},"entity.sheep.shear":{"id":579},"entity.sheep.step":{"id":580},"item.shield.block":{"id":581},"item.shield.break":{"id":582},"item.shovel.flatten":{"id":583},"entity.shulker.ambient":{"id":584},"block.shulker_box.close":{"id":585},"block.shulker_box.open":{"id":586},"entity.shulker_bullet.hit":{"id":587},"entity.shulker_bullet.hurt":{"id":588},"entity.shulker.close":{"id":589},"entity.shulker.death":{"id":590},"entity.shulker.hurt":{"id":591},"entity.shulker.hurt_closed":{"id":592},"entity.shulker.open":{"id":593},"entity.shulker.shoot":{"id":594},"entity.shulker.teleport":{"id":595},"entity.silverfish.ambient":{"id":596},"entity.silverfish.death":{"id":597},"entity.silverfish.hurt":{"id":598},"entity.silverfish.step":{"id":599},"entity.skeleton.ambient":{"id":600},"entity.skeleton.death":{"id":601},"entity.skeleton_horse.ambient":{"id":602},"entity.skeleton_horse.death":{"id":603},"entity.skeleton_horse.hurt":{"id":604},"entity.skeleton_horse.swim":{"id":605},"entity.skeleton_horse.ambient_water":{"id":606},"entity.skeleton_horse.gallop_water":{"id":607},"entity.skeleton_horse.jump_water":{"id":608},"entity.skeleton_horse.step_water":{"id":609},"entity.skeleton.hurt":{"id":610},"entity.skeleton.shoot":{"id":611},"entity.skeleton.step":{"id":612},"entity.slime.attack":{"id":613},"entity.slime.death":{"id":614},"entity.slime.hurt":{"id":615},"entity.slime.jump":{"id":616},"entity.slime.squish":{"id":617},"block.slime_block.break":{"id":618},"block.slime_block.fall":{"id":619},"block.slime_block.hit":{"id":620},"block.slime_block.place":{"id":621},"block.slime_block.step":{"id":622},"entity.magma_cube.death_small":{"id":623},"entity.magma_cube.hurt_small":{"id":624},"entity.magma_cube.squish_small":{"id":625},"entity.slime.death_small":{"id":626},"entity.slime.hurt_small":{"id":627},"entity.slime.jump_small":{"id":628},"entity.slime.squish_small":{"id":629},"block.smoker.smoke":{"id":630},"entity.snowball.throw":{"id":631},"block.snow.break":{"id":632},"block.snow.fall":{"id":633},"entity.snow_golem.ambient":{"id":634},"entity.snow_golem.death":{"id":635},"entity.snow_golem.hurt":{"id":636},"entity.snow_golem.shoot":{"id":637},"block.snow.hit":{"id":638},"block.snow.place":{"id":639},"block.snow.step":{"id":640},"entity.spider.ambient":{"id":641},"entity.spider.death":{"id":642},"entity.spider.hurt":{"id":643},"entity.spider.step":{"id":644},"entity.splash_potion.break":{"id":645},"entity.splash_potion.throw":{"id":646},"entity.squid.ambient":{"id":647},"entity.squid.death":{"id":648},"entity.squid.hurt":{"id":649},"entity.squid.squirt":{"id":650},"block.stone.break":{"id":651},"block.stone_button.click_off":{"id":652},"block.stone_button.click_on":{"id":653},"block.stone.fall":{"id":654},"block.stone.hit":{"id":655},"block.stone.place":{"id":656},"block.stone_pressure_plate.click_off":{"id":657},"block.stone_pressure_plate.click_on":{"id":658},"block.stone.step":{"id":659},"entity.stray.ambient":{"id":660},"entity.stray.death":{"id":661},"entity.stray.hurt":{"id":662},"entity.stray.step":{"id":663},"block.sweet_berry_bush.break":{"id":664},"block.sweet_berry_bush.place":{"id":665},"item.sweet_berries.pick_from_bush":{"id":666},"enchant.thorns.hit":{"id":667},"entity.tnt.primed":{"id":668},"item.totem.use":{"id":669},"item.trident.hit":{"id":670},"item.trident.hit_ground":{"id":671},"item.trident.return":{"id":672},"item.trident.riptide_1":{"id":673},"item.trident.riptide_2":{"id":674},"item.trident.riptide_3":{"id":675},"item.trident.throw":{"id":676},"item.trident.thunder":{"id":677},"block.tripwire.attach":{"id":678},"block.tripwire.click_off":{"id":679},"block.tripwire.click_on":{"id":680},"block.tripwire.detach":{"id":681},"entity.tropical_fish.ambient":{"id":682},"entity.tropical_fish.death":{"id":683},"entity.tropical_fish.flop":{"id":684},"entity.tropical_fish.hurt":{"id":685},"entity.turtle.ambient_land":{"id":686},"entity.turtle.death":{"id":687},"entity.turtle.death_baby":{"id":688},"entity.turtle.egg_break":{"id":689},"entity.turtle.egg_crack":{"id":690},"entity.turtle.egg_hatch":{"id":691},"entity.turtle.hurt":{"id":692},"entity.turtle.hurt_baby":{"id":693},"entity.turtle.lay_egg":{"id":694},"entity.turtle.shamble":{"id":695},"entity.turtle.shamble_baby":{"id":696},"entity.turtle.swim":{"id":697},"ui.button.click":{"id":698},"ui.loom.select_pattern":{"id":699},"ui.loom.take_result":{"id":700},"ui.cartography_table.take_result":{"id":701},"ui.stonecutter.take_result":{"id":702},"ui.stonecutter.select_recipe":{"id":703},"ui.toast.challenge_complete":{"id":704},"ui.toast.in":{"id":705},"ui.toast.out":{"id":706},"entity.vex.ambient":{"id":707},"entity.vex.charge":{"id":708},"entity.vex.death":{"id":709},"entity.vex.hurt":{"id":710},"entity.villager.ambient":{"id":711},"entity.villager.celebrate":{"id":712},"entity.villager.death":{"id":713},"entity.villager.hurt":{"id":714},"entity.villager.no":{"id":715},"entity.villager.trade":{"id":716},"entity.villager.yes":{"id":717},"entity.villager.work_armorer":{"id":718},"entity.villager.work_butcher":{"id":719},"entity.villager.work_cartographer":{"id":720},"entity.villager.work_cleric":{"id":721},"entity.villager.work_farmer":{"id":722},"entity.villager.work_fisherman":{"id":723},"entity.villager.work_fletcher":{"id":724},"entity.villager.work_leatherworker":{"id":725},"entity.villager.work_librarian":{"id":726},"entity.villager.work_mason":{"id":727},"entity.villager.work_shepherd":{"id":728},"entity.villager.work_toolsmith":{"id":729},"entity.villager.work_weaponsmith":{"id":730},"entity.vindicator.ambient":{"id":731},"entity.vindicator.celebrate":{"id":732},"entity.vindicator.death":{"id":733},"entity.vindicator.hurt":{"id":734},"block.lily_pad.place":{"id":735},"entity.wandering_trader.ambient":{"id":736},"entity.wandering_trader.death":{"id":737},"entity.wandering_trader.disappeared":{"id":738},"entity.wandering_trader.drink_milk":{"id":739},"entity.wandering_trader.drink_potion":{"id":740},"entity.wandering_trader.hurt":{"id":741},"entity.wandering_trader.no":{"id":742},"entity.wandering_trader.reappeared":{"id":743},"entity.wandering_trader.trade":{"id":744},"entity.wandering_trader.yes":{"id":745},"block.water.ambient":{"id":746},"weather.rain":{"id":747},"weather.rain.above":{"id":748},"entity.witch.ambient":{"id":749},"entity.witch.celebrate":{"id":750},"entity.witch.death":{"id":751},"entity.witch.drink":{"id":752},"entity.witch.hurt":{"id":753},"entity.witch.throw":{"id":754},"entity.wither.ambient":{"id":755},"entity.wither.break_block":{"id":756},"entity.wither.death":{"id":757},"entity.wither.hurt":{"id":758},"entity.wither.shoot":{"id":759},"entity.wither_skeleton.ambient":{"id":760},"entity.wither_skeleton.death":{"id":761},"entity.wither_skeleton.hurt":{"id":762},"entity.wither_skeleton.step":{"id":763},"entity.wither.spawn":{"id":764},"entity.wolf.ambient":{"id":765},"entity.wolf.death":{"id":766},"entity.wolf.growl":{"id":767},"entity.wolf.howl":{"id":768},"entity.wolf.hurt":{"id":769},"entity.wolf.pant":{"id":770},"entity.wolf.shake":{"id":771},"entity.wolf.step":{"id":772},"entity.wolf.whine":{"id":773},"block.wooden_door.close":{"id":774},"block.wooden_door.open":{"id":775},"block.wooden_trapdoor.close":{"id":776},"block.wooden_trapdoor.open":{"id":777},"block.wood.break":{"id":778},"block.wooden_button.click_off":{"id":779},"block.wooden_button.click_on":{"id":780},"block.wood.fall":{"id":781},"block.wood.hit":{"id":782},"block.wood.place":{"id":783},"block.wooden_pressure_plate.click_off":{"id":784},"block.wooden_pressure_plate.click_on":{"id":785},"block.wood.step":{"id":786},"entity.zombie.ambient":{"id":787},"entity.zombie.attack_wooden_door":{"id":788},"entity.zombie.attack_iron_door":{"id":789},"entity.zombie.break_wooden_door":{"id":790},"entity.zombie.converted_to_drowned":{"id":791},"entity.zombie.death":{"id":792},"entity.zombie.destroy_egg":{"id":793},"entity.zombie_horse.ambient":{"id":794},"entity.zombie_horse.death":{"id":795},"entity.zombie_horse.hurt":{"id":796},"entity.zombie.hurt":{"id":797},"entity.zombie.infect":{"id":798},"entity.zombie_pigman.ambient":{"id":799},"entity.zombie_pigman.angry":{"id":800},"entity.zombie_pigman.death":{"id":801},"entity.zombie_pigman.hurt":{"id":802},"entity.zombie.step":{"id":803},"entity.zombie_villager.ambient":{"id":804},"entity.zombie_villager.converted":{"id":805},"entity.zombie_villager.cure":{"id":806},"entity.zombie_villager.death":{"id":807},"entity.zombie_villager.hurt":{"id":808},"entity.zombie_villager.step":{"id":809}}},"fluid":{"default":"empty","id":1,"entries":{"empty":{"id":0},"flowing_water":{"id":1},"water":{"id":2},"flowing_lava":{"id":3},"lava":{"id":4}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611},"conduit":{"id":612},"bamboo_sapling":{"id":613},"bamboo":{"id":614},"potted_bamboo":{"id":615},"void_air":{"id":616},"cave_air":{"id":617},"bubble_column":{"id":618},"polished_granite_stairs":{"id":619},"smooth_red_sandstone_stairs":{"id":620},"mossy_stone_brick_stairs":{"id":621},"polished_diorite_stairs":{"id":622},"mossy_cobblestone_stairs":{"id":623},"end_stone_brick_stairs":{"id":624},"stone_stairs":{"id":625},"smooth_sandstone_stairs":{"id":626},"smooth_quartz_stairs":{"id":627},"granite_stairs":{"id":628},"andesite_stairs":{"id":629},"red_nether_brick_stairs":{"id":630},"polished_andesite_stairs":{"id":631},"diorite_stairs":{"id":632},"polished_granite_slab":{"id":633},"smooth_red_sandstone_slab":{"id":634},"mossy_stone_brick_slab":{"id":635},"polished_diorite_slab":{"id":636},"mossy_cobblestone_slab":{"id":637},"end_stone_brick_slab":{"id":638},"smooth_sandstone_slab":{"id":639},"smooth_quartz_slab":{"id":640},"granite_slab":{"id":641},"andesite_slab":{"id":642},"red_nether_brick_slab":{"id":643},"polished_andesite_slab":{"id":644},"diorite_slab":{"id":645},"brick_wall":{"id":646},"prismarine_wall":{"id":647},"red_sandstone_wall":{"id":648},"mossy_stone_brick_wall":{"id":649},"granite_wall":{"id":650},"stone_brick_wall":{"id":651},"nether_brick_wall":{"id":652},"andesite_wall":{"id":653},"red_nether_brick_wall":{"id":654},"sandstone_wall":{"id":655},"end_stone_brick_wall":{"id":656},"diorite_wall":{"id":657},"scaffolding":{"id":658},"loom":{"id":659},"barrel":{"id":660},"smoker":{"id":661},"blast_furnace":{"id":662},"cartography_table":{"id":663},"fletching_table":{"id":664},"grindstone":{"id":665},"lectern":{"id":666},"smithing_table":{"id":667},"stonecutter":{"id":668},"bell":{"id":669},"lantern":{"id":670},"campfire":{"id":671},"sweet_berry_bush":{"id":672},"structure_block":{"id":673},"jigsaw":{"id":674},"composter":{"id":675},"bee_nest":{"id":676},"beehive":{"id":677},"honey_block":{"id":678},"honeycomb_block":{"id":679}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"entity_type":{"default":"pig","id":5,"entries":{"area_effect_cloud":{"id":0},"armor_stand":{"id":1},"arrow":{"id":2},"bat":{"id":3},"bee":{"id":4},"blaze":{"id":5},"boat":{"id":6},"cat":{"id":7},"cave_spider":{"id":8},"chicken":{"id":9},"cod":{"id":10},"cow":{"id":11},"creeper":{"id":12},"donkey":{"id":13},"dolphin":{"id":14},"dragon_fireball":{"id":15},"drowned":{"id":16},"elder_guardian":{"id":17},"end_crystal":{"id":18},"ender_dragon":{"id":19},"enderman":{"id":20},"endermite":{"id":21},"evoker_fangs":{"id":22},"evoker":{"id":23},"experience_orb":{"id":24},"eye_of_ender":{"id":25},"falling_block":{"id":26},"firework_rocket":{"id":27},"fox":{"id":28},"ghast":{"id":29},"giant":{"id":30},"guardian":{"id":31},"horse":{"id":32},"husk":{"id":33},"illusioner":{"id":34},"item":{"id":35},"item_frame":{"id":36},"fireball":{"id":37},"leash_knot":{"id":38},"llama":{"id":39},"llama_spit":{"id":40},"magma_cube":{"id":41},"minecart":{"id":42},"chest_minecart":{"id":43},"command_block_minecart":{"id":44},"furnace_minecart":{"id":45},"hopper_minecart":{"id":46},"spawner_minecart":{"id":47},"tnt_minecart":{"id":48},"mule":{"id":49},"mooshroom":{"id":50},"ocelot":{"id":51},"painting":{"id":52},"panda":{"id":53},"parrot":{"id":54},"pig":{"id":55},"pufferfish":{"id":56},"zombie_pigman":{"id":57},"polar_bear":{"id":58},"tnt":{"id":59},"rabbit":{"id":60},"salmon":{"id":61},"sheep":{"id":62},"shulker":{"id":63},"shulker_bullet":{"id":64},"silverfish":{"id":65},"skeleton":{"id":66},"skeleton_horse":{"id":67},"slime":{"id":68},"small_fireball":{"id":69},"snow_golem":{"id":70},"snowball":{"id":71},"spectral_arrow":{"id":72},"spider":{"id":73},"squid":{"id":74},"stray":{"id":75},"trader_llama":{"id":76},"tropical_fish":{"id":77},"turtle":{"id":78},"egg":{"id":79},"ender_pearl":{"id":80},"experience_bottle":{"id":81},"potion":{"id":82},"trident":{"id":83},"vex":{"id":84},"villager":{"id":85},"iron_golem":{"id":86},"vindicator":{"id":87},"pillager":{"id":88},"wandering_trader":{"id":89},"witch":{"id":90},"wither":{"id":91},"wither_skeleton":{"id":92},"wither_skull":{"id":93},"wolf":{"id":94},"zombie":{"id":95},"zombie_horse":{"id":96},"zombie_villager":{"id":97},"phantom":{"id":98},"ravager":{"id":99},"lightning_bolt":{"id":100},"player":{"id":101},"fishing_bobber":{"id":102}}},"item":{"default":"air","id":6,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"cornflower":{"id":108},"lily_of_the_valley":{"id":109},"wither_rose":{"id":110},"brown_mushroom":{"id":111},"red_mushroom":{"id":112},"gold_block":{"id":113},"iron_block":{"id":114},"oak_slab":{"id":115},"spruce_slab":{"id":116},"birch_slab":{"id":117},"jungle_slab":{"id":118},"acacia_slab":{"id":119},"dark_oak_slab":{"id":120},"stone_slab":{"id":121},"smooth_stone_slab":{"id":122},"sandstone_slab":{"id":123},"cut_sandstone_slab":{"id":124},"petrified_oak_slab":{"id":125},"cobblestone_slab":{"id":126},"brick_slab":{"id":127},"stone_brick_slab":{"id":128},"nether_brick_slab":{"id":129},"quartz_slab":{"id":130},"red_sandstone_slab":{"id":131},"cut_red_sandstone_slab":{"id":132},"purpur_slab":{"id":133},"prismarine_slab":{"id":134},"prismarine_brick_slab":{"id":135},"dark_prismarine_slab":{"id":136},"smooth_quartz":{"id":137},"smooth_red_sandstone":{"id":138},"smooth_sandstone":{"id":139},"smooth_stone":{"id":140},"bricks":{"id":141},"tnt":{"id":142},"bookshelf":{"id":143},"mossy_cobblestone":{"id":144},"obsidian":{"id":145},"torch":{"id":146},"end_rod":{"id":147},"chorus_plant":{"id":148},"chorus_flower":{"id":149},"purpur_block":{"id":150},"purpur_pillar":{"id":151},"purpur_stairs":{"id":152},"spawner":{"id":153},"oak_stairs":{"id":154},"chest":{"id":155},"diamond_ore":{"id":156},"diamond_block":{"id":157},"crafting_table":{"id":158},"farmland":{"id":159},"furnace":{"id":160},"ladder":{"id":161},"rail":{"id":162},"cobblestone_stairs":{"id":163},"lever":{"id":164},"stone_pressure_plate":{"id":165},"oak_pressure_plate":{"id":166},"spruce_pressure_plate":{"id":167},"birch_pressure_plate":{"id":168},"jungle_pressure_plate":{"id":169},"acacia_pressure_plate":{"id":170},"dark_oak_pressure_plate":{"id":171},"redstone_ore":{"id":172},"redstone_torch":{"id":173},"stone_button":{"id":174},"snow":{"id":175},"ice":{"id":176},"snow_block":{"id":177},"cactus":{"id":178},"clay":{"id":179},"jukebox":{"id":180},"oak_fence":{"id":181},"spruce_fence":{"id":182},"birch_fence":{"id":183},"jungle_fence":{"id":184},"acacia_fence":{"id":185},"dark_oak_fence":{"id":186},"pumpkin":{"id":187},"carved_pumpkin":{"id":188},"netherrack":{"id":189},"soul_sand":{"id":190},"glowstone":{"id":191},"jack_o_lantern":{"id":192},"oak_trapdoor":{"id":193},"spruce_trapdoor":{"id":194},"birch_trapdoor":{"id":195},"jungle_trapdoor":{"id":196},"acacia_trapdoor":{"id":197},"dark_oak_trapdoor":{"id":198},"infested_stone":{"id":199},"infested_cobblestone":{"id":200},"infested_stone_bricks":{"id":201},"infested_mossy_stone_bricks":{"id":202},"infested_cracked_stone_bricks":{"id":203},"infested_chiseled_stone_bricks":{"id":204},"stone_bricks":{"id":205},"mossy_stone_bricks":{"id":206},"cracked_stone_bricks":{"id":207},"chiseled_stone_bricks":{"id":208},"brown_mushroom_block":{"id":209},"red_mushroom_block":{"id":210},"mushroom_stem":{"id":211},"iron_bars":{"id":212},"glass_pane":{"id":213},"melon":{"id":214},"vine":{"id":215},"oak_fence_gate":{"id":216},"spruce_fence_gate":{"id":217},"birch_fence_gate":{"id":218},"jungle_fence_gate":{"id":219},"acacia_fence_gate":{"id":220},"dark_oak_fence_gate":{"id":221},"brick_stairs":{"id":222},"stone_brick_stairs":{"id":223},"mycelium":{"id":224},"lily_pad":{"id":225},"nether_bricks":{"id":226},"nether_brick_fence":{"id":227},"nether_brick_stairs":{"id":228},"enchanting_table":{"id":229},"end_portal_frame":{"id":230},"end_stone":{"id":231},"end_stone_bricks":{"id":232},"dragon_egg":{"id":233},"redstone_lamp":{"id":234},"sandstone_stairs":{"id":235},"emerald_ore":{"id":236},"ender_chest":{"id":237},"tripwire_hook":{"id":238},"emerald_block":{"id":239},"spruce_stairs":{"id":240},"birch_stairs":{"id":241},"jungle_stairs":{"id":242},"command_block":{"id":243},"beacon":{"id":244},"cobblestone_wall":{"id":245},"mossy_cobblestone_wall":{"id":246},"brick_wall":{"id":247},"prismarine_wall":{"id":248},"red_sandstone_wall":{"id":249},"mossy_stone_brick_wall":{"id":250},"granite_wall":{"id":251},"stone_brick_wall":{"id":252},"nether_brick_wall":{"id":253},"andesite_wall":{"id":254},"red_nether_brick_wall":{"id":255},"sandstone_wall":{"id":256},"end_stone_brick_wall":{"id":257},"diorite_wall":{"id":258},"oak_button":{"id":259},"spruce_button":{"id":260},"birch_button":{"id":261},"jungle_button":{"id":262},"acacia_button":{"id":263},"dark_oak_button":{"id":264},"anvil":{"id":265},"chipped_anvil":{"id":266},"damaged_anvil":{"id":267},"trapped_chest":{"id":268},"light_weighted_pressure_plate":{"id":269},"heavy_weighted_pressure_plate":{"id":270},"daylight_detector":{"id":271},"redstone_block":{"id":272},"nether_quartz_ore":{"id":273},"hopper":{"id":274},"chiseled_quartz_block":{"id":275},"quartz_block":{"id":276},"quartz_pillar":{"id":277},"quartz_stairs":{"id":278},"activator_rail":{"id":279},"dropper":{"id":280},"white_terracotta":{"id":281},"orange_terracotta":{"id":282},"magenta_terracotta":{"id":283},"light_blue_terracotta":{"id":284},"yellow_terracotta":{"id":285},"lime_terracotta":{"id":286},"pink_terracotta":{"id":287},"gray_terracotta":{"id":288},"light_gray_terracotta":{"id":289},"cyan_terracotta":{"id":290},"purple_terracotta":{"id":291},"blue_terracotta":{"id":292},"brown_terracotta":{"id":293},"green_terracotta":{"id":294},"red_terracotta":{"id":295},"black_terracotta":{"id":296},"barrier":{"id":297},"iron_trapdoor":{"id":298},"hay_block":{"id":299},"white_carpet":{"id":300},"orange_carpet":{"id":301},"magenta_carpet":{"id":302},"light_blue_carpet":{"id":303},"yellow_carpet":{"id":304},"lime_carpet":{"id":305},"pink_carpet":{"id":306},"gray_carpet":{"id":307},"light_gray_carpet":{"id":308},"cyan_carpet":{"id":309},"purple_carpet":{"id":310},"blue_carpet":{"id":311},"brown_carpet":{"id":312},"green_carpet":{"id":313},"red_carpet":{"id":314},"black_carpet":{"id":315},"terracotta":{"id":316},"coal_block":{"id":317},"packed_ice":{"id":318},"acacia_stairs":{"id":319},"dark_oak_stairs":{"id":320},"slime_block":{"id":321},"grass_path":{"id":322},"sunflower":{"id":323},"lilac":{"id":324},"rose_bush":{"id":325},"peony":{"id":326},"tall_grass":{"id":327},"large_fern":{"id":328},"white_stained_glass":{"id":329},"orange_stained_glass":{"id":330},"magenta_stained_glass":{"id":331},"light_blue_stained_glass":{"id":332},"yellow_stained_glass":{"id":333},"lime_stained_glass":{"id":334},"pink_stained_glass":{"id":335},"gray_stained_glass":{"id":336},"light_gray_stained_glass":{"id":337},"cyan_stained_glass":{"id":338},"purple_stained_glass":{"id":339},"blue_stained_glass":{"id":340},"brown_stained_glass":{"id":341},"green_stained_glass":{"id":342},"red_stained_glass":{"id":343},"black_stained_glass":{"id":344},"white_stained_glass_pane":{"id":345},"orange_stained_glass_pane":{"id":346},"magenta_stained_glass_pane":{"id":347},"light_blue_stained_glass_pane":{"id":348},"yellow_stained_glass_pane":{"id":349},"lime_stained_glass_pane":{"id":350},"pink_stained_glass_pane":{"id":351},"gray_stained_glass_pane":{"id":352},"light_gray_stained_glass_pane":{"id":353},"cyan_stained_glass_pane":{"id":354},"purple_stained_glass_pane":{"id":355},"blue_stained_glass_pane":{"id":356},"brown_stained_glass_pane":{"id":357},"green_stained_glass_pane":{"id":358},"red_stained_glass_pane":{"id":359},"black_stained_glass_pane":{"id":360},"prismarine":{"id":361},"prismarine_bricks":{"id":362},"dark_prismarine":{"id":363},"prismarine_stairs":{"id":364},"prismarine_brick_stairs":{"id":365},"dark_prismarine_stairs":{"id":366},"sea_lantern":{"id":367},"red_sandstone":{"id":368},"chiseled_red_sandstone":{"id":369},"cut_red_sandstone":{"id":370},"red_sandstone_stairs":{"id":371},"repeating_command_block":{"id":372},"chain_command_block":{"id":373},"magma_block":{"id":374},"nether_wart_block":{"id":375},"red_nether_bricks":{"id":376},"bone_block":{"id":377},"structure_void":{"id":378},"observer":{"id":379},"shulker_box":{"id":380},"white_shulker_box":{"id":381},"orange_shulker_box":{"id":382},"magenta_shulker_box":{"id":383},"light_blue_shulker_box":{"id":384},"yellow_shulker_box":{"id":385},"lime_shulker_box":{"id":386},"pink_shulker_box":{"id":387},"gray_shulker_box":{"id":388},"light_gray_shulker_box":{"id":389},"cyan_shulker_box":{"id":390},"purple_shulker_box":{"id":391},"blue_shulker_box":{"id":392},"brown_shulker_box":{"id":393},"green_shulker_box":{"id":394},"red_shulker_box":{"id":395},"black_shulker_box":{"id":396},"white_glazed_terracotta":{"id":397},"orange_glazed_terracotta":{"id":398},"magenta_glazed_terracotta":{"id":399},"light_blue_glazed_terracotta":{"id":400},"yellow_glazed_terracotta":{"id":401},"lime_glazed_terracotta":{"id":402},"pink_glazed_terracotta":{"id":403},"gray_glazed_terracotta":{"id":404},"light_gray_glazed_terracotta":{"id":405},"cyan_glazed_terracotta":{"id":406},"purple_glazed_terracotta":{"id":407},"blue_glazed_terracotta":{"id":408},"brown_glazed_terracotta":{"id":409},"green_glazed_terracotta":{"id":410},"red_glazed_terracotta":{"id":411},"black_glazed_terracotta":{"id":412},"white_concrete":{"id":413},"orange_concrete":{"id":414},"magenta_concrete":{"id":415},"light_blue_concrete":{"id":416},"yellow_concrete":{"id":417},"lime_concrete":{"id":418},"pink_concrete":{"id":419},"gray_concrete":{"id":420},"light_gray_concrete":{"id":421},"cyan_concrete":{"id":422},"purple_concrete":{"id":423},"blue_concrete":{"id":424},"brown_concrete":{"id":425},"green_concrete":{"id":426},"red_concrete":{"id":427},"black_concrete":{"id":428},"white_concrete_powder":{"id":429},"orange_concrete_powder":{"id":430},"magenta_concrete_powder":{"id":431},"light_blue_concrete_powder":{"id":432},"yellow_concrete_powder":{"id":433},"lime_concrete_powder":{"id":434},"pink_concrete_powder":{"id":435},"gray_concrete_powder":{"id":436},"light_gray_concrete_powder":{"id":437},"cyan_concrete_powder":{"id":438},"purple_concrete_powder":{"id":439},"blue_concrete_powder":{"id":440},"brown_concrete_powder":{"id":441},"green_concrete_powder":{"id":442},"red_concrete_powder":{"id":443},"black_concrete_powder":{"id":444},"turtle_egg":{"id":445},"dead_tube_coral_block":{"id":446},"dead_brain_coral_block":{"id":447},"dead_bubble_coral_block":{"id":448},"dead_fire_coral_block":{"id":449},"dead_horn_coral_block":{"id":450},"tube_coral_block":{"id":451},"brain_coral_block":{"id":452},"bubble_coral_block":{"id":453},"fire_coral_block":{"id":454},"horn_coral_block":{"id":455},"tube_coral":{"id":456},"brain_coral":{"id":457},"bubble_coral":{"id":458},"fire_coral":{"id":459},"horn_coral":{"id":460},"dead_brain_coral":{"id":461},"dead_bubble_coral":{"id":462},"dead_fire_coral":{"id":463},"dead_horn_coral":{"id":464},"dead_tube_coral":{"id":465},"tube_coral_fan":{"id":466},"brain_coral_fan":{"id":467},"bubble_coral_fan":{"id":468},"fire_coral_fan":{"id":469},"horn_coral_fan":{"id":470},"dead_tube_coral_fan":{"id":471},"dead_brain_coral_fan":{"id":472},"dead_bubble_coral_fan":{"id":473},"dead_fire_coral_fan":{"id":474},"dead_horn_coral_fan":{"id":475},"blue_ice":{"id":476},"conduit":{"id":477},"polished_granite_stairs":{"id":478},"smooth_red_sandstone_stairs":{"id":479},"mossy_stone_brick_stairs":{"id":480},"polished_diorite_stairs":{"id":481},"mossy_cobblestone_stairs":{"id":482},"end_stone_brick_stairs":{"id":483},"stone_stairs":{"id":484},"smooth_sandstone_stairs":{"id":485},"smooth_quartz_stairs":{"id":486},"granite_stairs":{"id":487},"andesite_stairs":{"id":488},"red_nether_brick_stairs":{"id":489},"polished_andesite_stairs":{"id":490},"diorite_stairs":{"id":491},"polished_granite_slab":{"id":492},"smooth_red_sandstone_slab":{"id":493},"mossy_stone_brick_slab":{"id":494},"polished_diorite_slab":{"id":495},"mossy_cobblestone_slab":{"id":496},"end_stone_brick_slab":{"id":497},"smooth_sandstone_slab":{"id":498},"smooth_quartz_slab":{"id":499},"granite_slab":{"id":500},"andesite_slab":{"id":501},"red_nether_brick_slab":{"id":502},"polished_andesite_slab":{"id":503},"diorite_slab":{"id":504},"scaffolding":{"id":505},"iron_door":{"id":506},"oak_door":{"id":507},"spruce_door":{"id":508},"birch_door":{"id":509},"jungle_door":{"id":510},"acacia_door":{"id":511},"dark_oak_door":{"id":512},"repeater":{"id":513},"comparator":{"id":514},"structure_block":{"id":515},"jigsaw":{"id":516},"composter":{"id":517},"turtle_helmet":{"id":518},"scute":{"id":519},"iron_shovel":{"id":520},"iron_pickaxe":{"id":521},"iron_axe":{"id":522},"flint_and_steel":{"id":523},"apple":{"id":524},"bow":{"id":525},"arrow":{"id":526},"coal":{"id":527},"charcoal":{"id":528},"diamond":{"id":529},"iron_ingot":{"id":530},"gold_ingot":{"id":531},"iron_sword":{"id":532},"wooden_sword":{"id":533},"wooden_shovel":{"id":534},"wooden_pickaxe":{"id":535},"wooden_axe":{"id":536},"stone_sword":{"id":537},"stone_shovel":{"id":538},"stone_pickaxe":{"id":539},"stone_axe":{"id":540},"diamond_sword":{"id":541},"diamond_shovel":{"id":542},"diamond_pickaxe":{"id":543},"diamond_axe":{"id":544},"stick":{"id":545},"bowl":{"id":546},"mushroom_stew":{"id":547},"golden_sword":{"id":548},"golden_shovel":{"id":549},"golden_pickaxe":{"id":550},"golden_axe":{"id":551},"string":{"id":552},"feather":{"id":553},"gunpowder":{"id":554},"wooden_hoe":{"id":555},"stone_hoe":{"id":556},"iron_hoe":{"id":557},"diamond_hoe":{"id":558},"golden_hoe":{"id":559},"wheat_seeds":{"id":560},"wheat":{"id":561},"bread":{"id":562},"leather_helmet":{"id":563},"leather_chestplate":{"id":564},"leather_leggings":{"id":565},"leather_boots":{"id":566},"chainmail_helmet":{"id":567},"chainmail_chestplate":{"id":568},"chainmail_leggings":{"id":569},"chainmail_boots":{"id":570},"iron_helmet":{"id":571},"iron_chestplate":{"id":572},"iron_leggings":{"id":573},"iron_boots":{"id":574},"diamond_helmet":{"id":575},"diamond_chestplate":{"id":576},"diamond_leggings":{"id":577},"diamond_boots":{"id":578},"golden_helmet":{"id":579},"golden_chestplate":{"id":580},"golden_leggings":{"id":581},"golden_boots":{"id":582},"flint":{"id":583},"porkchop":{"id":584},"cooked_porkchop":{"id":585},"painting":{"id":586},"golden_apple":{"id":587},"enchanted_golden_apple":{"id":588},"oak_sign":{"id":589},"spruce_sign":{"id":590},"birch_sign":{"id":591},"jungle_sign":{"id":592},"acacia_sign":{"id":593},"dark_oak_sign":{"id":594},"bucket":{"id":595},"water_bucket":{"id":596},"lava_bucket":{"id":597},"minecart":{"id":598},"saddle":{"id":599},"redstone":{"id":600},"snowball":{"id":601},"oak_boat":{"id":602},"leather":{"id":603},"milk_bucket":{"id":604},"pufferfish_bucket":{"id":605},"salmon_bucket":{"id":606},"cod_bucket":{"id":607},"tropical_fish_bucket":{"id":608},"brick":{"id":609},"clay_ball":{"id":610},"sugar_cane":{"id":611},"kelp":{"id":612},"dried_kelp_block":{"id":613},"bamboo":{"id":614},"paper":{"id":615},"book":{"id":616},"slime_ball":{"id":617},"chest_minecart":{"id":618},"furnace_minecart":{"id":619},"egg":{"id":620},"compass":{"id":621},"fishing_rod":{"id":622},"clock":{"id":623},"glowstone_dust":{"id":624},"cod":{"id":625},"salmon":{"id":626},"tropical_fish":{"id":627},"pufferfish":{"id":628},"cooked_cod":{"id":629},"cooked_salmon":{"id":630},"ink_sac":{"id":631},"red_dye":{"id":632},"green_dye":{"id":633},"cocoa_beans":{"id":634},"lapis_lazuli":{"id":635},"purple_dye":{"id":636},"cyan_dye":{"id":637},"light_gray_dye":{"id":638},"gray_dye":{"id":639},"pink_dye":{"id":640},"lime_dye":{"id":641},"yellow_dye":{"id":642},"light_blue_dye":{"id":643},"magenta_dye":{"id":644},"orange_dye":{"id":645},"bone_meal":{"id":646},"blue_dye":{"id":647},"brown_dye":{"id":648},"black_dye":{"id":649},"white_dye":{"id":650},"bone":{"id":651},"sugar":{"id":652},"cake":{"id":653},"white_bed":{"id":654},"orange_bed":{"id":655},"magenta_bed":{"id":656},"light_blue_bed":{"id":657},"yellow_bed":{"id":658},"lime_bed":{"id":659},"pink_bed":{"id":660},"gray_bed":{"id":661},"light_gray_bed":{"id":662},"cyan_bed":{"id":663},"purple_bed":{"id":664},"blue_bed":{"id":665},"brown_bed":{"id":666},"green_bed":{"id":667},"red_bed":{"id":668},"black_bed":{"id":669},"cookie":{"id":670},"filled_map":{"id":671},"shears":{"id":672},"melon_slice":{"id":673},"dried_kelp":{"id":674},"pumpkin_seeds":{"id":675},"melon_seeds":{"id":676},"beef":{"id":677},"cooked_beef":{"id":678},"chicken":{"id":679},"cooked_chicken":{"id":680},"rotten_flesh":{"id":681},"ender_pearl":{"id":682},"blaze_rod":{"id":683},"ghast_tear":{"id":684},"gold_nugget":{"id":685},"nether_wart":{"id":686},"potion":{"id":687},"glass_bottle":{"id":688},"spider_eye":{"id":689},"fermented_spider_eye":{"id":690},"blaze_powder":{"id":691},"magma_cream":{"id":692},"brewing_stand":{"id":693},"cauldron":{"id":694},"ender_eye":{"id":695},"glistering_melon_slice":{"id":696},"bat_spawn_egg":{"id":697},"bee_spawn_egg":{"id":698},"blaze_spawn_egg":{"id":699},"cat_spawn_egg":{"id":700},"cave_spider_spawn_egg":{"id":701},"chicken_spawn_egg":{"id":702},"cod_spawn_egg":{"id":703},"cow_spawn_egg":{"id":704},"creeper_spawn_egg":{"id":705},"dolphin_spawn_egg":{"id":706},"donkey_spawn_egg":{"id":707},"drowned_spawn_egg":{"id":708},"elder_guardian_spawn_egg":{"id":709},"enderman_spawn_egg":{"id":710},"endermite_spawn_egg":{"id":711},"evoker_spawn_egg":{"id":712},"fox_spawn_egg":{"id":713},"ghast_spawn_egg":{"id":714},"guardian_spawn_egg":{"id":715},"horse_spawn_egg":{"id":716},"husk_spawn_egg":{"id":717},"llama_spawn_egg":{"id":718},"magma_cube_spawn_egg":{"id":719},"mooshroom_spawn_egg":{"id":720},"mule_spawn_egg":{"id":721},"ocelot_spawn_egg":{"id":722},"panda_spawn_egg":{"id":723},"parrot_spawn_egg":{"id":724},"phantom_spawn_egg":{"id":725},"pig_spawn_egg":{"id":726},"pillager_spawn_egg":{"id":727},"polar_bear_spawn_egg":{"id":728},"pufferfish_spawn_egg":{"id":729},"rabbit_spawn_egg":{"id":730},"ravager_spawn_egg":{"id":731},"salmon_spawn_egg":{"id":732},"sheep_spawn_egg":{"id":733},"shulker_spawn_egg":{"id":734},"silverfish_spawn_egg":{"id":735},"skeleton_spawn_egg":{"id":736},"skeleton_horse_spawn_egg":{"id":737},"slime_spawn_egg":{"id":738},"spider_spawn_egg":{"id":739},"squid_spawn_egg":{"id":740},"stray_spawn_egg":{"id":741},"trader_llama_spawn_egg":{"id":742},"tropical_fish_spawn_egg":{"id":743},"turtle_spawn_egg":{"id":744},"vex_spawn_egg":{"id":745},"villager_spawn_egg":{"id":746},"vindicator_spawn_egg":{"id":747},"wandering_trader_spawn_egg":{"id":748},"witch_spawn_egg":{"id":749},"wither_skeleton_spawn_egg":{"id":750},"wolf_spawn_egg":{"id":751},"zombie_spawn_egg":{"id":752},"zombie_horse_spawn_egg":{"id":753},"zombie_pigman_spawn_egg":{"id":754},"zombie_villager_spawn_egg":{"id":755},"experience_bottle":{"id":756},"fire_charge":{"id":757},"writable_book":{"id":758},"written_book":{"id":759},"emerald":{"id":760},"item_frame":{"id":761},"flower_pot":{"id":762},"carrot":{"id":763},"potato":{"id":764},"baked_potato":{"id":765},"poisonous_potato":{"id":766},"map":{"id":767},"golden_carrot":{"id":768},"skeleton_skull":{"id":769},"wither_skeleton_skull":{"id":770},"player_head":{"id":771},"zombie_head":{"id":772},"creeper_head":{"id":773},"dragon_head":{"id":774},"carrot_on_a_stick":{"id":775},"nether_star":{"id":776},"pumpkin_pie":{"id":777},"firework_rocket":{"id":778},"firework_star":{"id":779},"enchanted_book":{"id":780},"nether_brick":{"id":781},"quartz":{"id":782},"tnt_minecart":{"id":783},"hopper_minecart":{"id":784},"prismarine_shard":{"id":785},"prismarine_crystals":{"id":786},"rabbit":{"id":787},"cooked_rabbit":{"id":788},"rabbit_stew":{"id":789},"rabbit_foot":{"id":790},"rabbit_hide":{"id":791},"armor_stand":{"id":792},"iron_horse_armor":{"id":793},"golden_horse_armor":{"id":794},"diamond_horse_armor":{"id":795},"leather_horse_armor":{"id":796},"lead":{"id":797},"name_tag":{"id":798},"command_block_minecart":{"id":799},"mutton":{"id":800},"cooked_mutton":{"id":801},"white_banner":{"id":802},"orange_banner":{"id":803},"magenta_banner":{"id":804},"light_blue_banner":{"id":805},"yellow_banner":{"id":806},"lime_banner":{"id":807},"pink_banner":{"id":808},"gray_banner":{"id":809},"light_gray_banner":{"id":810},"cyan_banner":{"id":811},"purple_banner":{"id":812},"blue_banner":{"id":813},"brown_banner":{"id":814},"green_banner":{"id":815},"red_banner":{"id":816},"black_banner":{"id":817},"end_crystal":{"id":818},"chorus_fruit":{"id":819},"popped_chorus_fruit":{"id":820},"beetroot":{"id":821},"beetroot_seeds":{"id":822},"beetroot_soup":{"id":823},"dragon_breath":{"id":824},"splash_potion":{"id":825},"spectral_arrow":{"id":826},"tipped_arrow":{"id":827},"lingering_potion":{"id":828},"shield":{"id":829},"elytra":{"id":830},"spruce_boat":{"id":831},"birch_boat":{"id":832},"jungle_boat":{"id":833},"acacia_boat":{"id":834},"dark_oak_boat":{"id":835},"totem_of_undying":{"id":836},"shulker_shell":{"id":837},"iron_nugget":{"id":838},"knowledge_book":{"id":839},"debug_stick":{"id":840},"music_disc_13":{"id":841},"music_disc_cat":{"id":842},"music_disc_blocks":{"id":843},"music_disc_chirp":{"id":844},"music_disc_far":{"id":845},"music_disc_mall":{"id":846},"music_disc_mellohi":{"id":847},"music_disc_stal":{"id":848},"music_disc_strad":{"id":849},"music_disc_ward":{"id":850},"music_disc_11":{"id":851},"music_disc_wait":{"id":852},"trident":{"id":853},"phantom_membrane":{"id":854},"nautilus_shell":{"id":855},"heart_of_the_sea":{"id":856},"crossbow":{"id":857},"suspicious_stew":{"id":858},"loom":{"id":859},"flower_banner_pattern":{"id":860},"creeper_banner_pattern":{"id":861},"skull_banner_pattern":{"id":862},"mojang_banner_pattern":{"id":863},"globe_banner_pattern":{"id":864},"barrel":{"id":865},"smoker":{"id":866},"blast_furnace":{"id":867},"cartography_table":{"id":868},"fletching_table":{"id":869},"grindstone":{"id":870},"lectern":{"id":871},"smithing_table":{"id":872},"stonecutter":{"id":873},"bell":{"id":874},"lantern":{"id":875},"sweet_berries":{"id":876},"campfire":{"id":877},"honeycomb":{"id":878},"bee_nest":{"id":879},"beehive":{"id":880},"honey_bottle":{"id":881},"honey_block":{"id":882},"honeycomb_block":{"id":883}}},"potion":{"default":"empty","id":7,"entries":{"empty":{"id":0},"water":{"id":1},"mundane":{"id":2},"thick":{"id":3},"awkward":{"id":4},"night_vision":{"id":5},"long_night_vision":{"id":6},"invisibility":{"id":7},"long_invisibility":{"id":8},"leaping":{"id":9},"long_leaping":{"id":10},"strong_leaping":{"id":11},"fire_resistance":{"id":12},"long_fire_resistance":{"id":13},"swiftness":{"id":14},"long_swiftness":{"id":15},"strong_swiftness":{"id":16},"slowness":{"id":17},"long_slowness":{"id":18},"strong_slowness":{"id":19},"turtle_master":{"id":20},"long_turtle_master":{"id":21},"strong_turtle_master":{"id":22},"water_breathing":{"id":23},"long_water_breathing":{"id":24},"healing":{"id":25},"strong_healing":{"id":26},"harming":{"id":27},"strong_harming":{"id":28},"poison":{"id":29},"long_poison":{"id":30},"strong_poison":{"id":31},"regeneration":{"id":32},"long_regeneration":{"id":33},"strong_regeneration":{"id":34},"strength":{"id":35},"long_strength":{"id":36},"strong_strength":{"id":37},"weakness":{"id":38},"long_weakness":{"id":39},"luck":{"id":40},"slow_falling":{"id":41},"long_slow_falling":{"id":42}}},"carver":{"id":8,"entries":{"cave":{"id":0},"hell_cave":{"id":1},"canyon":{"id":2},"underwater_canyon":{"id":3},"underwater_cave":{"id":4}}},"surface_builder":{"id":9,"entries":{"default":{"id":0},"mountain":{"id":1},"shattered_savanna":{"id":2},"gravelly_mountain":{"id":3},"giant_tree_taiga":{"id":4},"swamp":{"id":5},"badlands":{"id":6},"wooded_badlands":{"id":7},"eroded_badlands":{"id":8},"frozen_ocean":{"id":9},"nether":{"id":10},"nope":{"id":11}}},"feature":{"id":10,"entries":{"pillager_outpost":{"id":0},"mineshaft":{"id":1},"woodland_mansion":{"id":2},"jungle_temple":{"id":3},"desert_pyramid":{"id":4},"igloo":{"id":5},"shipwreck":{"id":6},"swamp_hut":{"id":7},"stronghold":{"id":8},"ocean_monument":{"id":9},"ocean_ruin":{"id":10},"nether_bridge":{"id":11},"end_city":{"id":12},"buried_treasure":{"id":13},"village":{"id":14},"no_op":{"id":15},"normal_tree":{"id":16},"acacia_tree":{"id":17},"fancy_tree":{"id":18},"jungle_ground_bush":{"id":19},"dark_oak_tree":{"id":20},"mega_jungle_tree":{"id":21},"mega_spruce_tree":{"id":22},"flower":{"id":23},"random_patch":{"id":24},"block_pile":{"id":25},"spring_feature":{"id":26},"chorus_plant":{"id":27},"emerald_ore":{"id":28},"void_start_platform":{"id":29},"desert_well":{"id":30},"fossil":{"id":31},"huge_red_mushroom":{"id":32},"huge_brown_mushroom":{"id":33},"ice_spike":{"id":34},"glowstone_blob":{"id":35},"freeze_top_layer":{"id":36},"vines":{"id":37},"monster_room":{"id":38},"blue_ice":{"id":39},"iceberg":{"id":40},"forest_rock":{"id":41},"disk":{"id":42},"ice_patch":{"id":43},"lake":{"id":44},"ore":{"id":45},"end_spike":{"id":46},"end_island":{"id":47},"end_gateway":{"id":48},"seagrass":{"id":49},"kelp":{"id":50},"coral_tree":{"id":51},"coral_mushroom":{"id":52},"coral_claw":{"id":53},"sea_pickle":{"id":54},"simple_block":{"id":55},"bamboo":{"id":56},"fill_layer":{"id":57},"bonus_chest":{"id":58},"random_random_selector":{"id":59},"random_selector":{"id":60},"simple_random_selector":{"id":61},"random_boolean_selector":{"id":62},"decorated":{"id":63},"decorated_flower":{"id":64}}},"decorator":{"id":11,"entries":{"nope":{"id":0},"count_heightmap":{"id":1},"count_top_solid":{"id":2},"count_heightmap_32":{"id":3},"count_heightmap_double":{"id":4},"count_height_64":{"id":5},"noise_heightmap_32":{"id":6},"noise_heightmap_double":{"id":7},"chance_heightmap":{"id":8},"chance_heightmap_double":{"id":9},"chance_passthrough":{"id":10},"chance_top_solid_heightmap":{"id":11},"count_extra_heightmap":{"id":12},"count_range":{"id":13},"count_biased_range":{"id":14},"count_very_biased_range":{"id":15},"random_count_range":{"id":16},"chance_range":{"id":17},"count_chance_heightmap":{"id":18},"count_chance_heightmap_double":{"id":19},"count_depth_average":{"id":20},"top_solid_heightmap":{"id":21},"top_solid_heightmap_range":{"id":22},"top_solid_heightmap_noise_biased":{"id":23},"carving_mask":{"id":24},"forest_rock":{"id":25},"hell_fire":{"id":26},"magma":{"id":27},"emerald_ore":{"id":28},"lava_lake":{"id":29},"water_lake":{"id":30},"dungeons":{"id":31},"dark_oak_tree":{"id":32},"iceberg":{"id":33},"light_gem_chance":{"id":34},"end_island":{"id":35},"chorus_plant":{"id":36},"end_gateway":{"id":37}}},"biome":{"id":12,"entries":{"ocean":{"id":0},"plains":{"id":1},"desert":{"id":2},"mountains":{"id":3},"forest":{"id":4},"taiga":{"id":5},"swamp":{"id":6},"river":{"id":7},"nether":{"id":8},"the_end":{"id":9},"frozen_ocean":{"id":10},"frozen_river":{"id":11},"snowy_tundra":{"id":12},"snowy_mountains":{"id":13},"mushroom_fields":{"id":14},"mushroom_field_shore":{"id":15},"beach":{"id":16},"desert_hills":{"id":17},"wooded_hills":{"id":18},"taiga_hills":{"id":19},"mountain_edge":{"id":20},"jungle":{"id":21},"jungle_hills":{"id":22},"jungle_edge":{"id":23},"deep_ocean":{"id":24},"stone_shore":{"id":25},"snowy_beach":{"id":26},"birch_forest":{"id":27},"birch_forest_hills":{"id":28},"dark_forest":{"id":29},"snowy_taiga":{"id":30},"snowy_taiga_hills":{"id":31},"giant_tree_taiga":{"id":32},"giant_tree_taiga_hills":{"id":33},"wooded_mountains":{"id":34},"savanna":{"id":35},"savanna_plateau":{"id":36},"badlands":{"id":37},"wooded_badlands_plateau":{"id":38},"badlands_plateau":{"id":39},"small_end_islands":{"id":40},"end_midlands":{"id":41},"end_highlands":{"id":42},"end_barrens":{"id":43},"warm_ocean":{"id":44},"lukewarm_ocean":{"id":45},"cold_ocean":{"id":46},"deep_warm_ocean":{"id":47},"deep_lukewarm_ocean":{"id":48},"deep_cold_ocean":{"id":49},"deep_frozen_ocean":{"id":50},"the_void":{"id":127},"sunflower_plains":{"id":129},"desert_lakes":{"id":130},"gravelly_mountains":{"id":131},"flower_forest":{"id":132},"taiga_mountains":{"id":133},"swamp_hills":{"id":134},"ice_spikes":{"id":140},"modified_jungle":{"id":149},"modified_jungle_edge":{"id":151},"tall_birch_forest":{"id":155},"tall_birch_hills":{"id":156},"dark_forest_hills":{"id":157},"snowy_taiga_mountains":{"id":158},"giant_spruce_taiga":{"id":160},"giant_spruce_taiga_hills":{"id":161},"modified_gravelly_mountains":{"id":162},"shattered_savanna":{"id":163},"shattered_savanna_plateau":{"id":164},"eroded_badlands":{"id":165},"modified_wooded_badlands_plateau":{"id":166},"modified_badlands_plateau":{"id":167},"bamboo_jungle":{"id":168},"bamboo_jungle_hills":{"id":169}}},"block_state_provider_type":{"id":13,"entries":{"simple_state_provider":{"id":0},"weighted_state_provider":{"id":1},"plain_flower_provider":{"id":2},"forest_flower_provider":{"id":3}}},"block_placer_type":{"id":14,"entries":{"simple_block_placer":{"id":0},"double_plant_placer":{"id":1},"column_placer":{"id":2}}},"foliage_placer_type":{"id":15,"entries":{"blob_foliage_placer":{"id":0},"spruce_foliage_placer":{"id":1},"pine_foliage_placer":{"id":2},"acacia_foliage_placer":{"id":3}}},"tree_decorator_type":{"id":16,"entries":{"trunk_vine":{"id":0},"leave_vine":{"id":1},"cocoa":{"id":2},"beehive":{"id":3},"alter_ground":{"id":4}}},"particle_type":{"id":17,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55},"campfire_cosy_smoke":{"id":56},"campfire_signal_smoke":{"id":57},"dripping_honey":{"id":58},"falling_honey":{"id":59},"landing_honey":{"id":60},"falling_nectar":{"id":61}}},"biome_source_type":{"id":18,"entries":{"checkerboard":{"id":0},"fixed":{"id":1},"vanilla_layered":{"id":2},"the_end":{"id":3}}},"block_entity_type":{"id":19,"entries":{"furnace":{"id":0},"chest":{"id":1},"trapped_chest":{"id":2},"ender_chest":{"id":3},"jukebox":{"id":4},"dispenser":{"id":5},"dropper":{"id":6},"sign":{"id":7},"mob_spawner":{"id":8},"piston":{"id":9},"brewing_stand":{"id":10},"enchanting_table":{"id":11},"end_portal":{"id":12},"beacon":{"id":13},"skull":{"id":14},"daylight_detector":{"id":15},"hopper":{"id":16},"comparator":{"id":17},"banner":{"id":18},"structure_block":{"id":19},"end_gateway":{"id":20},"command_block":{"id":21},"shulker_box":{"id":22},"bed":{"id":23},"conduit":{"id":24},"barrel":{"id":25},"smoker":{"id":26},"blast_furnace":{"id":27},"lectern":{"id":28},"bell":{"id":29},"jigsaw":{"id":30},"campfire":{"id":31},"beehive":{"id":32}}},"chunk_generator_type":{"id":20,"entries":{"surface":{"id":0},"caves":{"id":1},"floating_islands":{"id":2},"debug":{"id":3},"flat":{"id":4}}},"dimension_type":{"id":21,"entries":{"overworld":{"id":1},"the_nether":{"id":0},"the_end":{"id":2}}},"motive":{"default":"kebab","id":22,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"custom_stat":{"id":23,"entries":{"leave_game":{"id":0},"play_one_minute":{"id":1},"time_since_death":{"id":2},"time_since_rest":{"id":3},"sneak_time":{"id":4},"walk_one_cm":{"id":5},"crouch_one_cm":{"id":6},"sprint_one_cm":{"id":7},"walk_on_water_one_cm":{"id":8},"fall_one_cm":{"id":9},"climb_one_cm":{"id":10},"fly_one_cm":{"id":11},"walk_under_water_one_cm":{"id":12},"minecart_one_cm":{"id":13},"boat_one_cm":{"id":14},"pig_one_cm":{"id":15},"horse_one_cm":{"id":16},"aviate_one_cm":{"id":17},"swim_one_cm":{"id":18},"jump":{"id":19},"drop":{"id":20},"damage_dealt":{"id":21},"damage_dealt_absorbed":{"id":22},"damage_dealt_resisted":{"id":23},"damage_taken":{"id":24},"damage_blocked_by_shield":{"id":25},"damage_absorbed":{"id":26},"damage_resisted":{"id":27},"deaths":{"id":28},"mob_kills":{"id":29},"animals_bred":{"id":30},"player_kills":{"id":31},"fish_caught":{"id":32},"talked_to_villager":{"id":33},"traded_with_villager":{"id":34},"eat_cake_slice":{"id":35},"fill_cauldron":{"id":36},"use_cauldron":{"id":37},"clean_armor":{"id":38},"clean_banner":{"id":39},"clean_shulker_box":{"id":40},"interact_with_brewingstand":{"id":41},"interact_with_beacon":{"id":42},"inspect_dropper":{"id":43},"inspect_hopper":{"id":44},"inspect_dispenser":{"id":45},"play_noteblock":{"id":46},"tune_noteblock":{"id":47},"pot_flower":{"id":48},"trigger_trapped_chest":{"id":49},"open_enderchest":{"id":50},"enchant_item":{"id":51},"play_record":{"id":52},"interact_with_furnace":{"id":53},"interact_with_crafting_table":{"id":54},"open_chest":{"id":55},"sleep_in_bed":{"id":56},"open_shulker_box":{"id":57},"open_barrel":{"id":58},"interact_with_blast_furnace":{"id":59},"interact_with_smoker":{"id":60},"interact_with_lectern":{"id":61},"interact_with_campfire":{"id":62},"interact_with_cartography_table":{"id":63},"interact_with_loom":{"id":64},"interact_with_stonecutter":{"id":65},"bell_ring":{"id":66},"raid_trigger":{"id":67},"raid_win":{"id":68},"interact_with_anvil":{"id":69},"interact_with_grindstone":{"id":70}}},"chunk_status":{"default":"empty","id":24,"entries":{"empty":{"id":0},"structure_starts":{"id":1},"structure_references":{"id":2},"biomes":{"id":3},"noise":{"id":4},"surface":{"id":5},"carvers":{"id":6},"liquid_carvers":{"id":7},"features":{"id":8},"light":{"id":9},"spawn":{"id":10},"heightmaps":{"id":11},"full":{"id":12}}},"structure_feature":{"id":25,"entries":{"mineshaft":{"id":0},"pillager_outpost":{"id":1},"fortress":{"id":2},"stronghold":{"id":3},"jungle_pyramid":{"id":4},"ocean_ruin":{"id":5},"desert_pyramid":{"id":6},"igloo":{"id":7},"swamp_hut":{"id":8},"monument":{"id":9},"endcity":{"id":10},"mansion":{"id":11},"buried_treasure":{"id":12},"shipwreck":{"id":13},"village":{"id":14}}},"structure_piece":{"id":26,"entries":{"mscorridor":{"id":0},"mscrossing":{"id":1},"msroom":{"id":2},"msstairs":{"id":3},"pcp":{"id":4},"nvi":{"id":5},"nebcr":{"id":6},"nebef":{"id":7},"nebs":{"id":8},"neccs":{"id":9},"nectb":{"id":10},"nece":{"id":11},"nescsc":{"id":12},"nesclt":{"id":13},"nesc":{"id":14},"nescrt":{"id":15},"necsr":{"id":16},"nemt":{"id":17},"nerc":{"id":18},"nesr":{"id":19},"nestart":{"id":20},"shcc":{"id":21},"shfc":{"id":22},"sh5c":{"id":23},"shlt":{"id":24},"shli":{"id":25},"shpr":{"id":26},"shph":{"id":27},"shrt":{"id":28},"shrc":{"id":29},"shsd":{"id":30},"shstart":{"id":31},"shs":{"id":32},"shssd":{"id":33},"tejp":{"id":34},"orp":{"id":35},"iglu":{"id":36},"tesh":{"id":37},"tedp":{"id":38},"omb":{"id":39},"omcr":{"id":40},"omdxr":{"id":41},"omdxyr":{"id":42},"omdyr":{"id":43},"omdyzr":{"id":44},"omdzr":{"id":45},"omentry":{"id":46},"ompenthouse":{"id":47},"omsimple":{"id":48},"omsimplet":{"id":49},"omwr":{"id":50},"ecp":{"id":51},"wmp":{"id":52},"btp":{"id":53},"shipwreck":{"id":54}}},"rule_test":{"id":27,"entries":{"always_true":{"id":0},"block_match":{"id":1},"blockstate_match":{"id":2},"tag_match":{"id":3},"random_block_match":{"id":4},"random_blockstate_match":{"id":5}}},"structure_processor":{"id":28,"entries":{"block_ignore":{"id":0},"block_rot":{"id":1},"gravity":{"id":2},"jigsaw_replacement":{"id":3},"rule":{"id":4},"nop":{"id":5}}},"structure_pool_element":{"id":29,"entries":{"single_pool_element":{"id":0},"list_pool_element":{"id":1},"feature_pool_element":{"id":2},"empty_pool_element":{"id":3}}},"menu":{"id":30,"entries":{"generic_9x1":{"id":0},"generic_9x2":{"id":1},"generic_9x3":{"id":2},"generic_9x4":{"id":3},"generic_9x5":{"id":4},"generic_9x6":{"id":5},"generic_3x3":{"id":6},"anvil":{"id":7},"beacon":{"id":8},"blast_furnace":{"id":9},"brewing_stand":{"id":10},"crafting":{"id":11},"enchantment":{"id":12},"furnace":{"id":13},"grindstone":{"id":14},"hopper":{"id":15},"lectern":{"id":16},"loom":{"id":17},"merchant":{"id":18},"shulker_box":{"id":19},"smoker":{"id":20},"cartography_table":{"id":21},"stonecutter":{"id":22}}},"recipe_type":{"id":31,"entries":{"crafting":{"id":0},"smelting":{"id":1},"blasting":{"id":2},"smoking":{"id":3},"campfire_cooking":{"id":4},"stonecutting":{"id":5}}},"recipe_serializer":{"id":32,"entries":{"crafting_shaped":{"id":0},"crafting_shapeless":{"id":1},"crafting_special_armordye":{"id":2},"crafting_special_bookcloning":{"id":3},"crafting_special_mapcloning":{"id":4},"crafting_special_mapextending":{"id":5},"crafting_special_firework_rocket":{"id":6},"crafting_special_firework_star":{"id":7},"crafting_special_firework_star_fade":{"id":8},"crafting_special_tippedarrow":{"id":9},"crafting_special_bannerduplicate":{"id":10},"crafting_special_shielddecoration":{"id":11},"crafting_special_shulkerboxcoloring":{"id":12},"crafting_special_suspiciousstew":{"id":13},"crafting_special_repairitem":{"id":14},"smelting":{"id":15},"blasting":{"id":16},"smoking":{"id":17},"campfire_cooking":{"id":18},"stonecutting":{"id":19}}},"stat_type":{"id":33,"entries":{"mined":{"id":0},"crafted":{"id":1},"used":{"id":2},"broken":{"id":3},"picked_up":{"id":4},"dropped":{"id":5},"killed":{"id":6},"killed_by":{"id":7},"custom":{"id":8}}},"villager_type":{"default":"plains","id":34,"entries":{"desert":{"id":0},"jungle":{"id":1},"plains":{"id":2},"savanna":{"id":3},"snow":{"id":4},"swamp":{"id":5},"taiga":{"id":6}}},"villager_profession":{"default":"none","id":35,"entries":{"none":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14}}},"point_of_interest_type":{"default":"unemployed","id":36,"entries":{"unemployed":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14},"home":{"id":15},"meeting":{"id":16},"beehive":{"id":17},"bee_nest":{"id":18},"nether_portal":{"id":19}}},"memory_module_type":{"default":"dummy","id":37,"entries":{"dummy":{"id":0},"home":{"id":1},"job_site":{"id":2},"meeting_point":{"id":3},"secondary_job_site":{"id":4},"mobs":{"id":5},"visible_mobs":{"id":6},"visible_villager_babies":{"id":7},"nearest_players":{"id":8},"nearest_visible_player":{"id":9},"walk_target":{"id":10},"look_target":{"id":11},"interaction_target":{"id":12},"breed_target":{"id":13},"path":{"id":14},"interactable_doors":{"id":15},"opened_doors":{"id":16},"nearest_bed":{"id":17},"hurt_by":{"id":18},"hurt_by_entity":{"id":19},"nearest_hostile":{"id":20},"hiding_place":{"id":21},"heard_bell_time":{"id":22},"cant_reach_walk_target_since":{"id":23},"golem_last_seen_time":{"id":24},"last_slept":{"id":25},"last_woken":{"id":26},"last_worked_at_poi":{"id":27}}},"sensor_type":{"default":"dummy","id":38,"entries":{"dummy":{"id":0},"nearest_living_entities":{"id":1},"nearest_players":{"id":2},"interactable_doors":{"id":3},"nearest_bed":{"id":4},"hurt_by":{"id":5},"villager_hostiles":{"id":6},"villager_babies":{"id":7},"secondary_pois":{"id":8},"golem_last_seen":{"id":9}}},"schedule":{"id":39,"entries":{"empty":{"id":0},"simple":{"id":1},"villager_baby":{"id":2},"villager_default":{"id":3}}},"activity":{"id":40,"entries":{"core":{"id":0},"idle":{"id":1},"work":{"id":2},"play":{"id":3},"rest":{"id":4},"meet":{"id":5},"panic":{"id":6},"raid":{"id":7},"pre_raid":{"id":8},"hide":{"id":9}}}}}
\ No newline at end of file
+{"minecraft":{"sound_event":{"id":0,"entries":{"ambient.cave":{"id":0},"ambient.underwater.enter":{"id":1},"ambient.underwater.exit":{"id":2},"ambient.underwater.loop":{"id":3},"ambient.underwater.loop.additions":{"id":4},"ambient.underwater.loop.additions.rare":{"id":5},"ambient.underwater.loop.additions.ultra_rare":{"id":6},"block.anvil.break":{"id":7},"block.anvil.destroy":{"id":8},"block.anvil.fall":{"id":9},"block.anvil.hit":{"id":10},"block.anvil.land":{"id":11},"block.anvil.place":{"id":12},"block.anvil.step":{"id":13},"block.anvil.use":{"id":14},"item.armor.equip_chain":{"id":15},"item.armor.equip_diamond":{"id":16},"item.armor.equip_elytra":{"id":17},"item.armor.equip_generic":{"id":18},"item.armor.equip_gold":{"id":19},"item.armor.equip_iron":{"id":20},"item.armor.equip_leather":{"id":21},"item.armor.equip_turtle":{"id":22},"entity.armor_stand.break":{"id":23},"entity.armor_stand.fall":{"id":24},"entity.armor_stand.hit":{"id":25},"entity.armor_stand.place":{"id":26},"entity.arrow.hit":{"id":27},"entity.arrow.hit_player":{"id":28},"entity.arrow.shoot":{"id":29},"item.axe.strip":{"id":30},"block.bamboo.break":{"id":31},"block.bamboo.fall":{"id":32},"block.bamboo.hit":{"id":33},"block.bamboo.place":{"id":34},"block.bamboo.step":{"id":35},"block.bamboo_sapling.break":{"id":36},"block.bamboo_sapling.hit":{"id":37},"block.bamboo_sapling.place":{"id":38},"block.barrel.close":{"id":39},"block.barrel.open":{"id":40},"entity.bat.ambient":{"id":41},"entity.bat.death":{"id":42},"entity.bat.hurt":{"id":43},"entity.bat.loop":{"id":44},"entity.bat.takeoff":{"id":45},"block.beacon.activate":{"id":46},"block.beacon.ambient":{"id":47},"block.beacon.deactivate":{"id":48},"block.beacon.power_select":{"id":49},"entity.bee.death":{"id":50},"entity.bee.hurt":{"id":51},"entity.bee.loop_aggressive":{"id":52},"entity.bee.loop":{"id":53},"entity.bee.sting":{"id":54},"entity.bee.pollinate":{"id":55},"block.beehive.drip":{"id":56},"block.beehive.enter":{"id":57},"block.beehive.exit":{"id":58},"block.beehive.shear":{"id":59},"block.beehive.work":{"id":60},"block.bell.use":{"id":61},"block.bell.resonate":{"id":62},"entity.blaze.ambient":{"id":63},"entity.blaze.burn":{"id":64},"entity.blaze.death":{"id":65},"entity.blaze.hurt":{"id":66},"entity.blaze.shoot":{"id":67},"entity.boat.paddle_land":{"id":68},"entity.boat.paddle_water":{"id":69},"item.book.page_turn":{"id":70},"item.book.put":{"id":71},"entity.fishing_bobber.retrieve":{"id":72},"entity.fishing_bobber.splash":{"id":73},"entity.fishing_bobber.throw":{"id":74},"block.blastfurnace.fire_crackle":{"id":75},"item.bottle.empty":{"id":76},"item.bottle.fill":{"id":77},"item.bottle.fill_dragonbreath":{"id":78},"block.brewing_stand.brew":{"id":79},"block.bubble_column.bubble_pop":{"id":80},"block.bubble_column.upwards_ambient":{"id":81},"block.bubble_column.upwards_inside":{"id":82},"block.bubble_column.whirlpool_ambient":{"id":83},"block.bubble_column.whirlpool_inside":{"id":84},"item.bucket.empty":{"id":85},"item.bucket.empty_fish":{"id":86},"item.bucket.empty_lava":{"id":87},"item.bucket.fill":{"id":88},"item.bucket.fill_fish":{"id":89},"item.bucket.fill_lava":{"id":90},"block.campfire.crackle":{"id":91},"entity.cat.ambient":{"id":92},"entity.cat.stray_ambient":{"id":93},"entity.cat.death":{"id":94},"entity.cat.eat":{"id":95},"entity.cat.hiss":{"id":96},"entity.cat.beg_for_food":{"id":97},"entity.cat.hurt":{"id":98},"entity.cat.purr":{"id":99},"entity.cat.purreow":{"id":100},"block.chest.close":{"id":101},"block.chest.locked":{"id":102},"block.chest.open":{"id":103},"entity.chicken.ambient":{"id":104},"entity.chicken.death":{"id":105},"entity.chicken.egg":{"id":106},"entity.chicken.hurt":{"id":107},"entity.chicken.step":{"id":108},"block.chorus_flower.death":{"id":109},"block.chorus_flower.grow":{"id":110},"item.chorus_fruit.teleport":{"id":111},"block.wool.break":{"id":112},"block.wool.fall":{"id":113},"block.wool.hit":{"id":114},"block.wool.place":{"id":115},"block.wool.step":{"id":116},"entity.cod.ambient":{"id":117},"entity.cod.death":{"id":118},"entity.cod.flop":{"id":119},"entity.cod.hurt":{"id":120},"block.comparator.click":{"id":121},"block.composter.empty":{"id":122},"block.composter.fill":{"id":123},"block.composter.fill_success":{"id":124},"block.composter.ready":{"id":125},"block.conduit.activate":{"id":126},"block.conduit.ambient":{"id":127},"block.conduit.ambient.short":{"id":128},"block.conduit.attack.target":{"id":129},"block.conduit.deactivate":{"id":130},"entity.cow.ambient":{"id":131},"entity.cow.death":{"id":132},"entity.cow.hurt":{"id":133},"entity.cow.milk":{"id":134},"entity.cow.step":{"id":135},"entity.creeper.death":{"id":136},"entity.creeper.hurt":{"id":137},"entity.creeper.primed":{"id":138},"block.crop.break":{"id":139},"item.crop.plant":{"id":140},"item.crossbow.hit":{"id":141},"item.crossbow.loading_end":{"id":142},"item.crossbow.loading_middle":{"id":143},"item.crossbow.loading_start":{"id":144},"item.crossbow.quick_charge_1":{"id":145},"item.crossbow.quick_charge_2":{"id":146},"item.crossbow.quick_charge_3":{"id":147},"item.crossbow.shoot":{"id":148},"block.dispenser.dispense":{"id":149},"block.dispenser.fail":{"id":150},"block.dispenser.launch":{"id":151},"entity.dolphin.ambient":{"id":152},"entity.dolphin.ambient_water":{"id":153},"entity.dolphin.attack":{"id":154},"entity.dolphin.death":{"id":155},"entity.dolphin.eat":{"id":156},"entity.dolphin.hurt":{"id":157},"entity.dolphin.jump":{"id":158},"entity.dolphin.play":{"id":159},"entity.dolphin.splash":{"id":160},"entity.dolphin.swim":{"id":161},"entity.donkey.ambient":{"id":162},"entity.donkey.angry":{"id":163},"entity.donkey.chest":{"id":164},"entity.donkey.death":{"id":165},"entity.donkey.hurt":{"id":166},"entity.drowned.ambient":{"id":167},"entity.drowned.ambient_water":{"id":168},"entity.drowned.death":{"id":169},"entity.drowned.death_water":{"id":170},"entity.drowned.hurt":{"id":171},"entity.drowned.hurt_water":{"id":172},"entity.drowned.shoot":{"id":173},"entity.drowned.step":{"id":174},"entity.drowned.swim":{"id":175},"entity.egg.throw":{"id":176},"entity.elder_guardian.ambient":{"id":177},"entity.elder_guardian.ambient_land":{"id":178},"entity.elder_guardian.curse":{"id":179},"entity.elder_guardian.death":{"id":180},"entity.elder_guardian.death_land":{"id":181},"entity.elder_guardian.flop":{"id":182},"entity.elder_guardian.hurt":{"id":183},"entity.elder_guardian.hurt_land":{"id":184},"item.elytra.flying":{"id":185},"block.enchantment_table.use":{"id":186},"block.ender_chest.close":{"id":187},"block.ender_chest.open":{"id":188},"entity.ender_dragon.ambient":{"id":189},"entity.ender_dragon.death":{"id":190},"entity.dragon_fireball.explode":{"id":191},"entity.ender_dragon.flap":{"id":192},"entity.ender_dragon.growl":{"id":193},"entity.ender_dragon.hurt":{"id":194},"entity.ender_dragon.shoot":{"id":195},"entity.ender_eye.death":{"id":196},"entity.ender_eye.launch":{"id":197},"entity.enderman.ambient":{"id":198},"entity.enderman.death":{"id":199},"entity.enderman.hurt":{"id":200},"entity.enderman.scream":{"id":201},"entity.enderman.stare":{"id":202},"entity.enderman.teleport":{"id":203},"entity.endermite.ambient":{"id":204},"entity.endermite.death":{"id":205},"entity.endermite.hurt":{"id":206},"entity.endermite.step":{"id":207},"entity.ender_pearl.throw":{"id":208},"block.end_gateway.spawn":{"id":209},"block.end_portal_frame.fill":{"id":210},"block.end_portal.spawn":{"id":211},"entity.evoker.ambient":{"id":212},"entity.evoker.cast_spell":{"id":213},"entity.evoker.celebrate":{"id":214},"entity.evoker.death":{"id":215},"entity.evoker_fangs.attack":{"id":216},"entity.evoker.hurt":{"id":217},"entity.evoker.prepare_attack":{"id":218},"entity.evoker.prepare_summon":{"id":219},"entity.evoker.prepare_wololo":{"id":220},"entity.experience_bottle.throw":{"id":221},"entity.experience_orb.pickup":{"id":222},"block.fence_gate.close":{"id":223},"block.fence_gate.open":{"id":224},"item.firecharge.use":{"id":225},"entity.firework_rocket.blast":{"id":226},"entity.firework_rocket.blast_far":{"id":227},"entity.firework_rocket.large_blast":{"id":228},"entity.firework_rocket.large_blast_far":{"id":229},"entity.firework_rocket.launch":{"id":230},"entity.firework_rocket.shoot":{"id":231},"entity.firework_rocket.twinkle":{"id":232},"entity.firework_rocket.twinkle_far":{"id":233},"block.fire.ambient":{"id":234},"block.fire.extinguish":{"id":235},"entity.fish.swim":{"id":236},"item.flintandsteel.use":{"id":237},"entity.fox.aggro":{"id":238},"entity.fox.ambient":{"id":239},"entity.fox.bite":{"id":240},"entity.fox.death":{"id":241},"entity.fox.eat":{"id":242},"entity.fox.hurt":{"id":243},"entity.fox.screech":{"id":244},"entity.fox.sleep":{"id":245},"entity.fox.sniff":{"id":246},"entity.fox.spit":{"id":247},"block.furnace.fire_crackle":{"id":248},"entity.generic.big_fall":{"id":249},"entity.generic.burn":{"id":250},"entity.generic.death":{"id":251},"entity.generic.drink":{"id":252},"entity.generic.eat":{"id":253},"entity.generic.explode":{"id":254},"entity.generic.extinguish_fire":{"id":255},"entity.generic.hurt":{"id":256},"entity.generic.small_fall":{"id":257},"entity.generic.splash":{"id":258},"entity.generic.swim":{"id":259},"entity.ghast.ambient":{"id":260},"entity.ghast.death":{"id":261},"entity.ghast.hurt":{"id":262},"entity.ghast.scream":{"id":263},"entity.ghast.shoot":{"id":264},"entity.ghast.warn":{"id":265},"block.glass.break":{"id":266},"block.glass.fall":{"id":267},"block.glass.hit":{"id":268},"block.glass.place":{"id":269},"block.glass.step":{"id":270},"block.grass.break":{"id":271},"block.grass.fall":{"id":272},"block.grass.hit":{"id":273},"block.grass.place":{"id":274},"block.grass.step":{"id":275},"block.wet_grass.break":{"id":276},"block.wet_grass.fall":{"id":277},"block.wet_grass.hit":{"id":278},"block.wet_grass.place":{"id":279},"block.wet_grass.step":{"id":280},"block.coral_block.break":{"id":281},"block.coral_block.fall":{"id":282},"block.coral_block.hit":{"id":283},"block.coral_block.place":{"id":284},"block.coral_block.step":{"id":285},"block.gravel.break":{"id":286},"block.gravel.fall":{"id":287},"block.gravel.hit":{"id":288},"block.gravel.place":{"id":289},"block.gravel.step":{"id":290},"block.grindstone.use":{"id":291},"entity.guardian.ambient":{"id":292},"entity.guardian.ambient_land":{"id":293},"entity.guardian.attack":{"id":294},"entity.guardian.death":{"id":295},"entity.guardian.death_land":{"id":296},"entity.guardian.flop":{"id":297},"entity.guardian.hurt":{"id":298},"entity.guardian.hurt_land":{"id":299},"item.hoe.till":{"id":300},"block.honey_block.break":{"id":301},"block.honey_block.fall":{"id":302},"block.honey_block.hit":{"id":303},"block.honey_block.place":{"id":304},"block.honey_block.slide":{"id":305},"block.honey_block.step":{"id":306},"item.honey_bottle.drink":{"id":307},"entity.horse.ambient":{"id":308},"entity.horse.angry":{"id":309},"entity.horse.armor":{"id":310},"entity.horse.breathe":{"id":311},"entity.horse.death":{"id":312},"entity.horse.eat":{"id":313},"entity.horse.gallop":{"id":314},"entity.horse.hurt":{"id":315},"entity.horse.jump":{"id":316},"entity.horse.land":{"id":317},"entity.horse.saddle":{"id":318},"entity.horse.step":{"id":319},"entity.horse.step_wood":{"id":320},"entity.hostile.big_fall":{"id":321},"entity.hostile.death":{"id":322},"entity.hostile.hurt":{"id":323},"entity.hostile.small_fall":{"id":324},"entity.hostile.splash":{"id":325},"entity.hostile.swim":{"id":326},"entity.husk.ambient":{"id":327},"entity.husk.converted_to_zombie":{"id":328},"entity.husk.death":{"id":329},"entity.husk.hurt":{"id":330},"entity.husk.step":{"id":331},"entity.ravager.ambient":{"id":332},"entity.ravager.attack":{"id":333},"entity.ravager.celebrate":{"id":334},"entity.ravager.death":{"id":335},"entity.ravager.hurt":{"id":336},"entity.ravager.step":{"id":337},"entity.ravager.stunned":{"id":338},"entity.ravager.roar":{"id":339},"entity.illusioner.ambient":{"id":340},"entity.illusioner.cast_spell":{"id":341},"entity.illusioner.death":{"id":342},"entity.illusioner.hurt":{"id":343},"entity.illusioner.mirror_move":{"id":344},"entity.illusioner.prepare_blindness":{"id":345},"entity.illusioner.prepare_mirror":{"id":346},"block.iron_door.close":{"id":347},"block.iron_door.open":{"id":348},"entity.iron_golem.attack":{"id":349},"entity.iron_golem.damage":{"id":350},"entity.iron_golem.death":{"id":351},"entity.iron_golem.hurt":{"id":352},"entity.iron_golem.repair":{"id":353},"entity.iron_golem.step":{"id":354},"block.iron_trapdoor.close":{"id":355},"block.iron_trapdoor.open":{"id":356},"entity.item_frame.add_item":{"id":357},"entity.item_frame.break":{"id":358},"entity.item_frame.place":{"id":359},"entity.item_frame.remove_item":{"id":360},"entity.item_frame.rotate_item":{"id":361},"entity.item.break":{"id":362},"entity.item.pickup":{"id":363},"block.ladder.break":{"id":364},"block.ladder.fall":{"id":365},"block.ladder.hit":{"id":366},"block.ladder.place":{"id":367},"block.ladder.step":{"id":368},"block.lantern.break":{"id":369},"block.lantern.fall":{"id":370},"block.lantern.hit":{"id":371},"block.lantern.place":{"id":372},"block.lantern.step":{"id":373},"block.lava.ambient":{"id":374},"block.lava.extinguish":{"id":375},"block.lava.pop":{"id":376},"entity.leash_knot.break":{"id":377},"entity.leash_knot.place":{"id":378},"block.lever.click":{"id":379},"entity.lightning_bolt.impact":{"id":380},"entity.lightning_bolt.thunder":{"id":381},"entity.lingering_potion.throw":{"id":382},"entity.llama.ambient":{"id":383},"entity.llama.angry":{"id":384},"entity.llama.chest":{"id":385},"entity.llama.death":{"id":386},"entity.llama.eat":{"id":387},"entity.llama.hurt":{"id":388},"entity.llama.spit":{"id":389},"entity.llama.step":{"id":390},"entity.llama.swag":{"id":391},"entity.magma_cube.death":{"id":392},"entity.magma_cube.hurt":{"id":393},"entity.magma_cube.jump":{"id":394},"entity.magma_cube.squish":{"id":395},"block.metal.break":{"id":396},"block.metal.fall":{"id":397},"block.metal.hit":{"id":398},"block.metal.place":{"id":399},"block.metal_pressure_plate.click_off":{"id":400},"block.metal_pressure_plate.click_on":{"id":401},"block.metal.step":{"id":402},"entity.minecart.inside":{"id":403},"entity.minecart.riding":{"id":404},"entity.mooshroom.convert":{"id":405},"entity.mooshroom.eat":{"id":406},"entity.mooshroom.milk":{"id":407},"entity.mooshroom.suspicious_milk":{"id":408},"entity.mooshroom.shear":{"id":409},"entity.mule.ambient":{"id":410},"entity.mule.chest":{"id":411},"entity.mule.death":{"id":412},"entity.mule.hurt":{"id":413},"music.creative":{"id":414},"music.credits":{"id":415},"music.dragon":{"id":416},"music.end":{"id":417},"music.game":{"id":418},"music.menu":{"id":419},"music.nether":{"id":420},"music.under_water":{"id":421},"block.nether_wart.break":{"id":422},"item.nether_wart.plant":{"id":423},"block.note_block.basedrum":{"id":424},"block.note_block.bass":{"id":425},"block.note_block.bell":{"id":426},"block.note_block.chime":{"id":427},"block.note_block.flute":{"id":428},"block.note_block.guitar":{"id":429},"block.note_block.harp":{"id":430},"block.note_block.hat":{"id":431},"block.note_block.pling":{"id":432},"block.note_block.snare":{"id":433},"block.note_block.xylophone":{"id":434},"block.note_block.iron_xylophone":{"id":435},"block.note_block.cow_bell":{"id":436},"block.note_block.didgeridoo":{"id":437},"block.note_block.bit":{"id":438},"block.note_block.banjo":{"id":439},"entity.ocelot.hurt":{"id":440},"entity.ocelot.ambient":{"id":441},"entity.ocelot.death":{"id":442},"entity.painting.break":{"id":443},"entity.painting.place":{"id":444},"entity.panda.pre_sneeze":{"id":445},"entity.panda.sneeze":{"id":446},"entity.panda.ambient":{"id":447},"entity.panda.death":{"id":448},"entity.panda.eat":{"id":449},"entity.panda.step":{"id":450},"entity.panda.cant_breed":{"id":451},"entity.panda.aggressive_ambient":{"id":452},"entity.panda.worried_ambient":{"id":453},"entity.panda.hurt":{"id":454},"entity.panda.bite":{"id":455},"entity.parrot.ambient":{"id":456},"entity.parrot.death":{"id":457},"entity.parrot.eat":{"id":458},"entity.parrot.fly":{"id":459},"entity.parrot.hurt":{"id":460},"entity.parrot.imitate.blaze":{"id":461},"entity.parrot.imitate.creeper":{"id":462},"entity.parrot.imitate.drowned":{"id":463},"entity.parrot.imitate.elder_guardian":{"id":464},"entity.parrot.imitate.ender_dragon":{"id":465},"entity.parrot.imitate.endermite":{"id":466},"entity.parrot.imitate.evoker":{"id":467},"entity.parrot.imitate.ghast":{"id":468},"entity.parrot.imitate.guardian":{"id":469},"entity.parrot.imitate.husk":{"id":470},"entity.parrot.imitate.illusioner":{"id":471},"entity.parrot.imitate.magma_cube":{"id":472},"entity.parrot.imitate.phantom":{"id":473},"entity.parrot.imitate.pillager":{"id":474},"entity.parrot.imitate.ravager":{"id":475},"entity.parrot.imitate.shulker":{"id":476},"entity.parrot.imitate.silverfish":{"id":477},"entity.parrot.imitate.skeleton":{"id":478},"entity.parrot.imitate.slime":{"id":479},"entity.parrot.imitate.spider":{"id":480},"entity.parrot.imitate.stray":{"id":481},"entity.parrot.imitate.vex":{"id":482},"entity.parrot.imitate.vindicator":{"id":483},"entity.parrot.imitate.witch":{"id":484},"entity.parrot.imitate.wither":{"id":485},"entity.parrot.imitate.wither_skeleton":{"id":486},"entity.parrot.imitate.zombie":{"id":487},"entity.parrot.imitate.zombie_villager":{"id":488},"entity.parrot.step":{"id":489},"entity.phantom.ambient":{"id":490},"entity.phantom.bite":{"id":491},"entity.phantom.death":{"id":492},"entity.phantom.flap":{"id":493},"entity.phantom.hurt":{"id":494},"entity.phantom.swoop":{"id":495},"entity.pig.ambient":{"id":496},"entity.pig.death":{"id":497},"entity.pig.hurt":{"id":498},"entity.pig.saddle":{"id":499},"entity.pig.step":{"id":500},"entity.pillager.ambient":{"id":501},"entity.pillager.celebrate":{"id":502},"entity.pillager.death":{"id":503},"entity.pillager.hurt":{"id":504},"block.piston.contract":{"id":505},"block.piston.extend":{"id":506},"entity.player.attack.crit":{"id":507},"entity.player.attack.knockback":{"id":508},"entity.player.attack.nodamage":{"id":509},"entity.player.attack.strong":{"id":510},"entity.player.attack.sweep":{"id":511},"entity.player.attack.weak":{"id":512},"entity.player.big_fall":{"id":513},"entity.player.breath":{"id":514},"entity.player.burp":{"id":515},"entity.player.death":{"id":516},"entity.player.hurt":{"id":517},"entity.player.hurt_drown":{"id":518},"entity.player.hurt_on_fire":{"id":519},"entity.player.hurt_sweet_berry_bush":{"id":520},"entity.player.levelup":{"id":521},"entity.player.small_fall":{"id":522},"entity.player.splash":{"id":523},"entity.player.splash.high_speed":{"id":524},"entity.player.swim":{"id":525},"entity.polar_bear.ambient":{"id":526},"entity.polar_bear.ambient_baby":{"id":527},"entity.polar_bear.death":{"id":528},"entity.polar_bear.hurt":{"id":529},"entity.polar_bear.step":{"id":530},"entity.polar_bear.warning":{"id":531},"block.portal.ambient":{"id":532},"block.portal.travel":{"id":533},"block.portal.trigger":{"id":534},"entity.puffer_fish.ambient":{"id":535},"entity.puffer_fish.blow_out":{"id":536},"entity.puffer_fish.blow_up":{"id":537},"entity.puffer_fish.death":{"id":538},"entity.puffer_fish.flop":{"id":539},"entity.puffer_fish.hurt":{"id":540},"entity.puffer_fish.sting":{"id":541},"block.pumpkin.carve":{"id":542},"entity.rabbit.ambient":{"id":543},"entity.rabbit.attack":{"id":544},"entity.rabbit.death":{"id":545},"entity.rabbit.hurt":{"id":546},"entity.rabbit.jump":{"id":547},"event.raid.horn":{"id":548},"music_disc.11":{"id":549},"music_disc.13":{"id":550},"music_disc.blocks":{"id":551},"music_disc.cat":{"id":552},"music_disc.chirp":{"id":553},"music_disc.far":{"id":554},"music_disc.mall":{"id":555},"music_disc.mellohi":{"id":556},"music_disc.stal":{"id":557},"music_disc.strad":{"id":558},"music_disc.wait":{"id":559},"music_disc.ward":{"id":560},"block.redstone_torch.burnout":{"id":561},"entity.salmon.ambient":{"id":562},"entity.salmon.death":{"id":563},"entity.salmon.flop":{"id":564},"entity.salmon.hurt":{"id":565},"block.sand.break":{"id":566},"block.sand.fall":{"id":567},"block.sand.hit":{"id":568},"block.sand.place":{"id":569},"block.sand.step":{"id":570},"block.scaffolding.break":{"id":571},"block.scaffolding.fall":{"id":572},"block.scaffolding.hit":{"id":573},"block.scaffolding.place":{"id":574},"block.scaffolding.step":{"id":575},"entity.sheep.ambient":{"id":576},"entity.sheep.death":{"id":577},"entity.sheep.hurt":{"id":578},"entity.sheep.shear":{"id":579},"entity.sheep.step":{"id":580},"item.shield.block":{"id":581},"item.shield.break":{"id":582},"item.shovel.flatten":{"id":583},"entity.shulker.ambient":{"id":584},"block.shulker_box.close":{"id":585},"block.shulker_box.open":{"id":586},"entity.shulker_bullet.hit":{"id":587},"entity.shulker_bullet.hurt":{"id":588},"entity.shulker.close":{"id":589},"entity.shulker.death":{"id":590},"entity.shulker.hurt":{"id":591},"entity.shulker.hurt_closed":{"id":592},"entity.shulker.open":{"id":593},"entity.shulker.shoot":{"id":594},"entity.shulker.teleport":{"id":595},"entity.silverfish.ambient":{"id":596},"entity.silverfish.death":{"id":597},"entity.silverfish.hurt":{"id":598},"entity.silverfish.step":{"id":599},"entity.skeleton.ambient":{"id":600},"entity.skeleton.death":{"id":601},"entity.skeleton_horse.ambient":{"id":602},"entity.skeleton_horse.death":{"id":603},"entity.skeleton_horse.hurt":{"id":604},"entity.skeleton_horse.swim":{"id":605},"entity.skeleton_horse.ambient_water":{"id":606},"entity.skeleton_horse.gallop_water":{"id":607},"entity.skeleton_horse.jump_water":{"id":608},"entity.skeleton_horse.step_water":{"id":609},"entity.skeleton.hurt":{"id":610},"entity.skeleton.shoot":{"id":611},"entity.skeleton.step":{"id":612},"entity.slime.attack":{"id":613},"entity.slime.death":{"id":614},"entity.slime.hurt":{"id":615},"entity.slime.jump":{"id":616},"entity.slime.squish":{"id":617},"block.slime_block.break":{"id":618},"block.slime_block.fall":{"id":619},"block.slime_block.hit":{"id":620},"block.slime_block.place":{"id":621},"block.slime_block.step":{"id":622},"entity.magma_cube.death_small":{"id":623},"entity.magma_cube.hurt_small":{"id":624},"entity.magma_cube.squish_small":{"id":625},"entity.slime.death_small":{"id":626},"entity.slime.hurt_small":{"id":627},"entity.slime.jump_small":{"id":628},"entity.slime.squish_small":{"id":629},"block.smoker.smoke":{"id":630},"entity.snowball.throw":{"id":631},"block.snow.break":{"id":632},"block.snow.fall":{"id":633},"entity.snow_golem.ambient":{"id":634},"entity.snow_golem.death":{"id":635},"entity.snow_golem.hurt":{"id":636},"entity.snow_golem.shoot":{"id":637},"block.snow.hit":{"id":638},"block.snow.place":{"id":639},"block.snow.step":{"id":640},"entity.spider.ambient":{"id":641},"entity.spider.death":{"id":642},"entity.spider.hurt":{"id":643},"entity.spider.step":{"id":644},"entity.splash_potion.break":{"id":645},"entity.splash_potion.throw":{"id":646},"entity.squid.ambient":{"id":647},"entity.squid.death":{"id":648},"entity.squid.hurt":{"id":649},"entity.squid.squirt":{"id":650},"block.stone.break":{"id":651},"block.stone_button.click_off":{"id":652},"block.stone_button.click_on":{"id":653},"block.stone.fall":{"id":654},"block.stone.hit":{"id":655},"block.stone.place":{"id":656},"block.stone_pressure_plate.click_off":{"id":657},"block.stone_pressure_plate.click_on":{"id":658},"block.stone.step":{"id":659},"entity.stray.ambient":{"id":660},"entity.stray.death":{"id":661},"entity.stray.hurt":{"id":662},"entity.stray.step":{"id":663},"block.sweet_berry_bush.break":{"id":664},"block.sweet_berry_bush.place":{"id":665},"item.sweet_berries.pick_from_bush":{"id":666},"enchant.thorns.hit":{"id":667},"entity.tnt.primed":{"id":668},"item.totem.use":{"id":669},"item.trident.hit":{"id":670},"item.trident.hit_ground":{"id":671},"item.trident.return":{"id":672},"item.trident.riptide_1":{"id":673},"item.trident.riptide_2":{"id":674},"item.trident.riptide_3":{"id":675},"item.trident.throw":{"id":676},"item.trident.thunder":{"id":677},"block.tripwire.attach":{"id":678},"block.tripwire.click_off":{"id":679},"block.tripwire.click_on":{"id":680},"block.tripwire.detach":{"id":681},"entity.tropical_fish.ambient":{"id":682},"entity.tropical_fish.death":{"id":683},"entity.tropical_fish.flop":{"id":684},"entity.tropical_fish.hurt":{"id":685},"entity.turtle.ambient_land":{"id":686},"entity.turtle.death":{"id":687},"entity.turtle.death_baby":{"id":688},"entity.turtle.egg_break":{"id":689},"entity.turtle.egg_crack":{"id":690},"entity.turtle.egg_hatch":{"id":691},"entity.turtle.hurt":{"id":692},"entity.turtle.hurt_baby":{"id":693},"entity.turtle.lay_egg":{"id":694},"entity.turtle.shamble":{"id":695},"entity.turtle.shamble_baby":{"id":696},"entity.turtle.swim":{"id":697},"ui.button.click":{"id":698},"ui.loom.select_pattern":{"id":699},"ui.loom.take_result":{"id":700},"ui.cartography_table.take_result":{"id":701},"ui.stonecutter.take_result":{"id":702},"ui.stonecutter.select_recipe":{"id":703},"ui.toast.challenge_complete":{"id":704},"ui.toast.in":{"id":705},"ui.toast.out":{"id":706},"entity.vex.ambient":{"id":707},"entity.vex.charge":{"id":708},"entity.vex.death":{"id":709},"entity.vex.hurt":{"id":710},"entity.villager.ambient":{"id":711},"entity.villager.celebrate":{"id":712},"entity.villager.death":{"id":713},"entity.villager.hurt":{"id":714},"entity.villager.no":{"id":715},"entity.villager.trade":{"id":716},"entity.villager.yes":{"id":717},"entity.villager.work_armorer":{"id":718},"entity.villager.work_butcher":{"id":719},"entity.villager.work_cartographer":{"id":720},"entity.villager.work_cleric":{"id":721},"entity.villager.work_farmer":{"id":722},"entity.villager.work_fisherman":{"id":723},"entity.villager.work_fletcher":{"id":724},"entity.villager.work_leatherworker":{"id":725},"entity.villager.work_librarian":{"id":726},"entity.villager.work_mason":{"id":727},"entity.villager.work_shepherd":{"id":728},"entity.villager.work_toolsmith":{"id":729},"entity.villager.work_weaponsmith":{"id":730},"entity.vindicator.ambient":{"id":731},"entity.vindicator.celebrate":{"id":732},"entity.vindicator.death":{"id":733},"entity.vindicator.hurt":{"id":734},"block.lily_pad.place":{"id":735},"entity.wandering_trader.ambient":{"id":736},"entity.wandering_trader.death":{"id":737},"entity.wandering_trader.disappeared":{"id":738},"entity.wandering_trader.drink_milk":{"id":739},"entity.wandering_trader.drink_potion":{"id":740},"entity.wandering_trader.hurt":{"id":741},"entity.wandering_trader.no":{"id":742},"entity.wandering_trader.reappeared":{"id":743},"entity.wandering_trader.trade":{"id":744},"entity.wandering_trader.yes":{"id":745},"block.water.ambient":{"id":746},"weather.rain":{"id":747},"weather.rain.above":{"id":748},"entity.witch.ambient":{"id":749},"entity.witch.celebrate":{"id":750},"entity.witch.death":{"id":751},"entity.witch.drink":{"id":752},"entity.witch.hurt":{"id":753},"entity.witch.throw":{"id":754},"entity.wither.ambient":{"id":755},"entity.wither.break_block":{"id":756},"entity.wither.death":{"id":757},"entity.wither.hurt":{"id":758},"entity.wither.shoot":{"id":759},"entity.wither_skeleton.ambient":{"id":760},"entity.wither_skeleton.death":{"id":761},"entity.wither_skeleton.hurt":{"id":762},"entity.wither_skeleton.step":{"id":763},"entity.wither.spawn":{"id":764},"entity.wolf.ambient":{"id":765},"entity.wolf.death":{"id":766},"entity.wolf.growl":{"id":767},"entity.wolf.howl":{"id":768},"entity.wolf.hurt":{"id":769},"entity.wolf.pant":{"id":770},"entity.wolf.shake":{"id":771},"entity.wolf.step":{"id":772},"entity.wolf.whine":{"id":773},"block.wooden_door.close":{"id":774},"block.wooden_door.open":{"id":775},"block.wooden_trapdoor.close":{"id":776},"block.wooden_trapdoor.open":{"id":777},"block.wood.break":{"id":778},"block.wooden_button.click_off":{"id":779},"block.wooden_button.click_on":{"id":780},"block.wood.fall":{"id":781},"block.wood.hit":{"id":782},"block.wood.place":{"id":783},"block.wooden_pressure_plate.click_off":{"id":784},"block.wooden_pressure_plate.click_on":{"id":785},"block.wood.step":{"id":786},"entity.zombie.ambient":{"id":787},"entity.zombie.attack_wooden_door":{"id":788},"entity.zombie.attack_iron_door":{"id":789},"entity.zombie.break_wooden_door":{"id":790},"entity.zombie.converted_to_drowned":{"id":791},"entity.zombie.death":{"id":792},"entity.zombie.destroy_egg":{"id":793},"entity.zombie_horse.ambient":{"id":794},"entity.zombie_horse.death":{"id":795},"entity.zombie_horse.hurt":{"id":796},"entity.zombie.hurt":{"id":797},"entity.zombie.infect":{"id":798},"entity.zombie_pigman.ambient":{"id":799},"entity.zombie_pigman.angry":{"id":800},"entity.zombie_pigman.death":{"id":801},"entity.zombie_pigman.hurt":{"id":802},"entity.zombie.step":{"id":803},"entity.zombie_villager.ambient":{"id":804},"entity.zombie_villager.converted":{"id":805},"entity.zombie_villager.cure":{"id":806},"entity.zombie_villager.death":{"id":807},"entity.zombie_villager.hurt":{"id":808},"entity.zombie_villager.step":{"id":809}}},"fluid":{"default":"empty","id":1,"entries":{"empty":{"id":0},"flowing_water":{"id":1},"water":{"id":2},"flowing_lava":{"id":3},"lava":{"id":4}}},"mob_effect":{"id":2,"entries":{"speed":{"id":1},"slowness":{"id":2},"haste":{"id":3},"mining_fatigue":{"id":4},"strength":{"id":5},"instant_health":{"id":6},"instant_damage":{"id":7},"jump_boost":{"id":8},"nausea":{"id":9},"regeneration":{"id":10},"resistance":{"id":11},"fire_resistance":{"id":12},"water_breathing":{"id":13},"invisibility":{"id":14},"blindness":{"id":15},"night_vision":{"id":16},"hunger":{"id":17},"weakness":{"id":18},"poison":{"id":19},"wither":{"id":20},"health_boost":{"id":21},"absorption":{"id":22},"saturation":{"id":23},"glowing":{"id":24},"levitation":{"id":25},"luck":{"id":26},"unluck":{"id":27},"slow_falling":{"id":28},"conduit_power":{"id":29},"dolphins_grace":{"id":30},"bad_omen":{"id":31},"hero_of_the_village":{"id":32}}},"block":{"default":"air","id":3,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"water":{"id":26},"lava":{"id":27},"sand":{"id":28},"red_sand":{"id":29},"gravel":{"id":30},"gold_ore":{"id":31},"iron_ore":{"id":32},"coal_ore":{"id":33},"oak_log":{"id":34},"spruce_log":{"id":35},"birch_log":{"id":36},"jungle_log":{"id":37},"acacia_log":{"id":38},"dark_oak_log":{"id":39},"stripped_spruce_log":{"id":40},"stripped_birch_log":{"id":41},"stripped_jungle_log":{"id":42},"stripped_acacia_log":{"id":43},"stripped_dark_oak_log":{"id":44},"stripped_oak_log":{"id":45},"oak_wood":{"id":46},"spruce_wood":{"id":47},"birch_wood":{"id":48},"jungle_wood":{"id":49},"acacia_wood":{"id":50},"dark_oak_wood":{"id":51},"stripped_oak_wood":{"id":52},"stripped_spruce_wood":{"id":53},"stripped_birch_wood":{"id":54},"stripped_jungle_wood":{"id":55},"stripped_acacia_wood":{"id":56},"stripped_dark_oak_wood":{"id":57},"oak_leaves":{"id":58},"spruce_leaves":{"id":59},"birch_leaves":{"id":60},"jungle_leaves":{"id":61},"acacia_leaves":{"id":62},"dark_oak_leaves":{"id":63},"sponge":{"id":64},"wet_sponge":{"id":65},"glass":{"id":66},"lapis_ore":{"id":67},"lapis_block":{"id":68},"dispenser":{"id":69},"sandstone":{"id":70},"chiseled_sandstone":{"id":71},"cut_sandstone":{"id":72},"note_block":{"id":73},"white_bed":{"id":74},"orange_bed":{"id":75},"magenta_bed":{"id":76},"light_blue_bed":{"id":77},"yellow_bed":{"id":78},"lime_bed":{"id":79},"pink_bed":{"id":80},"gray_bed":{"id":81},"light_gray_bed":{"id":82},"cyan_bed":{"id":83},"purple_bed":{"id":84},"blue_bed":{"id":85},"brown_bed":{"id":86},"green_bed":{"id":87},"red_bed":{"id":88},"black_bed":{"id":89},"powered_rail":{"id":90},"detector_rail":{"id":91},"sticky_piston":{"id":92},"cobweb":{"id":93},"grass":{"id":94},"fern":{"id":95},"dead_bush":{"id":96},"seagrass":{"id":97},"tall_seagrass":{"id":98},"piston":{"id":99},"piston_head":{"id":100},"white_wool":{"id":101},"orange_wool":{"id":102},"magenta_wool":{"id":103},"light_blue_wool":{"id":104},"yellow_wool":{"id":105},"lime_wool":{"id":106},"pink_wool":{"id":107},"gray_wool":{"id":108},"light_gray_wool":{"id":109},"cyan_wool":{"id":110},"purple_wool":{"id":111},"blue_wool":{"id":112},"brown_wool":{"id":113},"green_wool":{"id":114},"red_wool":{"id":115},"black_wool":{"id":116},"moving_piston":{"id":117},"dandelion":{"id":118},"poppy":{"id":119},"blue_orchid":{"id":120},"allium":{"id":121},"azure_bluet":{"id":122},"red_tulip":{"id":123},"orange_tulip":{"id":124},"white_tulip":{"id":125},"pink_tulip":{"id":126},"oxeye_daisy":{"id":127},"cornflower":{"id":128},"wither_rose":{"id":129},"lily_of_the_valley":{"id":130},"brown_mushroom":{"id":131},"red_mushroom":{"id":132},"gold_block":{"id":133},"iron_block":{"id":134},"bricks":{"id":135},"tnt":{"id":136},"bookshelf":{"id":137},"mossy_cobblestone":{"id":138},"obsidian":{"id":139},"torch":{"id":140},"wall_torch":{"id":141},"fire":{"id":142},"spawner":{"id":143},"oak_stairs":{"id":144},"chest":{"id":145},"redstone_wire":{"id":146},"diamond_ore":{"id":147},"diamond_block":{"id":148},"crafting_table":{"id":149},"wheat":{"id":150},"farmland":{"id":151},"furnace":{"id":152},"oak_sign":{"id":153},"spruce_sign":{"id":154},"birch_sign":{"id":155},"acacia_sign":{"id":156},"jungle_sign":{"id":157},"dark_oak_sign":{"id":158},"oak_door":{"id":159},"ladder":{"id":160},"rail":{"id":161},"cobblestone_stairs":{"id":162},"oak_wall_sign":{"id":163},"spruce_wall_sign":{"id":164},"birch_wall_sign":{"id":165},"acacia_wall_sign":{"id":166},"jungle_wall_sign":{"id":167},"dark_oak_wall_sign":{"id":168},"lever":{"id":169},"stone_pressure_plate":{"id":170},"iron_door":{"id":171},"oak_pressure_plate":{"id":172},"spruce_pressure_plate":{"id":173},"birch_pressure_plate":{"id":174},"jungle_pressure_plate":{"id":175},"acacia_pressure_plate":{"id":176},"dark_oak_pressure_plate":{"id":177},"redstone_ore":{"id":178},"redstone_torch":{"id":179},"redstone_wall_torch":{"id":180},"stone_button":{"id":181},"snow":{"id":182},"ice":{"id":183},"snow_block":{"id":184},"cactus":{"id":185},"clay":{"id":186},"sugar_cane":{"id":187},"jukebox":{"id":188},"oak_fence":{"id":189},"pumpkin":{"id":190},"netherrack":{"id":191},"soul_sand":{"id":192},"glowstone":{"id":193},"nether_portal":{"id":194},"carved_pumpkin":{"id":195},"jack_o_lantern":{"id":196},"cake":{"id":197},"repeater":{"id":198},"white_stained_glass":{"id":199},"orange_stained_glass":{"id":200},"magenta_stained_glass":{"id":201},"light_blue_stained_glass":{"id":202},"yellow_stained_glass":{"id":203},"lime_stained_glass":{"id":204},"pink_stained_glass":{"id":205},"gray_stained_glass":{"id":206},"light_gray_stained_glass":{"id":207},"cyan_stained_glass":{"id":208},"purple_stained_glass":{"id":209},"blue_stained_glass":{"id":210},"brown_stained_glass":{"id":211},"green_stained_glass":{"id":212},"red_stained_glass":{"id":213},"black_stained_glass":{"id":214},"oak_trapdoor":{"id":215},"spruce_trapdoor":{"id":216},"birch_trapdoor":{"id":217},"jungle_trapdoor":{"id":218},"acacia_trapdoor":{"id":219},"dark_oak_trapdoor":{"id":220},"stone_bricks":{"id":221},"mossy_stone_bricks":{"id":222},"cracked_stone_bricks":{"id":223},"chiseled_stone_bricks":{"id":224},"infested_stone":{"id":225},"infested_cobblestone":{"id":226},"infested_stone_bricks":{"id":227},"infested_mossy_stone_bricks":{"id":228},"infested_cracked_stone_bricks":{"id":229},"infested_chiseled_stone_bricks":{"id":230},"brown_mushroom_block":{"id":231},"red_mushroom_block":{"id":232},"mushroom_stem":{"id":233},"iron_bars":{"id":234},"glass_pane":{"id":235},"melon":{"id":236},"attached_pumpkin_stem":{"id":237},"attached_melon_stem":{"id":238},"pumpkin_stem":{"id":239},"melon_stem":{"id":240},"vine":{"id":241},"oak_fence_gate":{"id":242},"brick_stairs":{"id":243},"stone_brick_stairs":{"id":244},"mycelium":{"id":245},"lily_pad":{"id":246},"nether_bricks":{"id":247},"nether_brick_fence":{"id":248},"nether_brick_stairs":{"id":249},"nether_wart":{"id":250},"enchanting_table":{"id":251},"brewing_stand":{"id":252},"cauldron":{"id":253},"end_portal":{"id":254},"end_portal_frame":{"id":255},"end_stone":{"id":256},"dragon_egg":{"id":257},"redstone_lamp":{"id":258},"cocoa":{"id":259},"sandstone_stairs":{"id":260},"emerald_ore":{"id":261},"ender_chest":{"id":262},"tripwire_hook":{"id":263},"tripwire":{"id":264},"emerald_block":{"id":265},"spruce_stairs":{"id":266},"birch_stairs":{"id":267},"jungle_stairs":{"id":268},"command_block":{"id":269},"beacon":{"id":270},"cobblestone_wall":{"id":271},"mossy_cobblestone_wall":{"id":272},"flower_pot":{"id":273},"potted_oak_sapling":{"id":274},"potted_spruce_sapling":{"id":275},"potted_birch_sapling":{"id":276},"potted_jungle_sapling":{"id":277},"potted_acacia_sapling":{"id":278},"potted_dark_oak_sapling":{"id":279},"potted_fern":{"id":280},"potted_dandelion":{"id":281},"potted_poppy":{"id":282},"potted_blue_orchid":{"id":283},"potted_allium":{"id":284},"potted_azure_bluet":{"id":285},"potted_red_tulip":{"id":286},"potted_orange_tulip":{"id":287},"potted_white_tulip":{"id":288},"potted_pink_tulip":{"id":289},"potted_oxeye_daisy":{"id":290},"potted_cornflower":{"id":291},"potted_lily_of_the_valley":{"id":292},"potted_wither_rose":{"id":293},"potted_red_mushroom":{"id":294},"potted_brown_mushroom":{"id":295},"potted_dead_bush":{"id":296},"potted_cactus":{"id":297},"carrots":{"id":298},"potatoes":{"id":299},"oak_button":{"id":300},"spruce_button":{"id":301},"birch_button":{"id":302},"jungle_button":{"id":303},"acacia_button":{"id":304},"dark_oak_button":{"id":305},"skeleton_skull":{"id":306},"skeleton_wall_skull":{"id":307},"wither_skeleton_skull":{"id":308},"wither_skeleton_wall_skull":{"id":309},"zombie_head":{"id":310},"zombie_wall_head":{"id":311},"player_head":{"id":312},"player_wall_head":{"id":313},"creeper_head":{"id":314},"creeper_wall_head":{"id":315},"dragon_head":{"id":316},"dragon_wall_head":{"id":317},"anvil":{"id":318},"chipped_anvil":{"id":319},"damaged_anvil":{"id":320},"trapped_chest":{"id":321},"light_weighted_pressure_plate":{"id":322},"heavy_weighted_pressure_plate":{"id":323},"comparator":{"id":324},"daylight_detector":{"id":325},"redstone_block":{"id":326},"nether_quartz_ore":{"id":327},"hopper":{"id":328},"quartz_block":{"id":329},"chiseled_quartz_block":{"id":330},"quartz_pillar":{"id":331},"quartz_stairs":{"id":332},"activator_rail":{"id":333},"dropper":{"id":334},"white_terracotta":{"id":335},"orange_terracotta":{"id":336},"magenta_terracotta":{"id":337},"light_blue_terracotta":{"id":338},"yellow_terracotta":{"id":339},"lime_terracotta":{"id":340},"pink_terracotta":{"id":341},"gray_terracotta":{"id":342},"light_gray_terracotta":{"id":343},"cyan_terracotta":{"id":344},"purple_terracotta":{"id":345},"blue_terracotta":{"id":346},"brown_terracotta":{"id":347},"green_terracotta":{"id":348},"red_terracotta":{"id":349},"black_terracotta":{"id":350},"white_stained_glass_pane":{"id":351},"orange_stained_glass_pane":{"id":352},"magenta_stained_glass_pane":{"id":353},"light_blue_stained_glass_pane":{"id":354},"yellow_stained_glass_pane":{"id":355},"lime_stained_glass_pane":{"id":356},"pink_stained_glass_pane":{"id":357},"gray_stained_glass_pane":{"id":358},"light_gray_stained_glass_pane":{"id":359},"cyan_stained_glass_pane":{"id":360},"purple_stained_glass_pane":{"id":361},"blue_stained_glass_pane":{"id":362},"brown_stained_glass_pane":{"id":363},"green_stained_glass_pane":{"id":364},"red_stained_glass_pane":{"id":365},"black_stained_glass_pane":{"id":366},"acacia_stairs":{"id":367},"dark_oak_stairs":{"id":368},"slime_block":{"id":369},"barrier":{"id":370},"iron_trapdoor":{"id":371},"prismarine":{"id":372},"prismarine_bricks":{"id":373},"dark_prismarine":{"id":374},"prismarine_stairs":{"id":375},"prismarine_brick_stairs":{"id":376},"dark_prismarine_stairs":{"id":377},"prismarine_slab":{"id":378},"prismarine_brick_slab":{"id":379},"dark_prismarine_slab":{"id":380},"sea_lantern":{"id":381},"hay_block":{"id":382},"white_carpet":{"id":383},"orange_carpet":{"id":384},"magenta_carpet":{"id":385},"light_blue_carpet":{"id":386},"yellow_carpet":{"id":387},"lime_carpet":{"id":388},"pink_carpet":{"id":389},"gray_carpet":{"id":390},"light_gray_carpet":{"id":391},"cyan_carpet":{"id":392},"purple_carpet":{"id":393},"blue_carpet":{"id":394},"brown_carpet":{"id":395},"green_carpet":{"id":396},"red_carpet":{"id":397},"black_carpet":{"id":398},"terracotta":{"id":399},"coal_block":{"id":400},"packed_ice":{"id":401},"sunflower":{"id":402},"lilac":{"id":403},"rose_bush":{"id":404},"peony":{"id":405},"tall_grass":{"id":406},"large_fern":{"id":407},"white_banner":{"id":408},"orange_banner":{"id":409},"magenta_banner":{"id":410},"light_blue_banner":{"id":411},"yellow_banner":{"id":412},"lime_banner":{"id":413},"pink_banner":{"id":414},"gray_banner":{"id":415},"light_gray_banner":{"id":416},"cyan_banner":{"id":417},"purple_banner":{"id":418},"blue_banner":{"id":419},"brown_banner":{"id":420},"green_banner":{"id":421},"red_banner":{"id":422},"black_banner":{"id":423},"white_wall_banner":{"id":424},"orange_wall_banner":{"id":425},"magenta_wall_banner":{"id":426},"light_blue_wall_banner":{"id":427},"yellow_wall_banner":{"id":428},"lime_wall_banner":{"id":429},"pink_wall_banner":{"id":430},"gray_wall_banner":{"id":431},"light_gray_wall_banner":{"id":432},"cyan_wall_banner":{"id":433},"purple_wall_banner":{"id":434},"blue_wall_banner":{"id":435},"brown_wall_banner":{"id":436},"green_wall_banner":{"id":437},"red_wall_banner":{"id":438},"black_wall_banner":{"id":439},"red_sandstone":{"id":440},"chiseled_red_sandstone":{"id":441},"cut_red_sandstone":{"id":442},"red_sandstone_stairs":{"id":443},"oak_slab":{"id":444},"spruce_slab":{"id":445},"birch_slab":{"id":446},"jungle_slab":{"id":447},"acacia_slab":{"id":448},"dark_oak_slab":{"id":449},"stone_slab":{"id":450},"smooth_stone_slab":{"id":451},"sandstone_slab":{"id":452},"cut_sandstone_slab":{"id":453},"petrified_oak_slab":{"id":454},"cobblestone_slab":{"id":455},"brick_slab":{"id":456},"stone_brick_slab":{"id":457},"nether_brick_slab":{"id":458},"quartz_slab":{"id":459},"red_sandstone_slab":{"id":460},"cut_red_sandstone_slab":{"id":461},"purpur_slab":{"id":462},"smooth_stone":{"id":463},"smooth_sandstone":{"id":464},"smooth_quartz":{"id":465},"smooth_red_sandstone":{"id":466},"spruce_fence_gate":{"id":467},"birch_fence_gate":{"id":468},"jungle_fence_gate":{"id":469},"acacia_fence_gate":{"id":470},"dark_oak_fence_gate":{"id":471},"spruce_fence":{"id":472},"birch_fence":{"id":473},"jungle_fence":{"id":474},"acacia_fence":{"id":475},"dark_oak_fence":{"id":476},"spruce_door":{"id":477},"birch_door":{"id":478},"jungle_door":{"id":479},"acacia_door":{"id":480},"dark_oak_door":{"id":481},"end_rod":{"id":482},"chorus_plant":{"id":483},"chorus_flower":{"id":484},"purpur_block":{"id":485},"purpur_pillar":{"id":486},"purpur_stairs":{"id":487},"end_stone_bricks":{"id":488},"beetroots":{"id":489},"grass_path":{"id":490},"end_gateway":{"id":491},"repeating_command_block":{"id":492},"chain_command_block":{"id":493},"frosted_ice":{"id":494},"magma_block":{"id":495},"nether_wart_block":{"id":496},"red_nether_bricks":{"id":497},"bone_block":{"id":498},"structure_void":{"id":499},"observer":{"id":500},"shulker_box":{"id":501},"white_shulker_box":{"id":502},"orange_shulker_box":{"id":503},"magenta_shulker_box":{"id":504},"light_blue_shulker_box":{"id":505},"yellow_shulker_box":{"id":506},"lime_shulker_box":{"id":507},"pink_shulker_box":{"id":508},"gray_shulker_box":{"id":509},"light_gray_shulker_box":{"id":510},"cyan_shulker_box":{"id":511},"purple_shulker_box":{"id":512},"blue_shulker_box":{"id":513},"brown_shulker_box":{"id":514},"green_shulker_box":{"id":515},"red_shulker_box":{"id":516},"black_shulker_box":{"id":517},"white_glazed_terracotta":{"id":518},"orange_glazed_terracotta":{"id":519},"magenta_glazed_terracotta":{"id":520},"light_blue_glazed_terracotta":{"id":521},"yellow_glazed_terracotta":{"id":522},"lime_glazed_terracotta":{"id":523},"pink_glazed_terracotta":{"id":524},"gray_glazed_terracotta":{"id":525},"light_gray_glazed_terracotta":{"id":526},"cyan_glazed_terracotta":{"id":527},"purple_glazed_terracotta":{"id":528},"blue_glazed_terracotta":{"id":529},"brown_glazed_terracotta":{"id":530},"green_glazed_terracotta":{"id":531},"red_glazed_terracotta":{"id":532},"black_glazed_terracotta":{"id":533},"white_concrete":{"id":534},"orange_concrete":{"id":535},"magenta_concrete":{"id":536},"light_blue_concrete":{"id":537},"yellow_concrete":{"id":538},"lime_concrete":{"id":539},"pink_concrete":{"id":540},"gray_concrete":{"id":541},"light_gray_concrete":{"id":542},"cyan_concrete":{"id":543},"purple_concrete":{"id":544},"blue_concrete":{"id":545},"brown_concrete":{"id":546},"green_concrete":{"id":547},"red_concrete":{"id":548},"black_concrete":{"id":549},"white_concrete_powder":{"id":550},"orange_concrete_powder":{"id":551},"magenta_concrete_powder":{"id":552},"light_blue_concrete_powder":{"id":553},"yellow_concrete_powder":{"id":554},"lime_concrete_powder":{"id":555},"pink_concrete_powder":{"id":556},"gray_concrete_powder":{"id":557},"light_gray_concrete_powder":{"id":558},"cyan_concrete_powder":{"id":559},"purple_concrete_powder":{"id":560},"blue_concrete_powder":{"id":561},"brown_concrete_powder":{"id":562},"green_concrete_powder":{"id":563},"red_concrete_powder":{"id":564},"black_concrete_powder":{"id":565},"kelp":{"id":566},"kelp_plant":{"id":567},"dried_kelp_block":{"id":568},"turtle_egg":{"id":569},"dead_tube_coral_block":{"id":570},"dead_brain_coral_block":{"id":571},"dead_bubble_coral_block":{"id":572},"dead_fire_coral_block":{"id":573},"dead_horn_coral_block":{"id":574},"tube_coral_block":{"id":575},"brain_coral_block":{"id":576},"bubble_coral_block":{"id":577},"fire_coral_block":{"id":578},"horn_coral_block":{"id":579},"dead_tube_coral":{"id":580},"dead_brain_coral":{"id":581},"dead_bubble_coral":{"id":582},"dead_fire_coral":{"id":583},"dead_horn_coral":{"id":584},"tube_coral":{"id":585},"brain_coral":{"id":586},"bubble_coral":{"id":587},"fire_coral":{"id":588},"horn_coral":{"id":589},"dead_tube_coral_fan":{"id":590},"dead_brain_coral_fan":{"id":591},"dead_bubble_coral_fan":{"id":592},"dead_fire_coral_fan":{"id":593},"dead_horn_coral_fan":{"id":594},"tube_coral_fan":{"id":595},"brain_coral_fan":{"id":596},"bubble_coral_fan":{"id":597},"fire_coral_fan":{"id":598},"horn_coral_fan":{"id":599},"dead_tube_coral_wall_fan":{"id":600},"dead_brain_coral_wall_fan":{"id":601},"dead_bubble_coral_wall_fan":{"id":602},"dead_fire_coral_wall_fan":{"id":603},"dead_horn_coral_wall_fan":{"id":604},"tube_coral_wall_fan":{"id":605},"brain_coral_wall_fan":{"id":606},"bubble_coral_wall_fan":{"id":607},"fire_coral_wall_fan":{"id":608},"horn_coral_wall_fan":{"id":609},"sea_pickle":{"id":610},"blue_ice":{"id":611},"conduit":{"id":612},"bamboo_sapling":{"id":613},"bamboo":{"id":614},"potted_bamboo":{"id":615},"void_air":{"id":616},"cave_air":{"id":617},"bubble_column":{"id":618},"polished_granite_stairs":{"id":619},"smooth_red_sandstone_stairs":{"id":620},"mossy_stone_brick_stairs":{"id":621},"polished_diorite_stairs":{"id":622},"mossy_cobblestone_stairs":{"id":623},"end_stone_brick_stairs":{"id":624},"stone_stairs":{"id":625},"smooth_sandstone_stairs":{"id":626},"smooth_quartz_stairs":{"id":627},"granite_stairs":{"id":628},"andesite_stairs":{"id":629},"red_nether_brick_stairs":{"id":630},"polished_andesite_stairs":{"id":631},"diorite_stairs":{"id":632},"polished_granite_slab":{"id":633},"smooth_red_sandstone_slab":{"id":634},"mossy_stone_brick_slab":{"id":635},"polished_diorite_slab":{"id":636},"mossy_cobblestone_slab":{"id":637},"end_stone_brick_slab":{"id":638},"smooth_sandstone_slab":{"id":639},"smooth_quartz_slab":{"id":640},"granite_slab":{"id":641},"andesite_slab":{"id":642},"red_nether_brick_slab":{"id":643},"polished_andesite_slab":{"id":644},"diorite_slab":{"id":645},"brick_wall":{"id":646},"prismarine_wall":{"id":647},"red_sandstone_wall":{"id":648},"mossy_stone_brick_wall":{"id":649},"granite_wall":{"id":650},"stone_brick_wall":{"id":651},"nether_brick_wall":{"id":652},"andesite_wall":{"id":653},"red_nether_brick_wall":{"id":654},"sandstone_wall":{"id":655},"end_stone_brick_wall":{"id":656},"diorite_wall":{"id":657},"scaffolding":{"id":658},"loom":{"id":659},"barrel":{"id":660},"smoker":{"id":661},"blast_furnace":{"id":662},"cartography_table":{"id":663},"fletching_table":{"id":664},"grindstone":{"id":665},"lectern":{"id":666},"smithing_table":{"id":667},"stonecutter":{"id":668},"bell":{"id":669},"lantern":{"id":670},"campfire":{"id":671},"sweet_berry_bush":{"id":672},"structure_block":{"id":673},"jigsaw":{"id":674},"composter":{"id":675},"bee_nest":{"id":676},"beehive":{"id":677},"honey_block":{"id":678},"honeycomb_block":{"id":679}}},"enchantment":{"id":4,"entries":{"protection":{"id":0},"fire_protection":{"id":1},"feather_falling":{"id":2},"blast_protection":{"id":3},"projectile_protection":{"id":4},"respiration":{"id":5},"aqua_affinity":{"id":6},"thorns":{"id":7},"depth_strider":{"id":8},"frost_walker":{"id":9},"binding_curse":{"id":10},"sharpness":{"id":11},"smite":{"id":12},"bane_of_arthropods":{"id":13},"knockback":{"id":14},"fire_aspect":{"id":15},"looting":{"id":16},"sweeping":{"id":17},"efficiency":{"id":18},"silk_touch":{"id":19},"unbreaking":{"id":20},"fortune":{"id":21},"power":{"id":22},"punch":{"id":23},"flame":{"id":24},"infinity":{"id":25},"luck_of_the_sea":{"id":26},"lure":{"id":27},"loyalty":{"id":28},"impaling":{"id":29},"riptide":{"id":30},"channeling":{"id":31},"multishot":{"id":32},"quick_charge":{"id":33},"piercing":{"id":34},"mending":{"id":35},"vanishing_curse":{"id":36}}},"entity_type":{"default":"pig","id":5,"entries":{"area_effect_cloud":{"id":0},"armor_stand":{"id":1},"arrow":{"id":2},"bat":{"id":3},"bee":{"id":4},"blaze":{"id":5},"boat":{"id":6},"cat":{"id":7},"cave_spider":{"id":8},"chicken":{"id":9},"cod":{"id":10},"cow":{"id":11},"creeper":{"id":12},"donkey":{"id":13},"dolphin":{"id":14},"dragon_fireball":{"id":15},"drowned":{"id":16},"elder_guardian":{"id":17},"end_crystal":{"id":18},"ender_dragon":{"id":19},"enderman":{"id":20},"endermite":{"id":21},"evoker_fangs":{"id":22},"evoker":{"id":23},"experience_orb":{"id":24},"eye_of_ender":{"id":25},"falling_block":{"id":26},"firework_rocket":{"id":27},"fox":{"id":28},"ghast":{"id":29},"giant":{"id":30},"guardian":{"id":31},"horse":{"id":32},"husk":{"id":33},"illusioner":{"id":34},"item":{"id":35},"item_frame":{"id":36},"fireball":{"id":37},"leash_knot":{"id":38},"llama":{"id":39},"llama_spit":{"id":40},"magma_cube":{"id":41},"minecart":{"id":42},"chest_minecart":{"id":43},"command_block_minecart":{"id":44},"furnace_minecart":{"id":45},"hopper_minecart":{"id":46},"spawner_minecart":{"id":47},"tnt_minecart":{"id":48},"mule":{"id":49},"mooshroom":{"id":50},"ocelot":{"id":51},"painting":{"id":52},"panda":{"id":53},"parrot":{"id":54},"pig":{"id":55},"pufferfish":{"id":56},"zombie_pigman":{"id":57},"polar_bear":{"id":58},"tnt":{"id":59},"rabbit":{"id":60},"salmon":{"id":61},"sheep":{"id":62},"shulker":{"id":63},"shulker_bullet":{"id":64},"silverfish":{"id":65},"skeleton":{"id":66},"skeleton_horse":{"id":67},"slime":{"id":68},"small_fireball":{"id":69},"snow_golem":{"id":70},"snowball":{"id":71},"spectral_arrow":{"id":72},"spider":{"id":73},"squid":{"id":74},"stray":{"id":75},"trader_llama":{"id":76},"tropical_fish":{"id":77},"turtle":{"id":78},"egg":{"id":79},"ender_pearl":{"id":80},"experience_bottle":{"id":81},"potion":{"id":82},"trident":{"id":83},"vex":{"id":84},"villager":{"id":85},"iron_golem":{"id":86},"vindicator":{"id":87},"pillager":{"id":88},"wandering_trader":{"id":89},"witch":{"id":90},"wither":{"id":91},"wither_skeleton":{"id":92},"wither_skull":{"id":93},"wolf":{"id":94},"zombie":{"id":95},"zombie_horse":{"id":96},"zombie_villager":{"id":97},"phantom":{"id":98},"ravager":{"id":99},"lightning_bolt":{"id":100},"player":{"id":101},"fishing_bobber":{"id":102}}},"item":{"default":"air","id":6,"entries":{"air":{"id":0},"stone":{"id":1},"granite":{"id":2},"polished_granite":{"id":3},"diorite":{"id":4},"polished_diorite":{"id":5},"andesite":{"id":6},"polished_andesite":{"id":7},"grass_block":{"id":8},"dirt":{"id":9},"coarse_dirt":{"id":10},"podzol":{"id":11},"cobblestone":{"id":12},"oak_planks":{"id":13},"spruce_planks":{"id":14},"birch_planks":{"id":15},"jungle_planks":{"id":16},"acacia_planks":{"id":17},"dark_oak_planks":{"id":18},"oak_sapling":{"id":19},"spruce_sapling":{"id":20},"birch_sapling":{"id":21},"jungle_sapling":{"id":22},"acacia_sapling":{"id":23},"dark_oak_sapling":{"id":24},"bedrock":{"id":25},"sand":{"id":26},"red_sand":{"id":27},"gravel":{"id":28},"gold_ore":{"id":29},"iron_ore":{"id":30},"coal_ore":{"id":31},"oak_log":{"id":32},"spruce_log":{"id":33},"birch_log":{"id":34},"jungle_log":{"id":35},"acacia_log":{"id":36},"dark_oak_log":{"id":37},"stripped_oak_log":{"id":38},"stripped_spruce_log":{"id":39},"stripped_birch_log":{"id":40},"stripped_jungle_log":{"id":41},"stripped_acacia_log":{"id":42},"stripped_dark_oak_log":{"id":43},"stripped_oak_wood":{"id":44},"stripped_spruce_wood":{"id":45},"stripped_birch_wood":{"id":46},"stripped_jungle_wood":{"id":47},"stripped_acacia_wood":{"id":48},"stripped_dark_oak_wood":{"id":49},"oak_wood":{"id":50},"spruce_wood":{"id":51},"birch_wood":{"id":52},"jungle_wood":{"id":53},"acacia_wood":{"id":54},"dark_oak_wood":{"id":55},"oak_leaves":{"id":56},"spruce_leaves":{"id":57},"birch_leaves":{"id":58},"jungle_leaves":{"id":59},"acacia_leaves":{"id":60},"dark_oak_leaves":{"id":61},"sponge":{"id":62},"wet_sponge":{"id":63},"glass":{"id":64},"lapis_ore":{"id":65},"lapis_block":{"id":66},"dispenser":{"id":67},"sandstone":{"id":68},"chiseled_sandstone":{"id":69},"cut_sandstone":{"id":70},"note_block":{"id":71},"powered_rail":{"id":72},"detector_rail":{"id":73},"sticky_piston":{"id":74},"cobweb":{"id":75},"grass":{"id":76},"fern":{"id":77},"dead_bush":{"id":78},"seagrass":{"id":79},"sea_pickle":{"id":80},"piston":{"id":81},"white_wool":{"id":82},"orange_wool":{"id":83},"magenta_wool":{"id":84},"light_blue_wool":{"id":85},"yellow_wool":{"id":86},"lime_wool":{"id":87},"pink_wool":{"id":88},"gray_wool":{"id":89},"light_gray_wool":{"id":90},"cyan_wool":{"id":91},"purple_wool":{"id":92},"blue_wool":{"id":93},"brown_wool":{"id":94},"green_wool":{"id":95},"red_wool":{"id":96},"black_wool":{"id":97},"dandelion":{"id":98},"poppy":{"id":99},"blue_orchid":{"id":100},"allium":{"id":101},"azure_bluet":{"id":102},"red_tulip":{"id":103},"orange_tulip":{"id":104},"white_tulip":{"id":105},"pink_tulip":{"id":106},"oxeye_daisy":{"id":107},"cornflower":{"id":108},"lily_of_the_valley":{"id":109},"wither_rose":{"id":110},"brown_mushroom":{"id":111},"red_mushroom":{"id":112},"gold_block":{"id":113},"iron_block":{"id":114},"oak_slab":{"id":115},"spruce_slab":{"id":116},"birch_slab":{"id":117},"jungle_slab":{"id":118},"acacia_slab":{"id":119},"dark_oak_slab":{"id":120},"stone_slab":{"id":121},"smooth_stone_slab":{"id":122},"sandstone_slab":{"id":123},"cut_sandstone_slab":{"id":124},"petrified_oak_slab":{"id":125},"cobblestone_slab":{"id":126},"brick_slab":{"id":127},"stone_brick_slab":{"id":128},"nether_brick_slab":{"id":129},"quartz_slab":{"id":130},"red_sandstone_slab":{"id":131},"cut_red_sandstone_slab":{"id":132},"purpur_slab":{"id":133},"prismarine_slab":{"id":134},"prismarine_brick_slab":{"id":135},"dark_prismarine_slab":{"id":136},"smooth_quartz":{"id":137},"smooth_red_sandstone":{"id":138},"smooth_sandstone":{"id":139},"smooth_stone":{"id":140},"bricks":{"id":141},"tnt":{"id":142},"bookshelf":{"id":143},"mossy_cobblestone":{"id":144},"obsidian":{"id":145},"torch":{"id":146},"end_rod":{"id":147},"chorus_plant":{"id":148},"chorus_flower":{"id":149},"purpur_block":{"id":150},"purpur_pillar":{"id":151},"purpur_stairs":{"id":152},"spawner":{"id":153},"oak_stairs":{"id":154},"chest":{"id":155},"diamond_ore":{"id":156},"diamond_block":{"id":157},"crafting_table":{"id":158},"farmland":{"id":159},"furnace":{"id":160},"ladder":{"id":161},"rail":{"id":162},"cobblestone_stairs":{"id":163},"lever":{"id":164},"stone_pressure_plate":{"id":165},"oak_pressure_plate":{"id":166},"spruce_pressure_plate":{"id":167},"birch_pressure_plate":{"id":168},"jungle_pressure_plate":{"id":169},"acacia_pressure_plate":{"id":170},"dark_oak_pressure_plate":{"id":171},"redstone_ore":{"id":172},"redstone_torch":{"id":173},"stone_button":{"id":174},"snow":{"id":175},"ice":{"id":176},"snow_block":{"id":177},"cactus":{"id":178},"clay":{"id":179},"jukebox":{"id":180},"oak_fence":{"id":181},"spruce_fence":{"id":182},"birch_fence":{"id":183},"jungle_fence":{"id":184},"acacia_fence":{"id":185},"dark_oak_fence":{"id":186},"pumpkin":{"id":187},"carved_pumpkin":{"id":188},"netherrack":{"id":189},"soul_sand":{"id":190},"glowstone":{"id":191},"jack_o_lantern":{"id":192},"oak_trapdoor":{"id":193},"spruce_trapdoor":{"id":194},"birch_trapdoor":{"id":195},"jungle_trapdoor":{"id":196},"acacia_trapdoor":{"id":197},"dark_oak_trapdoor":{"id":198},"infested_stone":{"id":199},"infested_cobblestone":{"id":200},"infested_stone_bricks":{"id":201},"infested_mossy_stone_bricks":{"id":202},"infested_cracked_stone_bricks":{"id":203},"infested_chiseled_stone_bricks":{"id":204},"stone_bricks":{"id":205},"mossy_stone_bricks":{"id":206},"cracked_stone_bricks":{"id":207},"chiseled_stone_bricks":{"id":208},"brown_mushroom_block":{"id":209},"red_mushroom_block":{"id":210},"mushroom_stem":{"id":211},"iron_bars":{"id":212},"glass_pane":{"id":213},"melon":{"id":214},"vine":{"id":215},"oak_fence_gate":{"id":216},"spruce_fence_gate":{"id":217},"birch_fence_gate":{"id":218},"jungle_fence_gate":{"id":219},"acacia_fence_gate":{"id":220},"dark_oak_fence_gate":{"id":221},"brick_stairs":{"id":222},"stone_brick_stairs":{"id":223},"mycelium":{"id":224},"lily_pad":{"id":225},"nether_bricks":{"id":226},"nether_brick_fence":{"id":227},"nether_brick_stairs":{"id":228},"enchanting_table":{"id":229},"end_portal_frame":{"id":230},"end_stone":{"id":231},"end_stone_bricks":{"id":232},"dragon_egg":{"id":233},"redstone_lamp":{"id":234},"sandstone_stairs":{"id":235},"emerald_ore":{"id":236},"ender_chest":{"id":237},"tripwire_hook":{"id":238},"emerald_block":{"id":239},"spruce_stairs":{"id":240},"birch_stairs":{"id":241},"jungle_stairs":{"id":242},"command_block":{"id":243},"beacon":{"id":244},"cobblestone_wall":{"id":245},"mossy_cobblestone_wall":{"id":246},"brick_wall":{"id":247},"prismarine_wall":{"id":248},"red_sandstone_wall":{"id":249},"mossy_stone_brick_wall":{"id":250},"granite_wall":{"id":251},"stone_brick_wall":{"id":252},"nether_brick_wall":{"id":253},"andesite_wall":{"id":254},"red_nether_brick_wall":{"id":255},"sandstone_wall":{"id":256},"end_stone_brick_wall":{"id":257},"diorite_wall":{"id":258},"oak_button":{"id":259},"spruce_button":{"id":260},"birch_button":{"id":261},"jungle_button":{"id":262},"acacia_button":{"id":263},"dark_oak_button":{"id":264},"anvil":{"id":265},"chipped_anvil":{"id":266},"damaged_anvil":{"id":267},"trapped_chest":{"id":268},"light_weighted_pressure_plate":{"id":269},"heavy_weighted_pressure_plate":{"id":270},"daylight_detector":{"id":271},"redstone_block":{"id":272},"nether_quartz_ore":{"id":273},"hopper":{"id":274},"chiseled_quartz_block":{"id":275},"quartz_block":{"id":276},"quartz_pillar":{"id":277},"quartz_stairs":{"id":278},"activator_rail":{"id":279},"dropper":{"id":280},"white_terracotta":{"id":281},"orange_terracotta":{"id":282},"magenta_terracotta":{"id":283},"light_blue_terracotta":{"id":284},"yellow_terracotta":{"id":285},"lime_terracotta":{"id":286},"pink_terracotta":{"id":287},"gray_terracotta":{"id":288},"light_gray_terracotta":{"id":289},"cyan_terracotta":{"id":290},"purple_terracotta":{"id":291},"blue_terracotta":{"id":292},"brown_terracotta":{"id":293},"green_terracotta":{"id":294},"red_terracotta":{"id":295},"black_terracotta":{"id":296},"barrier":{"id":297},"iron_trapdoor":{"id":298},"hay_block":{"id":299},"white_carpet":{"id":300},"orange_carpet":{"id":301},"magenta_carpet":{"id":302},"light_blue_carpet":{"id":303},"yellow_carpet":{"id":304},"lime_carpet":{"id":305},"pink_carpet":{"id":306},"gray_carpet":{"id":307},"light_gray_carpet":{"id":308},"cyan_carpet":{"id":309},"purple_carpet":{"id":310},"blue_carpet":{"id":311},"brown_carpet":{"id":312},"green_carpet":{"id":313},"red_carpet":{"id":314},"black_carpet":{"id":315},"terracotta":{"id":316},"coal_block":{"id":317},"packed_ice":{"id":318},"acacia_stairs":{"id":319},"dark_oak_stairs":{"id":320},"slime_block":{"id":321},"grass_path":{"id":322},"sunflower":{"id":323},"lilac":{"id":324},"rose_bush":{"id":325},"peony":{"id":326},"tall_grass":{"id":327},"large_fern":{"id":328},"white_stained_glass":{"id":329},"orange_stained_glass":{"id":330},"magenta_stained_glass":{"id":331},"light_blue_stained_glass":{"id":332},"yellow_stained_glass":{"id":333},"lime_stained_glass":{"id":334},"pink_stained_glass":{"id":335},"gray_stained_glass":{"id":336},"light_gray_stained_glass":{"id":337},"cyan_stained_glass":{"id":338},"purple_stained_glass":{"id":339},"blue_stained_glass":{"id":340},"brown_stained_glass":{"id":341},"green_stained_glass":{"id":342},"red_stained_glass":{"id":343},"black_stained_glass":{"id":344},"white_stained_glass_pane":{"id":345},"orange_stained_glass_pane":{"id":346},"magenta_stained_glass_pane":{"id":347},"light_blue_stained_glass_pane":{"id":348},"yellow_stained_glass_pane":{"id":349},"lime_stained_glass_pane":{"id":350},"pink_stained_glass_pane":{"id":351},"gray_stained_glass_pane":{"id":352},"light_gray_stained_glass_pane":{"id":353},"cyan_stained_glass_pane":{"id":354},"purple_stained_glass_pane":{"id":355},"blue_stained_glass_pane":{"id":356},"brown_stained_glass_pane":{"id":357},"green_stained_glass_pane":{"id":358},"red_stained_glass_pane":{"id":359},"black_stained_glass_pane":{"id":360},"prismarine":{"id":361},"prismarine_bricks":{"id":362},"dark_prismarine":{"id":363},"prismarine_stairs":{"id":364},"prismarine_brick_stairs":{"id":365},"dark_prismarine_stairs":{"id":366},"sea_lantern":{"id":367},"red_sandstone":{"id":368},"chiseled_red_sandstone":{"id":369},"cut_red_sandstone":{"id":370},"red_sandstone_stairs":{"id":371},"repeating_command_block":{"id":372},"chain_command_block":{"id":373},"magma_block":{"id":374},"nether_wart_block":{"id":375},"red_nether_bricks":{"id":376},"bone_block":{"id":377},"structure_void":{"id":378},"observer":{"id":379},"shulker_box":{"id":380},"white_shulker_box":{"id":381},"orange_shulker_box":{"id":382},"magenta_shulker_box":{"id":383},"light_blue_shulker_box":{"id":384},"yellow_shulker_box":{"id":385},"lime_shulker_box":{"id":386},"pink_shulker_box":{"id":387},"gray_shulker_box":{"id":388},"light_gray_shulker_box":{"id":389},"cyan_shulker_box":{"id":390},"purple_shulker_box":{"id":391},"blue_shulker_box":{"id":392},"brown_shulker_box":{"id":393},"green_shulker_box":{"id":394},"red_shulker_box":{"id":395},"black_shulker_box":{"id":396},"white_glazed_terracotta":{"id":397},"orange_glazed_terracotta":{"id":398},"magenta_glazed_terracotta":{"id":399},"light_blue_glazed_terracotta":{"id":400},"yellow_glazed_terracotta":{"id":401},"lime_glazed_terracotta":{"id":402},"pink_glazed_terracotta":{"id":403},"gray_glazed_terracotta":{"id":404},"light_gray_glazed_terracotta":{"id":405},"cyan_glazed_terracotta":{"id":406},"purple_glazed_terracotta":{"id":407},"blue_glazed_terracotta":{"id":408},"brown_glazed_terracotta":{"id":409},"green_glazed_terracotta":{"id":410},"red_glazed_terracotta":{"id":411},"black_glazed_terracotta":{"id":412},"white_concrete":{"id":413},"orange_concrete":{"id":414},"magenta_concrete":{"id":415},"light_blue_concrete":{"id":416},"yellow_concrete":{"id":417},"lime_concrete":{"id":418},"pink_concrete":{"id":419},"gray_concrete":{"id":420},"light_gray_concrete":{"id":421},"cyan_concrete":{"id":422},"purple_concrete":{"id":423},"blue_concrete":{"id":424},"brown_concrete":{"id":425},"green_concrete":{"id":426},"red_concrete":{"id":427},"black_concrete":{"id":428},"white_concrete_powder":{"id":429},"orange_concrete_powder":{"id":430},"magenta_concrete_powder":{"id":431},"light_blue_concrete_powder":{"id":432},"yellow_concrete_powder":{"id":433},"lime_concrete_powder":{"id":434},"pink_concrete_powder":{"id":435},"gray_concrete_powder":{"id":436},"light_gray_concrete_powder":{"id":437},"cyan_concrete_powder":{"id":438},"purple_concrete_powder":{"id":439},"blue_concrete_powder":{"id":440},"brown_concrete_powder":{"id":441},"green_concrete_powder":{"id":442},"red_concrete_powder":{"id":443},"black_concrete_powder":{"id":444},"turtle_egg":{"id":445},"dead_tube_coral_block":{"id":446},"dead_brain_coral_block":{"id":447},"dead_bubble_coral_block":{"id":448},"dead_fire_coral_block":{"id":449},"dead_horn_coral_block":{"id":450},"tube_coral_block":{"id":451},"brain_coral_block":{"id":452},"bubble_coral_block":{"id":453},"fire_coral_block":{"id":454},"horn_coral_block":{"id":455},"tube_coral":{"id":456},"brain_coral":{"id":457},"bubble_coral":{"id":458},"fire_coral":{"id":459},"horn_coral":{"id":460},"dead_brain_coral":{"id":461},"dead_bubble_coral":{"id":462},"dead_fire_coral":{"id":463},"dead_horn_coral":{"id":464},"dead_tube_coral":{"id":465},"tube_coral_fan":{"id":466},"brain_coral_fan":{"id":467},"bubble_coral_fan":{"id":468},"fire_coral_fan":{"id":469},"horn_coral_fan":{"id":470},"dead_tube_coral_fan":{"id":471},"dead_brain_coral_fan":{"id":472},"dead_bubble_coral_fan":{"id":473},"dead_fire_coral_fan":{"id":474},"dead_horn_coral_fan":{"id":475},"blue_ice":{"id":476},"conduit":{"id":477},"polished_granite_stairs":{"id":478},"smooth_red_sandstone_stairs":{"id":479},"mossy_stone_brick_stairs":{"id":480},"polished_diorite_stairs":{"id":481},"mossy_cobblestone_stairs":{"id":482},"end_stone_brick_stairs":{"id":483},"stone_stairs":{"id":484},"smooth_sandstone_stairs":{"id":485},"smooth_quartz_stairs":{"id":486},"granite_stairs":{"id":487},"andesite_stairs":{"id":488},"red_nether_brick_stairs":{"id":489},"polished_andesite_stairs":{"id":490},"diorite_stairs":{"id":491},"polished_granite_slab":{"id":492},"smooth_red_sandstone_slab":{"id":493},"mossy_stone_brick_slab":{"id":494},"polished_diorite_slab":{"id":495},"mossy_cobblestone_slab":{"id":496},"end_stone_brick_slab":{"id":497},"smooth_sandstone_slab":{"id":498},"smooth_quartz_slab":{"id":499},"granite_slab":{"id":500},"andesite_slab":{"id":501},"red_nether_brick_slab":{"id":502},"polished_andesite_slab":{"id":503},"diorite_slab":{"id":504},"scaffolding":{"id":505},"iron_door":{"id":506},"oak_door":{"id":507},"spruce_door":{"id":508},"birch_door":{"id":509},"jungle_door":{"id":510},"acacia_door":{"id":511},"dark_oak_door":{"id":512},"repeater":{"id":513},"comparator":{"id":514},"structure_block":{"id":515},"jigsaw":{"id":516},"composter":{"id":517},"turtle_helmet":{"id":518},"scute":{"id":519},"iron_shovel":{"id":520},"iron_pickaxe":{"id":521},"iron_axe":{"id":522},"flint_and_steel":{"id":523},"apple":{"id":524},"bow":{"id":525},"arrow":{"id":526},"coal":{"id":527},"charcoal":{"id":528},"diamond":{"id":529},"iron_ingot":{"id":530},"gold_ingot":{"id":531},"iron_sword":{"id":532},"wooden_sword":{"id":533},"wooden_shovel":{"id":534},"wooden_pickaxe":{"id":535},"wooden_axe":{"id":536},"stone_sword":{"id":537},"stone_shovel":{"id":538},"stone_pickaxe":{"id":539},"stone_axe":{"id":540},"diamond_sword":{"id":541},"diamond_shovel":{"id":542},"diamond_pickaxe":{"id":543},"diamond_axe":{"id":544},"stick":{"id":545},"bowl":{"id":546},"mushroom_stew":{"id":547},"golden_sword":{"id":548},"golden_shovel":{"id":549},"golden_pickaxe":{"id":550},"golden_axe":{"id":551},"string":{"id":552},"feather":{"id":553},"gunpowder":{"id":554},"wooden_hoe":{"id":555},"stone_hoe":{"id":556},"iron_hoe":{"id":557},"diamond_hoe":{"id":558},"golden_hoe":{"id":559},"wheat_seeds":{"id":560},"wheat":{"id":561},"bread":{"id":562},"leather_helmet":{"id":563},"leather_chestplate":{"id":564},"leather_leggings":{"id":565},"leather_boots":{"id":566},"chainmail_helmet":{"id":567},"chainmail_chestplate":{"id":568},"chainmail_leggings":{"id":569},"chainmail_boots":{"id":570},"iron_helmet":{"id":571},"iron_chestplate":{"id":572},"iron_leggings":{"id":573},"iron_boots":{"id":574},"diamond_helmet":{"id":575},"diamond_chestplate":{"id":576},"diamond_leggings":{"id":577},"diamond_boots":{"id":578},"golden_helmet":{"id":579},"golden_chestplate":{"id":580},"golden_leggings":{"id":581},"golden_boots":{"id":582},"flint":{"id":583},"porkchop":{"id":584},"cooked_porkchop":{"id":585},"painting":{"id":586},"golden_apple":{"id":587},"enchanted_golden_apple":{"id":588},"oak_sign":{"id":589},"spruce_sign":{"id":590},"birch_sign":{"id":591},"jungle_sign":{"id":592},"acacia_sign":{"id":593},"dark_oak_sign":{"id":594},"bucket":{"id":595},"water_bucket":{"id":596},"lava_bucket":{"id":597},"minecart":{"id":598},"saddle":{"id":599},"redstone":{"id":600},"snowball":{"id":601},"oak_boat":{"id":602},"leather":{"id":603},"milk_bucket":{"id":604},"pufferfish_bucket":{"id":605},"salmon_bucket":{"id":606},"cod_bucket":{"id":607},"tropical_fish_bucket":{"id":608},"brick":{"id":609},"clay_ball":{"id":610},"sugar_cane":{"id":611},"kelp":{"id":612},"dried_kelp_block":{"id":613},"bamboo":{"id":614},"paper":{"id":615},"book":{"id":616},"slime_ball":{"id":617},"chest_minecart":{"id":618},"furnace_minecart":{"id":619},"egg":{"id":620},"compass":{"id":621},"fishing_rod":{"id":622},"clock":{"id":623},"glowstone_dust":{"id":624},"cod":{"id":625},"salmon":{"id":626},"tropical_fish":{"id":627},"pufferfish":{"id":628},"cooked_cod":{"id":629},"cooked_salmon":{"id":630},"ink_sac":{"id":631},"red_dye":{"id":632},"green_dye":{"id":633},"cocoa_beans":{"id":634},"lapis_lazuli":{"id":635},"purple_dye":{"id":636},"cyan_dye":{"id":637},"light_gray_dye":{"id":638},"gray_dye":{"id":639},"pink_dye":{"id":640},"lime_dye":{"id":641},"yellow_dye":{"id":642},"light_blue_dye":{"id":643},"magenta_dye":{"id":644},"orange_dye":{"id":645},"bone_meal":{"id":646},"blue_dye":{"id":647},"brown_dye":{"id":648},"black_dye":{"id":649},"white_dye":{"id":650},"bone":{"id":651},"sugar":{"id":652},"cake":{"id":653},"white_bed":{"id":654},"orange_bed":{"id":655},"magenta_bed":{"id":656},"light_blue_bed":{"id":657},"yellow_bed":{"id":658},"lime_bed":{"id":659},"pink_bed":{"id":660},"gray_bed":{"id":661},"light_gray_bed":{"id":662},"cyan_bed":{"id":663},"purple_bed":{"id":664},"blue_bed":{"id":665},"brown_bed":{"id":666},"green_bed":{"id":667},"red_bed":{"id":668},"black_bed":{"id":669},"cookie":{"id":670},"filled_map":{"id":671},"shears":{"id":672},"melon_slice":{"id":673},"dried_kelp":{"id":674},"pumpkin_seeds":{"id":675},"melon_seeds":{"id":676},"beef":{"id":677},"cooked_beef":{"id":678},"chicken":{"id":679},"cooked_chicken":{"id":680},"rotten_flesh":{"id":681},"ender_pearl":{"id":682},"blaze_rod":{"id":683},"ghast_tear":{"id":684},"gold_nugget":{"id":685},"nether_wart":{"id":686},"potion":{"id":687},"glass_bottle":{"id":688},"spider_eye":{"id":689},"fermented_spider_eye":{"id":690},"blaze_powder":{"id":691},"magma_cream":{"id":692},"brewing_stand":{"id":693},"cauldron":{"id":694},"ender_eye":{"id":695},"glistering_melon_slice":{"id":696},"bat_spawn_egg":{"id":697},"bee_spawn_egg":{"id":698},"blaze_spawn_egg":{"id":699},"cat_spawn_egg":{"id":700},"cave_spider_spawn_egg":{"id":701},"chicken_spawn_egg":{"id":702},"cod_spawn_egg":{"id":703},"cow_spawn_egg":{"id":704},"creeper_spawn_egg":{"id":705},"dolphin_spawn_egg":{"id":706},"donkey_spawn_egg":{"id":707},"drowned_spawn_egg":{"id":708},"elder_guardian_spawn_egg":{"id":709},"enderman_spawn_egg":{"id":710},"endermite_spawn_egg":{"id":711},"evoker_spawn_egg":{"id":712},"fox_spawn_egg":{"id":713},"ghast_spawn_egg":{"id":714},"guardian_spawn_egg":{"id":715},"horse_spawn_egg":{"id":716},"husk_spawn_egg":{"id":717},"llama_spawn_egg":{"id":718},"magma_cube_spawn_egg":{"id":719},"mooshroom_spawn_egg":{"id":720},"mule_spawn_egg":{"id":721},"ocelot_spawn_egg":{"id":722},"panda_spawn_egg":{"id":723},"parrot_spawn_egg":{"id":724},"phantom_spawn_egg":{"id":725},"pig_spawn_egg":{"id":726},"pillager_spawn_egg":{"id":727},"polar_bear_spawn_egg":{"id":728},"pufferfish_spawn_egg":{"id":729},"rabbit_spawn_egg":{"id":730},"ravager_spawn_egg":{"id":731},"salmon_spawn_egg":{"id":732},"sheep_spawn_egg":{"id":733},"shulker_spawn_egg":{"id":734},"silverfish_spawn_egg":{"id":735},"skeleton_spawn_egg":{"id":736},"skeleton_horse_spawn_egg":{"id":737},"slime_spawn_egg":{"id":738},"spider_spawn_egg":{"id":739},"squid_spawn_egg":{"id":740},"stray_spawn_egg":{"id":741},"trader_llama_spawn_egg":{"id":742},"tropical_fish_spawn_egg":{"id":743},"turtle_spawn_egg":{"id":744},"vex_spawn_egg":{"id":745},"villager_spawn_egg":{"id":746},"vindicator_spawn_egg":{"id":747},"wandering_trader_spawn_egg":{"id":748},"witch_spawn_egg":{"id":749},"wither_skeleton_spawn_egg":{"id":750},"wolf_spawn_egg":{"id":751},"zombie_spawn_egg":{"id":752},"zombie_horse_spawn_egg":{"id":753},"zombie_pigman_spawn_egg":{"id":754},"zombie_villager_spawn_egg":{"id":755},"experience_bottle":{"id":756},"fire_charge":{"id":757},"writable_book":{"id":758},"written_book":{"id":759},"emerald":{"id":760},"item_frame":{"id":761},"flower_pot":{"id":762},"carrot":{"id":763},"potato":{"id":764},"baked_potato":{"id":765},"poisonous_potato":{"id":766},"map":{"id":767},"golden_carrot":{"id":768},"skeleton_skull":{"id":769},"wither_skeleton_skull":{"id":770},"player_head":{"id":771},"zombie_head":{"id":772},"creeper_head":{"id":773},"dragon_head":{"id":774},"carrot_on_a_stick":{"id":775},"nether_star":{"id":776},"pumpkin_pie":{"id":777},"firework_rocket":{"id":778},"firework_star":{"id":779},"enchanted_book":{"id":780},"nether_brick":{"id":781},"quartz":{"id":782},"tnt_minecart":{"id":783},"hopper_minecart":{"id":784},"prismarine_shard":{"id":785},"prismarine_crystals":{"id":786},"rabbit":{"id":787},"cooked_rabbit":{"id":788},"rabbit_stew":{"id":789},"rabbit_foot":{"id":790},"rabbit_hide":{"id":791},"armor_stand":{"id":792},"iron_horse_armor":{"id":793},"golden_horse_armor":{"id":794},"diamond_horse_armor":{"id":795},"leather_horse_armor":{"id":796},"lead":{"id":797},"name_tag":{"id":798},"command_block_minecart":{"id":799},"mutton":{"id":800},"cooked_mutton":{"id":801},"white_banner":{"id":802},"orange_banner":{"id":803},"magenta_banner":{"id":804},"light_blue_banner":{"id":805},"yellow_banner":{"id":806},"lime_banner":{"id":807},"pink_banner":{"id":808},"gray_banner":{"id":809},"light_gray_banner":{"id":810},"cyan_banner":{"id":811},"purple_banner":{"id":812},"blue_banner":{"id":813},"brown_banner":{"id":814},"green_banner":{"id":815},"red_banner":{"id":816},"black_banner":{"id":817},"end_crystal":{"id":818},"chorus_fruit":{"id":819},"popped_chorus_fruit":{"id":820},"beetroot":{"id":821},"beetroot_seeds":{"id":822},"beetroot_soup":{"id":823},"dragon_breath":{"id":824},"splash_potion":{"id":825},"spectral_arrow":{"id":826},"tipped_arrow":{"id":827},"lingering_potion":{"id":828},"shield":{"id":829},"elytra":{"id":830},"spruce_boat":{"id":831},"birch_boat":{"id":832},"jungle_boat":{"id":833},"acacia_boat":{"id":834},"dark_oak_boat":{"id":835},"totem_of_undying":{"id":836},"shulker_shell":{"id":837},"iron_nugget":{"id":838},"knowledge_book":{"id":839},"debug_stick":{"id":840},"music_disc_13":{"id":841},"music_disc_cat":{"id":842},"music_disc_blocks":{"id":843},"music_disc_chirp":{"id":844},"music_disc_far":{"id":845},"music_disc_mall":{"id":846},"music_disc_mellohi":{"id":847},"music_disc_stal":{"id":848},"music_disc_strad":{"id":849},"music_disc_ward":{"id":850},"music_disc_11":{"id":851},"music_disc_wait":{"id":852},"trident":{"id":853},"phantom_membrane":{"id":854},"nautilus_shell":{"id":855},"heart_of_the_sea":{"id":856},"crossbow":{"id":857},"suspicious_stew":{"id":858},"loom":{"id":859},"flower_banner_pattern":{"id":860},"creeper_banner_pattern":{"id":861},"skull_banner_pattern":{"id":862},"mojang_banner_pattern":{"id":863},"globe_banner_pattern":{"id":864},"barrel":{"id":865},"smoker":{"id":866},"blast_furnace":{"id":867},"cartography_table":{"id":868},"fletching_table":{"id":869},"grindstone":{"id":870},"lectern":{"id":871},"smithing_table":{"id":872},"stonecutter":{"id":873},"bell":{"id":874},"lantern":{"id":875},"sweet_berries":{"id":876},"campfire":{"id":877},"honeycomb":{"id":878},"bee_nest":{"id":879},"beehive":{"id":880},"honey_bottle":{"id":881},"honey_block":{"id":882},"honeycomb_block":{"id":883}}},"potion":{"default":"empty","id":7,"entries":{"empty":{"id":0},"water":{"id":1},"mundane":{"id":2},"thick":{"id":3},"awkward":{"id":4},"night_vision":{"id":5},"long_night_vision":{"id":6},"invisibility":{"id":7},"long_invisibility":{"id":8},"leaping":{"id":9},"long_leaping":{"id":10},"strong_leaping":{"id":11},"fire_resistance":{"id":12},"long_fire_resistance":{"id":13},"swiftness":{"id":14},"long_swiftness":{"id":15},"strong_swiftness":{"id":16},"slowness":{"id":17},"long_slowness":{"id":18},"strong_slowness":{"id":19},"turtle_master":{"id":20},"long_turtle_master":{"id":21},"strong_turtle_master":{"id":22},"water_breathing":{"id":23},"long_water_breathing":{"id":24},"healing":{"id":25},"strong_healing":{"id":26},"harming":{"id":27},"strong_harming":{"id":28},"poison":{"id":29},"long_poison":{"id":30},"strong_poison":{"id":31},"regeneration":{"id":32},"long_regeneration":{"id":33},"strong_regeneration":{"id":34},"strength":{"id":35},"long_strength":{"id":36},"strong_strength":{"id":37},"weakness":{"id":38},"long_weakness":{"id":39},"luck":{"id":40},"slow_falling":{"id":41},"long_slow_falling":{"id":42}}},"carver":{"id":8,"entries":{"cave":{"id":0},"hell_cave":{"id":1},"canyon":{"id":2},"underwater_canyon":{"id":3},"underwater_cave":{"id":4}}},"surface_builder":{"id":9,"entries":{"default":{"id":0},"mountain":{"id":1},"shattered_savanna":{"id":2},"gravelly_mountain":{"id":3},"giant_tree_taiga":{"id":4},"swamp":{"id":5},"badlands":{"id":6},"wooded_badlands":{"id":7},"eroded_badlands":{"id":8},"frozen_ocean":{"id":9},"nether":{"id":10},"nope":{"id":11}}},"feature":{"id":10,"entries":{"pillager_outpost":{"id":0},"mineshaft":{"id":1},"woodland_mansion":{"id":2},"jungle_temple":{"id":3},"desert_pyramid":{"id":4},"igloo":{"id":5},"shipwreck":{"id":6},"swamp_hut":{"id":7},"stronghold":{"id":8},"ocean_monument":{"id":9},"ocean_ruin":{"id":10},"nether_bridge":{"id":11},"end_city":{"id":12},"buried_treasure":{"id":13},"village":{"id":14},"no_op":{"id":15},"normal_tree":{"id":16},"acacia_tree":{"id":17},"fancy_tree":{"id":18},"jungle_ground_bush":{"id":19},"dark_oak_tree":{"id":20},"mega_jungle_tree":{"id":21},"mega_spruce_tree":{"id":22},"flower":{"id":23},"random_patch":{"id":24},"block_pile":{"id":25},"spring_feature":{"id":26},"chorus_plant":{"id":27},"emerald_ore":{"id":28},"void_start_platform":{"id":29},"desert_well":{"id":30},"fossil":{"id":31},"huge_red_mushroom":{"id":32},"huge_brown_mushroom":{"id":33},"ice_spike":{"id":34},"glowstone_blob":{"id":35},"freeze_top_layer":{"id":36},"vines":{"id":37},"monster_room":{"id":38},"blue_ice":{"id":39},"iceberg":{"id":40},"forest_rock":{"id":41},"disk":{"id":42},"ice_patch":{"id":43},"lake":{"id":44},"ore":{"id":45},"end_spike":{"id":46},"end_island":{"id":47},"end_gateway":{"id":48},"seagrass":{"id":49},"kelp":{"id":50},"coral_tree":{"id":51},"coral_mushroom":{"id":52},"coral_claw":{"id":53},"sea_pickle":{"id":54},"simple_block":{"id":55},"bamboo":{"id":56},"fill_layer":{"id":57},"bonus_chest":{"id":58},"random_random_selector":{"id":59},"random_selector":{"id":60},"simple_random_selector":{"id":61},"random_boolean_selector":{"id":62},"decorated":{"id":63},"decorated_flower":{"id":64}}},"decorator":{"id":11,"entries":{"nope":{"id":0},"count_heightmap":{"id":1},"count_top_solid":{"id":2},"count_heightmap_32":{"id":3},"count_heightmap_double":{"id":4},"count_height_64":{"id":5},"noise_heightmap_32":{"id":6},"noise_heightmap_double":{"id":7},"chance_heightmap":{"id":8},"chance_heightmap_double":{"id":9},"chance_passthrough":{"id":10},"chance_top_solid_heightmap":{"id":11},"count_extra_heightmap":{"id":12},"count_range":{"id":13},"count_biased_range":{"id":14},"count_very_biased_range":{"id":15},"random_count_range":{"id":16},"chance_range":{"id":17},"count_chance_heightmap":{"id":18},"count_chance_heightmap_double":{"id":19},"count_depth_average":{"id":20},"top_solid_heightmap":{"id":21},"top_solid_heightmap_range":{"id":22},"top_solid_heightmap_noise_biased":{"id":23},"carving_mask":{"id":24},"forest_rock":{"id":25},"hell_fire":{"id":26},"magma":{"id":27},"emerald_ore":{"id":28},"lava_lake":{"id":29},"water_lake":{"id":30},"dungeons":{"id":31},"dark_oak_tree":{"id":32},"iceberg":{"id":33},"light_gem_chance":{"id":34},"end_island":{"id":35},"chorus_plant":{"id":36},"end_gateway":{"id":37}}},"biome":{"id":12,"entries":{"ocean":{"id":0},"plains":{"id":1},"desert":{"id":2},"mountains":{"id":3},"forest":{"id":4},"taiga":{"id":5},"swamp":{"id":6},"river":{"id":7},"nether":{"id":8},"the_end":{"id":9},"frozen_ocean":{"id":10},"frozen_river":{"id":11},"snowy_tundra":{"id":12},"snowy_mountains":{"id":13},"mushroom_fields":{"id":14},"mushroom_field_shore":{"id":15},"beach":{"id":16},"desert_hills":{"id":17},"wooded_hills":{"id":18},"taiga_hills":{"id":19},"mountain_edge":{"id":20},"jungle":{"id":21},"jungle_hills":{"id":22},"jungle_edge":{"id":23},"deep_ocean":{"id":24},"stone_shore":{"id":25},"snowy_beach":{"id":26},"birch_forest":{"id":27},"birch_forest_hills":{"id":28},"dark_forest":{"id":29},"snowy_taiga":{"id":30},"snowy_taiga_hills":{"id":31},"giant_tree_taiga":{"id":32},"giant_tree_taiga_hills":{"id":33},"wooded_mountains":{"id":34},"savanna":{"id":35},"savanna_plateau":{"id":36},"badlands":{"id":37},"wooded_badlands_plateau":{"id":38},"badlands_plateau":{"id":39},"small_end_islands":{"id":40},"end_midlands":{"id":41},"end_highlands":{"id":42},"end_barrens":{"id":43},"warm_ocean":{"id":44},"lukewarm_ocean":{"id":45},"cold_ocean":{"id":46},"deep_warm_ocean":{"id":47},"deep_lukewarm_ocean":{"id":48},"deep_cold_ocean":{"id":49},"deep_frozen_ocean":{"id":50},"the_void":{"id":127},"sunflower_plains":{"id":129},"desert_lakes":{"id":130},"gravelly_mountains":{"id":131},"flower_forest":{"id":132},"taiga_mountains":{"id":133},"swamp_hills":{"id":134},"ice_spikes":{"id":140},"modified_jungle":{"id":149},"modified_jungle_edge":{"id":151},"tall_birch_forest":{"id":155},"tall_birch_hills":{"id":156},"dark_forest_hills":{"id":157},"snowy_taiga_mountains":{"id":158},"giant_spruce_taiga":{"id":160},"giant_spruce_taiga_hills":{"id":161},"modified_gravelly_mountains":{"id":162},"shattered_savanna":{"id":163},"shattered_savanna_plateau":{"id":164},"eroded_badlands":{"id":165},"modified_wooded_badlands_plateau":{"id":166},"modified_badlands_plateau":{"id":167},"bamboo_jungle":{"id":168},"bamboo_jungle_hills":{"id":169}}},"block_state_provider_type":{"id":13,"entries":{"simple_state_provider":{"id":0},"weighted_state_provider":{"id":1},"plain_flower_provider":{"id":2},"forest_flower_provider":{"id":3}}},"block_placer_type":{"id":14,"entries":{"simple_block_placer":{"id":0},"double_plant_placer":{"id":1},"column_placer":{"id":2}}},"foliage_placer_type":{"id":15,"entries":{"blob_foliage_placer":{"id":0},"spruce_foliage_placer":{"id":1},"pine_foliage_placer":{"id":2},"acacia_foliage_placer":{"id":3}}},"tree_decorator_type":{"id":16,"entries":{"trunk_vine":{"id":0},"leave_vine":{"id":1},"cocoa":{"id":2},"beehive":{"id":3},"alter_ground":{"id":4}}},"particle_type":{"id":17,"entries":{"ambient_entity_effect":{"id":0},"angry_villager":{"id":1},"barrier":{"id":2},"block":{"id":3},"bubble":{"id":4},"cloud":{"id":5},"crit":{"id":6},"damage_indicator":{"id":7},"dragon_breath":{"id":8},"dripping_lava":{"id":9},"falling_lava":{"id":10},"landing_lava":{"id":11},"dripping_water":{"id":12},"falling_water":{"id":13},"dust":{"id":14},"effect":{"id":15},"elder_guardian":{"id":16},"enchanted_hit":{"id":17},"enchant":{"id":18},"end_rod":{"id":19},"entity_effect":{"id":20},"explosion_emitter":{"id":21},"explosion":{"id":22},"falling_dust":{"id":23},"firework":{"id":24},"fishing":{"id":25},"flame":{"id":26},"flash":{"id":27},"happy_villager":{"id":28},"composter":{"id":29},"heart":{"id":30},"instant_effect":{"id":31},"item":{"id":32},"item_slime":{"id":33},"item_snowball":{"id":34},"large_smoke":{"id":35},"lava":{"id":36},"mycelium":{"id":37},"note":{"id":38},"poof":{"id":39},"portal":{"id":40},"rain":{"id":41},"smoke":{"id":42},"sneeze":{"id":43},"spit":{"id":44},"squid_ink":{"id":45},"sweep_attack":{"id":46},"totem_of_undying":{"id":47},"underwater":{"id":48},"splash":{"id":49},"witch":{"id":50},"bubble_pop":{"id":51},"current_down":{"id":52},"bubble_column_up":{"id":53},"nautilus":{"id":54},"dolphin":{"id":55},"campfire_cosy_smoke":{"id":56},"campfire_signal_smoke":{"id":57},"dripping_honey":{"id":58},"falling_honey":{"id":59},"landing_honey":{"id":60},"falling_nectar":{"id":61}}},"biome_source_type":{"id":18,"entries":{"checkerboard":{"id":0},"fixed":{"id":1},"vanilla_layered":{"id":2},"the_end":{"id":3}}},"block_entity_type":{"id":19,"entries":{"furnace":{"id":0},"chest":{"id":1},"trapped_chest":{"id":2},"ender_chest":{"id":3},"jukebox":{"id":4},"dispenser":{"id":5},"dropper":{"id":6},"sign":{"id":7},"mob_spawner":{"id":8},"piston":{"id":9},"brewing_stand":{"id":10},"enchanting_table":{"id":11},"end_portal":{"id":12},"beacon":{"id":13},"skull":{"id":14},"daylight_detector":{"id":15},"hopper":{"id":16},"comparator":{"id":17},"banner":{"id":18},"structure_block":{"id":19},"end_gateway":{"id":20},"command_block":{"id":21},"shulker_box":{"id":22},"bed":{"id":23},"conduit":{"id":24},"barrel":{"id":25},"smoker":{"id":26},"blast_furnace":{"id":27},"lectern":{"id":28},"bell":{"id":29},"jigsaw":{"id":30},"campfire":{"id":31},"beehive":{"id":32}}},"chunk_generator_type":{"id":20,"entries":{"surface":{"id":0},"caves":{"id":1},"floating_islands":{"id":2},"debug":{"id":3},"flat":{"id":4}}},"motive":{"default":"kebab","id":22,"entries":{"kebab":{"id":0},"aztec":{"id":1},"alban":{"id":2},"aztec2":{"id":3},"bomb":{"id":4},"plant":{"id":5},"wasteland":{"id":6},"pool":{"id":7},"courbet":{"id":8},"sea":{"id":9},"sunset":{"id":10},"creebet":{"id":11},"wanderer":{"id":12},"graham":{"id":13},"match":{"id":14},"bust":{"id":15},"stage":{"id":16},"void":{"id":17},"skull_and_roses":{"id":18},"wither":{"id":19},"fighters":{"id":20},"pointer":{"id":21},"pigscene":{"id":22},"burning_skull":{"id":23},"skeleton":{"id":24},"donkey_kong":{"id":25}}},"custom_stat":{"id":23,"entries":{"leave_game":{"id":0},"play_one_minute":{"id":1},"time_since_death":{"id":2},"time_since_rest":{"id":3},"sneak_time":{"id":4},"walk_one_cm":{"id":5},"crouch_one_cm":{"id":6},"sprint_one_cm":{"id":7},"walk_on_water_one_cm":{"id":8},"fall_one_cm":{"id":9},"climb_one_cm":{"id":10},"fly_one_cm":{"id":11},"walk_under_water_one_cm":{"id":12},"minecart_one_cm":{"id":13},"boat_one_cm":{"id":14},"pig_one_cm":{"id":15},"horse_one_cm":{"id":16},"aviate_one_cm":{"id":17},"swim_one_cm":{"id":18},"jump":{"id":19},"drop":{"id":20},"damage_dealt":{"id":21},"damage_dealt_absorbed":{"id":22},"damage_dealt_resisted":{"id":23},"damage_taken":{"id":24},"damage_blocked_by_shield":{"id":25},"damage_absorbed":{"id":26},"damage_resisted":{"id":27},"deaths":{"id":28},"mob_kills":{"id":29},"animals_bred":{"id":30},"player_kills":{"id":31},"fish_caught":{"id":32},"talked_to_villager":{"id":33},"traded_with_villager":{"id":34},"eat_cake_slice":{"id":35},"fill_cauldron":{"id":36},"use_cauldron":{"id":37},"clean_armor":{"id":38},"clean_banner":{"id":39},"clean_shulker_box":{"id":40},"interact_with_brewingstand":{"id":41},"interact_with_beacon":{"id":42},"inspect_dropper":{"id":43},"inspect_hopper":{"id":44},"inspect_dispenser":{"id":45},"play_noteblock":{"id":46},"tune_noteblock":{"id":47},"pot_flower":{"id":48},"trigger_trapped_chest":{"id":49},"open_enderchest":{"id":50},"enchant_item":{"id":51},"play_record":{"id":52},"interact_with_furnace":{"id":53},"interact_with_crafting_table":{"id":54},"open_chest":{"id":55},"sleep_in_bed":{"id":56},"open_shulker_box":{"id":57},"open_barrel":{"id":58},"interact_with_blast_furnace":{"id":59},"interact_with_smoker":{"id":60},"interact_with_lectern":{"id":61},"interact_with_campfire":{"id":62},"interact_with_cartography_table":{"id":63},"interact_with_loom":{"id":64},"interact_with_stonecutter":{"id":65},"bell_ring":{"id":66},"raid_trigger":{"id":67},"raid_win":{"id":68},"interact_with_anvil":{"id":69},"interact_with_grindstone":{"id":70}}},"chunk_status":{"default":"empty","id":24,"entries":{"empty":{"id":0},"structure_starts":{"id":1},"structure_references":{"id":2},"biomes":{"id":3},"noise":{"id":4},"surface":{"id":5},"carvers":{"id":6},"liquid_carvers":{"id":7},"features":{"id":8},"light":{"id":9},"spawn":{"id":10},"heightmaps":{"id":11},"full":{"id":12}}},"structure_feature":{"id":25,"entries":{"mineshaft":{"id":0},"pillager_outpost":{"id":1},"fortress":{"id":2},"stronghold":{"id":3},"jungle_pyramid":{"id":4},"ocean_ruin":{"id":5},"desert_pyramid":{"id":6},"igloo":{"id":7},"swamp_hut":{"id":8},"monument":{"id":9},"endcity":{"id":10},"mansion":{"id":11},"buried_treasure":{"id":12},"shipwreck":{"id":13},"village":{"id":14}}},"structure_piece":{"id":26,"entries":{"mscorridor":{"id":0},"mscrossing":{"id":1},"msroom":{"id":2},"msstairs":{"id":3},"pcp":{"id":4},"nvi":{"id":5},"nebcr":{"id":6},"nebef":{"id":7},"nebs":{"id":8},"neccs":{"id":9},"nectb":{"id":10},"nece":{"id":11},"nescsc":{"id":12},"nesclt":{"id":13},"nesc":{"id":14},"nescrt":{"id":15},"necsr":{"id":16},"nemt":{"id":17},"nerc":{"id":18},"nesr":{"id":19},"nestart":{"id":20},"shcc":{"id":21},"shfc":{"id":22},"sh5c":{"id":23},"shlt":{"id":24},"shli":{"id":25},"shpr":{"id":26},"shph":{"id":27},"shrt":{"id":28},"shrc":{"id":29},"shsd":{"id":30},"shstart":{"id":31},"shs":{"id":32},"shssd":{"id":33},"tejp":{"id":34},"orp":{"id":35},"iglu":{"id":36},"tesh":{"id":37},"tedp":{"id":38},"omb":{"id":39},"omcr":{"id":40},"omdxr":{"id":41},"omdxyr":{"id":42},"omdyr":{"id":43},"omdyzr":{"id":44},"omdzr":{"id":45},"omentry":{"id":46},"ompenthouse":{"id":47},"omsimple":{"id":48},"omsimplet":{"id":49},"omwr":{"id":50},"ecp":{"id":51},"wmp":{"id":52},"btp":{"id":53},"shipwreck":{"id":54}}},"rule_test":{"id":27,"entries":{"always_true":{"id":0},"block_match":{"id":1},"blockstate_match":{"id":2},"tag_match":{"id":3},"random_block_match":{"id":4},"random_blockstate_match":{"id":5}}},"structure_processor":{"id":28,"entries":{"block_ignore":{"id":0},"block_rot":{"id":1},"gravity":{"id":2},"jigsaw_replacement":{"id":3},"rule":{"id":4},"nop":{"id":5}}},"structure_pool_element":{"id":29,"entries":{"single_pool_element":{"id":0},"list_pool_element":{"id":1},"feature_pool_element":{"id":2},"empty_pool_element":{"id":3}}},"menu":{"id":30,"entries":{"generic_9x1":{"id":0},"generic_9x2":{"id":1},"generic_9x3":{"id":2},"generic_9x4":{"id":3},"generic_9x5":{"id":4},"generic_9x6":{"id":5},"generic_3x3":{"id":6},"anvil":{"id":7},"beacon":{"id":8},"blast_furnace":{"id":9},"brewing_stand":{"id":10},"crafting":{"id":11},"enchantment":{"id":12},"furnace":{"id":13},"grindstone":{"id":14},"hopper":{"id":15},"lectern":{"id":16},"loom":{"id":17},"merchant":{"id":18},"shulker_box":{"id":19},"smoker":{"id":20},"cartography_table":{"id":21},"stonecutter":{"id":22}}},"recipe_type":{"id":31,"entries":{"crafting":{"id":0},"smelting":{"id":1},"blasting":{"id":2},"smoking":{"id":3},"campfire_cooking":{"id":4},"stonecutting":{"id":5}}},"recipe_serializer":{"id":32,"entries":{"crafting_shaped":{"id":0},"crafting_shapeless":{"id":1},"crafting_special_armordye":{"id":2},"crafting_special_bookcloning":{"id":3},"crafting_special_mapcloning":{"id":4},"crafting_special_mapextending":{"id":5},"crafting_special_firework_rocket":{"id":6},"crafting_special_firework_star":{"id":7},"crafting_special_firework_star_fade":{"id":8},"crafting_special_tippedarrow":{"id":9},"crafting_special_bannerduplicate":{"id":10},"crafting_special_shielddecoration":{"id":11},"crafting_special_shulkerboxcoloring":{"id":12},"crafting_special_suspiciousstew":{"id":13},"crafting_special_repairitem":{"id":14},"smelting":{"id":15},"blasting":{"id":16},"smoking":{"id":17},"campfire_cooking":{"id":18},"stonecutting":{"id":19}}},"stat_type":{"id":33,"entries":{"mined":{"id":0},"crafted":{"id":1},"used":{"id":2},"broken":{"id":3},"picked_up":{"id":4},"dropped":{"id":5},"killed":{"id":6},"killed_by":{"id":7},"custom":{"id":8}}},"villager_type":{"default":"plains","id":34,"entries":{"desert":{"id":0},"jungle":{"id":1},"plains":{"id":2},"savanna":{"id":3},"snow":{"id":4},"swamp":{"id":5},"taiga":{"id":6}}},"villager_profession":{"default":"none","id":35,"entries":{"none":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14}}},"point_of_interest_type":{"default":"unemployed","id":36,"entries":{"unemployed":{"id":0},"armorer":{"id":1},"butcher":{"id":2},"cartographer":{"id":3},"cleric":{"id":4},"farmer":{"id":5},"fisherman":{"id":6},"fletcher":{"id":7},"leatherworker":{"id":8},"librarian":{"id":9},"mason":{"id":10},"nitwit":{"id":11},"shepherd":{"id":12},"toolsmith":{"id":13},"weaponsmith":{"id":14},"home":{"id":15},"meeting":{"id":16},"beehive":{"id":17},"bee_nest":{"id":18},"nether_portal":{"id":19}}},"memory_module_type":{"default":"dummy","id":37,"entries":{"dummy":{"id":0},"home":{"id":1},"job_site":{"id":2},"meeting_point":{"id":3},"secondary_job_site":{"id":4},"mobs":{"id":5},"visible_mobs":{"id":6},"visible_villager_babies":{"id":7},"nearest_players":{"id":8},"nearest_visible_player":{"id":9},"walk_target":{"id":10},"look_target":{"id":11},"interaction_target":{"id":12},"breed_target":{"id":13},"path":{"id":14},"interactable_doors":{"id":15},"opened_doors":{"id":16},"nearest_bed":{"id":17},"hurt_by":{"id":18},"hurt_by_entity":{"id":19},"nearest_hostile":{"id":20},"hiding_place":{"id":21},"heard_bell_time":{"id":22},"cant_reach_walk_target_since":{"id":23},"golem_last_seen_time":{"id":24},"last_slept":{"id":25},"last_woken":{"id":26},"last_worked_at_poi":{"id":27}}},"sensor_type":{"default":"dummy","id":38,"entries":{"dummy":{"id":0},"nearest_living_entities":{"id":1},"nearest_players":{"id":2},"interactable_doors":{"id":3},"nearest_bed":{"id":4},"hurt_by":{"id":5},"villager_hostiles":{"id":6},"villager_babies":{"id":7},"secondary_pois":{"id":8},"golem_last_seen":{"id":9}}},"schedule":{"id":39,"entries":{"empty":{"id":0},"simple":{"id":1},"villager_baby":{"id":2},"villager_default":{"id":3}}},"activity":{"id":40,"entries":{"core":{"id":0},"idle":{"id":1},"work":{"id":2},"play":{"id":3},"rest":{"id":4},"meet":{"id":5},"panic":{"id":6},"raid":{"id":7},"pre_raid":{"id":8},"hide":{"id":9}}},"dimension_type":{"id":17,"entries":{"overworld":{"id": 0,"has_skylight":true},"the_nether":{"id":1,"has_skylight":false},"the_end":{"id":-1,"has_skylight":false}}}}}
\ No newline at end of file