diff --git a/src/main/java/de/bixilon/minosoft/Minosoft.java b/src/main/java/de/bixilon/minosoft/Minosoft.java index 3eee29632..10eef70e7 100644 --- a/src/main/java/de/bixilon/minosoft/Minosoft.java +++ b/src/main/java/de/bixilon/minosoft/Minosoft.java @@ -15,7 +15,9 @@ package de.bixilon.minosoft; import de.bixilon.minosoft.config.Configuration; import de.bixilon.minosoft.config.GameConfiguration; +import de.bixilon.minosoft.game.datatypes.Mappings; import de.bixilon.minosoft.game.datatypes.Player; +import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.entities.items.Items; import de.bixilon.minosoft.logging.Log; import de.bixilon.minosoft.logging.LogLevel; @@ -30,9 +32,7 @@ import org.json.JSONObject; import java.io.File; import java.io.IOException; -import java.util.Iterator; -import java.util.List; -import java.util.UUID; +import java.util.*; public class Minosoft { static Configuration config; @@ -127,29 +127,29 @@ public class Minosoft { } private static void loadMappings() { + HashMap mappingsHashMap = new HashMap<>(); + mappingsHashMap.put("registries", Mappings.REGISTRIES); + mappingsHashMap.put("blocks", Mappings.BLOCKS); try { for (ProtocolVersion version : ProtocolVersion.versionMappingArray) { if (version.getVersionNumber() < ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { // skip them, use mapping of 1.12 continue; } - String fileName; - if (version.getVersionNumber() >= ProtocolVersion.VERSION_1_14_4.getVersionNumber()) { - fileName = Config.homeDir + String.format("assets/mapping/%s/registries.json", version.getVersionString()); - } else { - fileName = Config.homeDir + String.format("assets/mapping/%s/items.json", version.getVersionString()); - } - JSONObject data = Util.readJsonFromFile(fileName); - for (Iterator mods = data.keys(); mods.hasNext(); ) { - // key = mod name - String mod = mods.next(); - JSONObject modJSON = data.getJSONObject(mod); - - if (version.getVersionNumber() >= ProtocolVersion.VERSION_1_14_4.getVersionNumber()) { - Items.load(mod, modJSON.getJSONObject("item").getJSONObject("entries"), version); - } else { - // special rule: multiple files for registers - Items.load(mod, modJSON, version); + for (Map.Entry mappingSet : mappingsHashMap.entrySet()) { + JSONObject data = Util.readJsonFromFile(Config.homeDir + String.format("assets/mapping/%s/%s.json", version.getVersionString(), mappingSet.getKey())); + for (Iterator mods = data.keys(); mods.hasNext(); ) { + // key = mod name + String mod = mods.next(); + JSONObject modJSON = data.getJSONObject(mod); + switch (mappingSet.getValue()) { + case REGISTRIES: + Items.load(mod, modJSON.getJSONObject("item").getJSONObject("entries"), version); + break; + case BLOCKS: + Blocks.load(mod, modJSON, version); + break; + } } } } diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/Mappings.java b/src/main/java/de/bixilon/minosoft/game/datatypes/Mappings.java new file mode 100644 index 000000000..6a03b6e90 --- /dev/null +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/Mappings.java @@ -0,0 +1,19 @@ +/* + * 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 Mappings { + BLOCKS, + REGISTRIES +} diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Block.java b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Block.java new file mode 100644 index 000000000..bf724a1ad --- /dev/null +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Block.java @@ -0,0 +1,94 @@ +/* + * 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.blocks; + +public class Block { + final String mod; + final String identifier; + final BlockRotation rotation; + final BlockProperty[] properties; + + public Block(String mod, String identifier, BlockProperty[] properties, BlockRotation rotation) { + this.mod = mod; + this.identifier = identifier; + this.properties = properties; + this.rotation = rotation; + } + + public Block(String mod, String identifier, BlockProperty[] properties) { + this.mod = mod; + this.identifier = identifier; + this.properties = properties; + this.rotation = BlockRotation.NONE; + } + + public Block(String mod, String identifier, BlockRotation rotation) { + this.mod = mod; + this.identifier = identifier; + this.properties = new BlockProperty[0]; + this.rotation = rotation; + } + + public Block(String mod, String identifier) { + this.mod = mod; + this.identifier = identifier; + this.properties = new BlockProperty[0]; + this.rotation = BlockRotation.NONE; + } + + public String getMod() { + return mod; + } + + public String getIdentifier() { + return identifier; + } + + public BlockRotation getRotation() { + return rotation; + } + + public BlockProperty[] getProperties() { + return properties; + } + + @Override + public String toString() { + StringBuilder out = new StringBuilder(); + if (rotation != BlockRotation.NONE) { + out.append(" ("); + out.append("rotation="); + out.append(getRotation().name()); + } + if (properties.length > 0) { + if (out.length() > 0) { + out.append(" ,"); + } else { + out.append(" ("); + } + out.append("properties={"); + for (BlockProperty property : properties) { + out.append(property.name()); + out.append(","); + } + // remove last , + out.setLength(out.length() - 1); + out.append("}"); + } + if (out.length() > 0) { + out.append(")"); + } + return String.format("%s:%s%s", getMod(), getIdentifier(), out.toString()); + } +} diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockProperty.java b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockProperty.java new file mode 100644 index 000000000..5cda01e3d --- /dev/null +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockProperty.java @@ -0,0 +1,344 @@ +/* + * 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.blocks; + +public enum BlockProperty { + NONE, + + // farmland + MOISTURE_0, + MOISTURE_1, + MOISTURE_2, + MOISTURE_3, + MOISTURE_4, + MOISTURE_5, + MOISTURE_6, + MOISTURE_7, + + // furnace, ... + LIT, + + // sign, fence + WATERLOGGED, + + // half (flowers) + HALF_UPPER, + HALF_LOWER, + + // slabs + SLAB_TOP, + SLAB_BOTTOM, + SLAB_DOUBLE, + + // fluids + LEVEL_0, + LEVEL_1, + LEVEL_2, + LEVEL_3, + LEVEL_4, + LEVEL_5, + LEVEL_6, + LEVEL_7, + LEVEL_8, + LEVEL_9, + LEVEL_10, + LEVEL_11, + LEVEL_12, + LEVEL_13, + LEVEL_14, + LEVEL_15, + + // bee hive + HONEY_LEVEL_0, + HONEY_LEVEL_1, + HONEY_LEVEL_2, + HONEY_LEVEL_3, + HONEY_LEVEL_4, + HONEY_LEVEL_5, + + // pistons + TYPE_NORMAL, + TYPE_STICKY, + EXTENDED, + SHORT, + + // rails + POWERED, + STRAIGHT, + INNER_LEFT, + INNER_RIGHT, + OUTER_LEFT, + OUTER_RIGHT, + NORTH_SOUTH, + SOUTH_EAST, + SOUTH_WEST, + NORTH_WEST, + NORTH_EAST, + EAST_WEST, + ASCENDING_EAST, + ASCENDING_WEST, + ASCENDING_NORTH, + ASCENDING_SOUTH, + + SNOWY, + + STAGE_0, + STAGE_1, + + // dispenser + TRIGGERED, + + // leaves + DISTANCE_0, + DISTANCE_1, + DISTANCE_2, + DISTANCE_3, + DISTANCE_4, + DISTANCE_5, + DISTANCE_6, + DISTANCE_7, + PERSISTENT, + + // bed + HEAD, + FOOT, + OCCUPIED, + + // tnt + UNSTABLE, + + // door + HINGE_LEFT, + HINGE_RIGHT, + OPEN, + + // fire + NORTH, + SOUTH, + EAST, + WEST, + UP, + DOWN, + AGE_0, + AGE_1, + AGE_2, + AGE_3, + AGE_4, + AGE_5, + AGE_6, + AGE_7, + AGE_8, + AGE_9, + AGE_10, + AGE_11, + AGE_12, + AGE_13, + AGE_14, + AGE_15, + AGE_16, + AGE_17, + AGE_18, + AGE_19, + AGE_20, + AGE_21, + AGE_22, + AGE_23, + AGE_24, + AGE_25, + + // noteblock + HARP, + BASEDRUM, + SNARE, + HAT, + BASS, + FLUTE, + BELL, + GUITAR, + CHIME, + XYLOPHONE, + IRON_XYLOPHONE, + COW_BELL, + DIDGERIDOO, + BIT, + BANJO, + PLING, + + NOTE_0, + NOTE_1, + NOTE_2, + NOTE_3, + NOTE_4, + NOTE_5, + NOTE_6, + NOTE_7, + NOTE_8, + NOTE_9, + NOTE_10, + NOTE_11, + NOTE_12, + NOTE_13, + NOTE_14, + NOTE_15, + NOTE_16, + NOTE_17, + NOTE_18, + NOTE_19, + NOTE_20, + NOTE_21, + NOTE_22, + NOTE_23, + NOTE_24, + + + // redstone + POWER_0, + POWER_1, + POWER_2, + POWER_3, + POWER_4, + POWER_5, + POWER_6, + POWER_7, + POWER_8, + POWER_9, + POWER_10, + POWER_11, + POWER_12, + POWER_13, + POWER_14, + POWER_15, + NORTH_UP, + SOUTH_UP, + EAST_UP, + WEST_UP, + NORTH_SIDE, + SOUTH_SIDE, + EAST_SIDE, + WEST_SIDE, + + LAYERS_1, + LAYERS_2, + LAYERS_3, + LAYERS_4, + LAYERS_5, + LAYERS_6, + LAYERS_7, + LAYERS_8, + + IN_WALL, + + // scaffolding + BOTTOM, + + // log, portal + AXIS_X, + AXIS_Y, + AXIS_Z, + + // trapwire + DISARMED, + ATTACHED, + + // daylight, etc + INVERTED, + + // button + FLOOR, + WALL, + CEILING, + + // structure block, comparator + SAVE, + LOAD, + CORNER, + DATA, + COMPARE, + SUBTRACT, + + // command block + CONDITIONAL, + + // double column + DRAG, + + // bell + SINGLE_WALL, + DOUBLE_WALL, + + // lantern + HANGING, + + // sea pickle + PICKLES_1, + PICKLES_2, + PICKLES_3, + PICKLES_4, + + // lectern + HAS_BOOK, + + // brewing stand + HAS_BOTTLE_0, + HAS_BOTTLE_1, + HAS_BOTTLE_2, + + // chest + TYPE_SINGLE, + TYPE_LEFT, + TYPE_RIGHT, + + // cake + BITES_0, + BITES_1, + BITES_2, + BITES_3, + BITES_4, + BITES_5, + BITES_6, + + + // bamboo + SMALL, + LARGE, + + // repeater + LOCKED, + DELAY_1, + DELAY_2, + DELAY_3, + DELAY_4, + + // end portal frame + EYE, + + // jukebox + HAS_RECORD, + + // campfire + SIGNAL_FIRE, + + // turtle eggs + EGGS_1, + EGGS_2, + EGGS_3, + EGGS_4, + // turtle eggs + HATCH_0, + HATCH_1, + HATCH_2, + + ENABLED + +} diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockRotation.java b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockRotation.java new file mode 100644 index 000000000..dfc7ecc44 --- /dev/null +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/BlockRotation.java @@ -0,0 +1,44 @@ +/* + * 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.blocks; + +public enum BlockRotation { + NONE, + SOUTH, + SOUTH_SOUTH_WEST, + SOUTH_WEST, + WEST_SOUTH_WEST, + WEST, + WEST_NORTH_WEST, + NORTH_WEST, + NORTH_NORTH_WEST, + NORTH, + NORTH_NORTH_EAST, + NORTH_EAST, + EAST_NORTH_EAST, + EAST, + EAST_SOUTH_EAST, + SOUTH_EAST, + SOUTH_SOUTH_EAST, + + NORTH_SOUTH, + EAST_WEST, + ASCENDING_EAST, + ASCENDING_WEST, + ASCENDING_NORTH, + ASCENDING_SOUTH, + + UP, + DOWN +} diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Blocks.java b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Blocks.java index 2c6c0e62a..57e606599 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Blocks.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/blocks/Blocks.java @@ -1,3 +1,4 @@ +package de.bixilon.minosoft.game.datatypes.blocks; /* * Codename Minosoft * Copyright (C) 2020 Moritz Zwerger @@ -11,126 +12,562 @@ * This software is not affiliated with Mojang AB, the original developer of Minecraft. */ -package de.bixilon.minosoft.game.datatypes.blocks; +import com.google.common.collect.BiMap; +import com.google.common.collect.HashBiMap; +import de.bixilon.minosoft.protocol.protocol.ProtocolVersion; +import org.json.JSONArray; +import org.json.JSONObject; -import de.bixilon.minosoft.game.datatypes.Color; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; -public enum Blocks { - UNKNOWN(-1), // the buggy pink black block (any other block) - AIR(0), - STONE(1), - GRASS(2), - DIRT(3), - COBBLESTONE(4), - OAK_WOOD_PLANKS(5), - SPRUCE_WOOD_PLANKS(OAK_WOOD_PLANKS, 1), - BIRCH_WOOD_PLANKS(OAK_WOOD_PLANKS, 2), - JUNGLE_WOOD_PLANKS(OAK_WOOD_PLANKS, 3), - ACACIA_WOOD_PLANKS(OAK_WOOD_PLANKS, 4), - DARK_OAK_WOOD_PLANKS(OAK_WOOD_PLANKS, 5), - BEDROCK(7), - OAK_WOOD(17), - SPRUCE_WOOD(OAK_WOOD, 1), - BIRCH_WOOD(OAK_WOOD, 2), - JUNGLE_WOOD(OAK_WOOD, 3), - GLASS(20), - WHITE_WOOL(35, Color.WHITE), - ORANGE_WOOL(WHITE_WOOL, Color.ORANGE), - MAGENTA_WOOL(WHITE_WOOL, Color.MAGENTA), - LIGHT_BLUE_WOOL(WHITE_WOOL, Color.LIGHT_BLUE), - YELLOW_WOOL(WHITE_WOOL, Color.YELLOW), - LIME_WOOL(WHITE_WOOL, Color.LIME), - PINK_WOOL(WHITE_WOOL, Color.PINK), - GRAY_WOOL(WHITE_WOOL, Color.GRAY), - LIGHT_GRAY_WOOL(WHITE_WOOL, Color.SILVER), - CYAN_WOOL(WHITE_WOOL, Color.CYAN), - PURPLE_WOOL(WHITE_WOOL, Color.PURPLE), - BLUE_WOOL(WHITE_WOOL, Color.BLUE), - BROWN_WOOL(WHITE_WOOL, Color.BROWN), - GREEN_WOOL(WHITE_WOOL, Color.GREEN), - RED_WOOL(WHITE_WOOL, Color.RED), - BLACK_WOOL(WHITE_WOOL, Color.BLACK), - TNT(46), - STANDING_SIGN_SOUTH(63, 0), - STANDING_SIGN_SOUTH_SOUTH_WEST(STANDING_SIGN_SOUTH, 1), - STANDING_SIGN_SOUTH_WEST(STANDING_SIGN_SOUTH, 2), - STANDING_SIGN_WEST_SOUTH_WEST(STANDING_SIGN_SOUTH, 3), - STANDING_SIGN_WEST(STANDING_SIGN_SOUTH, 4), - STANDING_SIGN_WEST_NORTH_WEST(STANDING_SIGN_SOUTH, 5), - STANDING_SIGN_NORTH_WEST(STANDING_SIGN_SOUTH, 6), - STANDING_SIGN_NORTH_NORTH_WEST(STANDING_SIGN_SOUTH, 7), - STANDING_SIGN_NORTH(STANDING_SIGN_SOUTH, 8), - STANDING_SIGN_NORTH_NORTH_EAST(STANDING_SIGN_SOUTH, 9), - STANDING_SIGN_NORTH_EAST(STANDING_SIGN_SOUTH, 10), - STANDING_SIGN_EAST_NORTH_EAST(STANDING_SIGN_SOUTH, 11), - STANDING_SIGN_EAST(STANDING_SIGN_SOUTH, 12), - STANDING_SIGN_EAST_SOUTH_EAST(STANDING_SIGN_SOUTH, 13), - STANDING_SIGN_SOUTH_EAST(STANDING_SIGN_SOUTH, 14), - STANDING_SIGN_SOUTH_SOUTH_EAST(STANDING_SIGN_SOUTH, 15), - WALL_SIGN_EAST(68, 0), - WALL_SIGN_NORTH(WALL_SIGN_EAST, 1), - WALL_SIGN_SOUTH(WALL_SIGN_EAST, 2), - WALL_SIGN_WEST(WALL_SIGN_EAST, 3), - DROPPER_DOWN(158, 0), - DROPPER_EAST(DROPPER_DOWN, 1), - DROPPER_NORTH(DROPPER_DOWN, 2), - DROPPER_SOUTH(DROPPER_DOWN, 3), - DROPPER_UP(DROPPER_DOWN, 4), - DROPPER_WEST(DROPPER_DOWN, 5); +public class Blocks { + public static Block nullBlock; + static ArrayList blockList = new ArrayList<>(); + static HashMap> blockMap = new HashMap<>(); // version -> (protocolId > Item) + static HashMap> propertiesMapping = new HashMap<>(); + static HashMap rotationMapping = new HashMap<>(); - // ToDo all blocks - // ToDo post water update block states + static { + HashMap propertyHashMap; + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 15; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("LEVEL_%d", i))); + } + propertiesMapping.put("level", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 5; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("HONEY_LEVEL_%d", i))); + } + propertiesMapping.put("honey_level", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 15; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("POWER_%d", i))); + } + propertiesMapping.put("power", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 1; i <= 8; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("LAYERS_%d", i))); + } + propertiesMapping.put("layers", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 7; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("DISTANCE_%d", i))); + } + propertiesMapping.put("distance", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 25; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("AGE_%d", i))); + } + propertiesMapping.put("age", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 7; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("DISTANCE_%d", i))); + } + propertiesMapping.put("distance", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 7; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("MOISTURE_%d", i))); + } + propertiesMapping.put("moisture", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 1; i <= 4; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("PICKLES_%d", i))); + } + propertiesMapping.put("pickles", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 6; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("BITES_%d", i))); + } + propertiesMapping.put("bites", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 1; i <= 4; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("DELAY_%d", i))); + } + propertiesMapping.put("delay", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 2; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("HATCH_%d", i))); + } + propertiesMapping.put("hatch", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 1; i <= 4; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("EGGS_%d", i))); + } + propertiesMapping.put("eggs", propertyHashMap); + + propertyHashMap = new HashMap<>(); + for (int i = 0; i <= 24; i++) { + propertyHashMap.put(String.valueOf(i), BlockProperty.valueOf(String.format("NOTE_%d", i))); + } + propertiesMapping.put("note", propertyHashMap); + + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.SNOWY); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("snowy", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("0", BlockProperty.STAGE_0); + propertyHashMap.put("1", BlockProperty.STAGE_1); + propertiesMapping.put("stage", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.EAST); + propertyHashMap.put("up", BlockProperty.EAST_UP); + propertyHashMap.put("side", BlockProperty.EAST_SIDE); + propertyHashMap.put("false", BlockProperty.NONE); + propertyHashMap.put("none", BlockProperty.NONE); + propertiesMapping.put("east", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.WEST); + propertyHashMap.put("up", BlockProperty.WEST_UP); + propertyHashMap.put("side", BlockProperty.WEST_SIDE); + propertyHashMap.put("false", BlockProperty.NONE); + propertyHashMap.put("none", BlockProperty.NONE); + propertiesMapping.put("west", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.SOUTH); + propertyHashMap.put("up", BlockProperty.SOUTH_UP); + propertyHashMap.put("side", BlockProperty.SOUTH_SIDE); + propertyHashMap.put("false", BlockProperty.NONE); + propertyHashMap.put("none", BlockProperty.NONE); + propertiesMapping.put("south", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.NORTH); + propertyHashMap.put("up", BlockProperty.NORTH_UP); + propertyHashMap.put("side", BlockProperty.NORTH_SIDE); + propertyHashMap.put("false", BlockProperty.NONE); + propertyHashMap.put("none", BlockProperty.NONE); + propertiesMapping.put("north", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.UP); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("up", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.DOWN); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("down", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.IN_WALL); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("in_wall", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.EXTENDED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("extended", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.POWERED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("powered", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.OPEN); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("open", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.BOTTOM); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("bottom", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.OCCUPIED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("occupied", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.ATTACHED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("attached", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.DISARMED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("disarmed", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.INVERTED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("inverted", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.TRIGGERED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("triggered", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.CONDITIONAL); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("conditional", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.DRAG); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("drag", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.UNSTABLE); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("unstable", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HANGING); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("hanging", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HAS_BOOK); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("has_book", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HAS_BOTTLE_0); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("has_bottle_0", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HAS_BOTTLE_1); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("has_bottle_1", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HAS_BOTTLE_2); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("has_bottle_2", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.PERSISTENT); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("persistent", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.LIT); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("lit", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.WATERLOGGED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("waterlogged", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.LOCKED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("locked", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.EYE); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("eye", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.ENABLED); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("enabled", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.HAS_RECORD); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("has_record", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.SHORT); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("short", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("true", BlockProperty.SIGNAL_FIRE); + propertyHashMap.put("false", BlockProperty.NONE); + propertiesMapping.put("signal_fire", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("harp", BlockProperty.HARP); + propertyHashMap.put("basedrum", BlockProperty.BASEDRUM); + propertyHashMap.put("snare", BlockProperty.SNARE); + propertyHashMap.put("hat", BlockProperty.HAT); + propertyHashMap.put("bass", BlockProperty.BASS); + propertyHashMap.put("flute", BlockProperty.FLUTE); + propertyHashMap.put("bell", BlockProperty.BELL); + propertyHashMap.put("guitar", BlockProperty.GUITAR); + propertyHashMap.put("chime", BlockProperty.CHIME); + propertyHashMap.put("xylophone", BlockProperty.XYLOPHONE); + propertyHashMap.put("iron_xylophone", BlockProperty.IRON_XYLOPHONE); + propertyHashMap.put("cow_bell", BlockProperty.COW_BELL); + propertyHashMap.put("didgeridoo", BlockProperty.DIDGERIDOO); + propertyHashMap.put("bit", BlockProperty.BIT); + propertyHashMap.put("banjo", BlockProperty.BANJO); + propertyHashMap.put("pling", BlockProperty.PLING); + propertiesMapping.put("instrument", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("head", BlockProperty.HEAD); + propertyHashMap.put("foot", BlockProperty.FOOT); + propertiesMapping.put("part", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("left", BlockProperty.HINGE_LEFT); + propertyHashMap.put("right", BlockProperty.HINGE_RIGHT); + propertiesMapping.put("hinge", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("x", BlockProperty.AXIS_X); + propertyHashMap.put("y", BlockProperty.AXIS_Y); + propertyHashMap.put("z", BlockProperty.AXIS_Z); + propertiesMapping.put("axis", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("floor", BlockProperty.FLOOR); + propertyHashMap.put("wall", BlockProperty.WALL); + propertyHashMap.put("ceiling", BlockProperty.CEILING); + propertiesMapping.put("face", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("floor", BlockProperty.FLOOR); + propertyHashMap.put("ceiling", BlockProperty.CEILING); + propertyHashMap.put("single_wall", BlockProperty.SINGLE_WALL); + propertyHashMap.put("double_wall", BlockProperty.DOUBLE_WALL); + propertiesMapping.put("attachment", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("save", BlockProperty.SAVE); + propertyHashMap.put("load", BlockProperty.LOAD); + propertyHashMap.put("corner", BlockProperty.CORNER); + propertyHashMap.put("data", BlockProperty.DATA); + propertyHashMap.put("compare", BlockProperty.COMPARE); + propertyHashMap.put("subtract", BlockProperty.SUBTRACT); + propertiesMapping.put("mode", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("top", BlockProperty.HALF_UPPER); + propertyHashMap.put("upper", BlockProperty.HALF_UPPER); + propertyHashMap.put("bottom", BlockProperty.HALF_LOWER); + propertyHashMap.put("lower", BlockProperty.HALF_LOWER); + propertiesMapping.put("half", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("none", BlockProperty.NONE); + propertyHashMap.put("small", BlockProperty.LARGE); + propertyHashMap.put("large", BlockProperty.SMALL); + propertiesMapping.put("leaves", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("top", BlockProperty.SLAB_TOP); + propertyHashMap.put("bottom", BlockProperty.SLAB_BOTTOM); + propertyHashMap.put("double", BlockProperty.SLAB_DOUBLE); + propertyHashMap.put("normal", BlockProperty.TYPE_NORMAL); + propertyHashMap.put("sticky", BlockProperty.TYPE_STICKY); + propertyHashMap.put("single", BlockProperty.TYPE_SINGLE); + propertyHashMap.put("left", BlockProperty.TYPE_LEFT); + propertyHashMap.put("right", BlockProperty.TYPE_RIGHT); + propertiesMapping.put("type", propertyHashMap); + + propertyHashMap = new HashMap<>(); + propertyHashMap.put("straight", BlockProperty.STRAIGHT); + propertyHashMap.put("inner_left", BlockProperty.INNER_LEFT); + propertyHashMap.put("inner_right", BlockProperty.INNER_RIGHT); + propertyHashMap.put("outer_left", BlockProperty.OUTER_LEFT); + propertyHashMap.put("outer_right", BlockProperty.OUTER_RIGHT); + propertyHashMap.put("north_south", BlockProperty.NORTH_SOUTH); + propertyHashMap.put("east_west", BlockProperty.EAST_WEST); + propertyHashMap.put("south_east", BlockProperty.SOUTH_EAST); + propertyHashMap.put("south_west", BlockProperty.SOUTH_WEST); + propertyHashMap.put("north_west", BlockProperty.NORTH_WEST); + propertyHashMap.put("north_east", BlockProperty.NORTH_EAST); + propertyHashMap.put("ascending_east", BlockProperty.ASCENDING_EAST); + propertyHashMap.put("ascending_west", BlockProperty.ASCENDING_WEST); + propertyHashMap.put("ascending_north", BlockProperty.ASCENDING_NORTH); + propertyHashMap.put("ascending_south", BlockProperty.ASCENDING_SOUTH); + propertiesMapping.put("shape", propertyHashMap); + + rotationMapping.put("0", BlockRotation.SOUTH); + rotationMapping.put("1", BlockRotation.SOUTH_SOUTH_WEST); + rotationMapping.put("2", BlockRotation.SOUTH_WEST); + rotationMapping.put("3", BlockRotation.WEST_SOUTH_WEST); + rotationMapping.put("4", BlockRotation.WEST); + rotationMapping.put("5", BlockRotation.WEST_NORTH_WEST); + rotationMapping.put("6", BlockRotation.NORTH_WEST); + rotationMapping.put("7", BlockRotation.NORTH_NORTH_WEST); + rotationMapping.put("8", BlockRotation.NORTH); + rotationMapping.put("9", BlockRotation.NORTH_NORTH_EAST); + rotationMapping.put("10", BlockRotation.NORTH_EAST); + rotationMapping.put("11", BlockRotation.EAST_NORTH_EAST); + rotationMapping.put("12", BlockRotation.EAST); + rotationMapping.put("13", BlockRotation.EAST_SOUTH_EAST); + rotationMapping.put("14", BlockRotation.SOUTH_EAST); + rotationMapping.put("15", BlockRotation.SOUTH_SOUTH_EAST); + rotationMapping.put("south", BlockRotation.SOUTH); + rotationMapping.put("east", BlockRotation.EAST); + rotationMapping.put("north", BlockRotation.NONE); + rotationMapping.put("west", BlockRotation.WEST); + rotationMapping.put("up", BlockRotation.UP); + rotationMapping.put("down", BlockRotation.DOWN); + rotationMapping.put("ascending_east", BlockRotation.ASCENDING_EAST); + rotationMapping.put("ascending_west", BlockRotation.ASCENDING_WEST); + rotationMapping.put("ascending_north", BlockRotation.ASCENDING_NORTH); + rotationMapping.put("ascending_south", BlockRotation.ASCENDING_SOUTH); + rotationMapping.put("north_south", BlockRotation.NORTH_SOUTH); + rotationMapping.put("east_west", BlockRotation.EAST_WEST); - final int id; - final int data; - Blocks(int id, int data) { - this.id = id; - this.data = data; } - Blocks(int id, Color color) { - // used for wool, etc - this.id = id; - this.data = color.getId(); + public static Block getBlockByLegacy(int protocolId, int protocolMetaData) { + int itemId = protocolId << 4 | protocolMetaData; + return getBlock(itemId, ProtocolVersion.VERSION_1_12_2); } - Blocks(Blocks block, Color color) { - // used for wool, etc - this.id = block.getId(); - this.data = color.getId(); + + public static Block getBlockByLegacy(int itemIdAndMetaData) { + return getBlock(itemIdAndMetaData, ProtocolVersion.VERSION_1_12_2); } - Blocks(Blocks block, int data) { - // used for existing blocks with different data values - this.id = block.getId(); - this.data = data; + public static Block getBlock(int protocolId, ProtocolVersion version) { + if (version.getVersionNumber() < ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { + version = ProtocolVersion.VERSION_1_12_2; + } + return blockMap.get(version).get(protocolId); } - Blocks(int id) { - this.id = id; - this.data = 0; - } + public static void load(String mod, JSONObject json, ProtocolVersion version) { + BiMap versionMapping = HashBiMap.create(); + for (Iterator identifiers = json.keys(); identifiers.hasNext(); ) { + String identifierName = identifiers.next(); + JSONObject identifierJSON = json.getJSONObject(identifierName); + JSONArray statesArray = identifierJSON.getJSONArray("states"); + for (int i = 0; i < statesArray.length(); i++) { + JSONObject statesJSON = statesArray.getJSONObject(i); + if (statesJSON.has("properties")) { + // properties are optional + JSONObject propertiesJSON = statesJSON.getJSONObject("properties"); + BlockRotation rotation = BlockRotation.NONE; + if (propertiesJSON.has("facing")) { + rotation = rotationMapping.get(propertiesJSON.getString("facing")); + propertiesJSON.remove("facing"); - public static Blocks byId(int id, int data) { - for (Blocks b : values()) { - if (b.getId() == id && b.getData() == data) { - return b; + } else if (propertiesJSON.has("rotation")) { + rotation = rotationMapping.get(propertiesJSON.getString("rotation")); + propertiesJSON.remove("rotation"); + } + BlockProperty[] properties = new BlockProperty[propertiesJSON.length()]; + int ii = 0; + for (Iterator it = propertiesJSON.keys(); it.hasNext(); ) { + String propertyName = it.next(); + if (propertiesMapping.get(propertyName) == null) { + throw new RuntimeException(String.format("Unknown block property: %s (identifier=%s)", propertyName, identifierName)); + } + if (propertiesMapping.get(propertyName).get(propertiesJSON.getString(propertyName)) == null) { + throw new RuntimeException(String.format("Unknown block property: %s -> %s (identifier=%s)", propertyName, propertiesJSON.getString(propertyName), identifierName)); + } + properties[ii] = propertiesMapping.get(propertyName).get(propertiesJSON.getString(propertyName)); + ii++; + } + + Block block = getBlock(mod, identifierName, properties, rotation); + + if (block == null) { + // does not exist. create + block = new Block(mod, identifierName, properties, rotation); + blockList.add(block); + } + + versionMapping.put(getBlockId(statesJSON, version), block); + } else { + // no properties, directly add block + Block block = getBlock(mod, identifierName); + + if (block == null) { + // does not exist. create + block = new Block(mod, identifierName); + blockList.add(block); + } + + versionMapping.put(getBlockId(statesJSON, version), block); + } } } - return UNKNOWN; + blockMap.put(version, versionMapping); } - public static Blocks byId(int id) { - return byId(id, 0); + private static int getBlockId(JSONObject json, ProtocolVersion version) { + int blockId = json.getInt("id"); + if (version.getVersionNumber() <= ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { + // old format (with metadata) + blockId <<= 4; + if (json.has("meta")) { + blockId |= json.getInt("meta"); + } + } + return blockId; + } + + public static Block getBlock(String mod, String identifier) { + for (Block item : blockList) { + if (item.getMod().equals(mod) && item.getIdentifier().equals(identifier)) { + return item; + } + } + return null; + } + + public static Block getBlock(String mod, String identifier, BlockProperty[] properties, BlockRotation rotation) { + for (Block block : blockList) { + if (block.getMod().equals(mod) && block.getIdentifier().equals(identifier) && block.getRotation() == rotation && propertiesEquals(block.getProperties(), properties)) { + return block; + } + } + return null; + } + + public static boolean propertiesEquals(BlockProperty[] one, BlockProperty[] two) { + if (one.length != two.length) { + return false; + } + for (BlockProperty property : one) { + if (!containsElement(two, property)) { + return false; + } + } + return true; + } + + public static boolean containsElement(BlockProperty[] arr, BlockProperty value) { + for (BlockProperty property : arr) { + if (property == value) + return true; + } + return false; } - public int getId() { - return id; - } - - public int getData() { - return data; + public static int getBlockId(Block item, ProtocolVersion version) { + int itemId = blockMap.get(version).inverse().get(item); + if (version.getVersionNumber() <= ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { + return itemId >> 4; + } + return itemId; } } diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/items/Items.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/items/Items.java index f99e3d4ec..b69f4fe77 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/items/Items.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/items/Items.java @@ -27,15 +27,15 @@ public class Items { static ArrayList itemList = new ArrayList<>(); static HashMap> itemMap = new HashMap<>(); // version -> (protocolId > Item) - public static Item getItemByLegacy(int protocolId, int protocolMetaData, ProtocolVersion version) { + public static Item getItemByLegacy(int protocolId, int protocolMetaData) { int itemId = protocolId << 4; if (protocolMetaData > 0 && protocolMetaData <= 15) { itemId |= protocolMetaData; } - Item item = getItem(itemId, version); + Item item = getItem(itemId, ProtocolVersion.VERSION_1_12_2); if (item == null) { // ignore meta data? - return getItem(protocolId << 4, version); + return getItem(protocolId << 4, ProtocolVersion.VERSION_1_12_2); } return item; } @@ -55,15 +55,13 @@ public class Items { itemList.add(item); } JSONObject identifierJSON = json.getJSONObject(identifierName); - int itemId; + int itemId = identifierJSON.getInt("id"); if (version.getVersionNumber() <= ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { // old format (with metadata) - itemId = identifierJSON.getInt("protocol_id") << 4; - if (identifierJSON.has("protocol_meta")) { - itemId |= identifierJSON.getInt("protocol_meta"); + itemId <<= 4; + if (identifierJSON.has("meta")) { + itemId |= identifierJSON.getInt("meta"); } - } else { - itemId = identifierJSON.getInt("protocol_id"); } versionMapping.put(itemId, item); } @@ -80,7 +78,11 @@ public class Items { } public static int getItemId(Item item, ProtocolVersion version) { - return itemMap.get(version).inverse().get(item); + int itemId = itemMap.get(version).inverse().get(item); + if (version.getVersionNumber() <= ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { + return itemId >> 4; + } + return itemId; } } diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EndermanMetaData.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EndermanMetaData.java index 7deda8efe..89edb13eb 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EndermanMetaData.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EndermanMetaData.java @@ -12,6 +12,7 @@ */ package de.bixilon.minosoft.game.datatypes.entities.meta; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.protocol.protocol.ProtocolVersion; @@ -24,20 +25,20 @@ public class EndermanMetaData extends MobMetaData { } - public Blocks getCarriedBlock() { + public Block getCarriedBlock() { switch (version) { case VERSION_1_7_10: case VERSION_1_8: - return Blocks.byId((short) sets.get(16).getData(), (byte) sets.get(17).getData()); + return Blocks.getBlockByLegacy((short) sets.get(16).getData(), (byte) sets.get(17).getData()); case VERSION_1_9_4: - return (Blocks) sets.get(11).getData(); + return (Block) sets.get(11).getData(); case VERSION_1_10: case VERSION_1_11_2: case VERSION_1_12_2: case VERSION_1_13_2: - return (Blocks) sets.get(12).getData(); + return (Block) sets.get(12).getData(); } - return Blocks.AIR; + return Blocks.nullBlock; } public boolean isScreaming() { diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EntityMetaData.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EntityMetaData.java index f83c8de4a..f488299e0 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EntityMetaData.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/EntityMetaData.java @@ -107,7 +107,11 @@ public class EntityMetaData { break; case BLOCK_ID: int blockId = buffer.readVarInt(); - data = Blocks.byId(blockId >> 4, blockId & 0xF); + if (buffer.getVersion().getVersionNumber() <= ProtocolVersion.VERSION_1_12_2.getVersionNumber()) { + data = Blocks.getBlockByLegacy(blockId); + } else { + data = Blocks.getBlock(blockId, buffer.getVersion()); + } break; default: throw new IllegalStateException("Unexpected value: " + type); diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/MinecartMetaData.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/MinecartMetaData.java index 2e8ee3367..2e09f8a90 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/MinecartMetaData.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/meta/MinecartMetaData.java @@ -12,6 +12,7 @@ */ package de.bixilon.minosoft.game.datatypes.entities.meta; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.protocol.protocol.ProtocolVersion; @@ -71,20 +72,20 @@ public class MinecartMetaData extends EntityMetaData { return 0; } - public Blocks getBlock() { + public Block getBlock() { switch (version) { case VERSION_1_7_10: case VERSION_1_8: - return Blocks.byId((int) sets.get(20).getData() & 0xFF, (int) sets.get(20).getData() >>> 4); + return Blocks.getBlockByLegacy((int) sets.get(20).getData()); case VERSION_1_9_4: - return Blocks.byId((int) sets.get(8).getData() & 0xFF, (int) sets.get(8).getData() >>> 4); + return Blocks.getBlockByLegacy((int) sets.get(8).getData()); case VERSION_1_10: case VERSION_1_11_2: case VERSION_1_12_2: case VERSION_1_13_2: - return Blocks.byId((int) sets.get(9).getData() & 0xFF, (int) sets.get(9).getData() >>> 4); + return Blocks.getBlock((int) sets.get(9).getData(), version); } - return Blocks.AIR; + return Blocks.nullBlock; } public int getBlockYPosition() { diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/objects/FallingBlock.java b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/objects/FallingBlock.java index 150d5ff44..3e4dc3940 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/entities/objects/FallingBlock.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/entities/objects/FallingBlock.java @@ -13,6 +13,7 @@ package de.bixilon.minosoft.game.datatypes.entities.objects; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.entities.*; import de.bixilon.minosoft.game.datatypes.entities.meta.EntityMetaData; @@ -22,24 +23,24 @@ import de.bixilon.minosoft.protocol.protocol.ProtocolVersion; import java.util.HashMap; public class FallingBlock extends EntityObject implements ObjectInterface { - final Blocks block; + final Block block; FallingBlockMetaData metaData; public FallingBlock(int entityId, Location location, short yaw, short pitch, int additionalInt) { super(entityId, location, yaw, pitch, null); // objects do not spawn with metadata... reading additional info from the following int - block = Blocks.byId(additionalInt & 0xFFF, additionalInt >>> 12); + block = Blocks.getBlockByLegacy(additionalInt & 0xFFF, additionalInt >>> 12); } public FallingBlock(int entityId, Location location, short yaw, short pitch, int additionalInt, Velocity velocity) { super(entityId, location, yaw, pitch, velocity); - block = Blocks.byId(additionalInt & 0xFFF, additionalInt >>> 12); + block = Blocks.getBlockByLegacy(additionalInt & 0xFFF, additionalInt >>> 12); } public FallingBlock(int entityId, Location location, short yaw, short pitch, Velocity velocity, HashMap sets, ProtocolVersion version) { super(entityId, location, yaw, pitch, velocity); this.metaData = new FallingBlockMetaData(sets, version); - block = Blocks.UNKNOWN; // ToDo + block = Blocks.nullBlock; // ToDo } @@ -68,7 +69,7 @@ public class FallingBlock extends EntityObject implements ObjectInterface { return 0.98F; } - public Blocks getBlock() { + public Block getBlock() { // ToDo depends on protocol version return block; } diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/world/Chunk.java b/src/main/java/de/bixilon/minosoft/game/datatypes/world/Chunk.java index 78a03503a..cafbc2014 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/world/Chunk.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/world/Chunk.java @@ -13,7 +13,7 @@ package de.bixilon.minosoft.game.datatypes.world; -import de.bixilon.minosoft.game.datatypes.blocks.Blocks; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import java.util.HashMap; import java.util.Map; @@ -28,7 +28,7 @@ public class Chunk { this.nibbles = chunks; } - public Blocks getBlock(int x, int y, int z) { + public Block getBlock(int x, int y, int z) { if (x > 15 || y > 255 || z > 15 || x < 0 || y < 0 || z < 0) { throw new IllegalArgumentException(String.format("Invalid chunk location %s %s %s", x, y, z)); } @@ -36,17 +36,17 @@ public class Chunk { return nibbles.get(section).getBlock(x, y % 16, z); } - public Blocks getBlock(InChunkLocation location) { + public Block getBlock(InChunkLocation location) { return getBlock(location.getX(), location.getY(), location.getZ()); } - public void setBlock(int x, int y, int z, Blocks block) { + public void setBlock(int x, int y, int z, Block block) { byte section = (byte) (y / 16); createSection(section); nibbles.get(section).setBlock(x, y % 16, z, block); } - public void setBlock(InChunkLocation location, Blocks block) { + public void setBlock(InChunkLocation location, Block block) { byte section = (byte) (location.getY() / 16); createSection(section); nibbles.get(section).setBlock(location.getChunkNibbleLocation(), block); @@ -59,8 +59,8 @@ public class Chunk { } } - public void setBlocks(HashMap blocks) { - for (Map.Entry set : blocks.entrySet()) { + public void setBlocks(HashMap blocks) { + for (Map.Entry set : blocks.entrySet()) { setBlock(set.getKey(), set.getValue()); } } diff --git a/src/main/java/de/bixilon/minosoft/game/datatypes/world/ChunkNibble.java b/src/main/java/de/bixilon/minosoft/game/datatypes/world/ChunkNibble.java index c008fb5eb..8a48c6818 100644 --- a/src/main/java/de/bixilon/minosoft/game/datatypes/world/ChunkNibble.java +++ b/src/main/java/de/bixilon/minosoft/game/datatypes/world/ChunkNibble.java @@ -13,7 +13,7 @@ package de.bixilon.minosoft.game.datatypes.world; -import de.bixilon.minosoft.game.datatypes.blocks.Blocks; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import java.util.HashMap; @@ -21,9 +21,9 @@ import java.util.HashMap; * Collection of 16x16x16 blocks */ public class ChunkNibble { - final HashMap blocks; + final HashMap blocks; - public ChunkNibble(HashMap blocks) { + public ChunkNibble(HashMap blocks) { this.blocks = blocks; } @@ -32,19 +32,19 @@ public class ChunkNibble { this.blocks = new HashMap<>(); } - public Blocks getBlock(ChunkNibbleLocation loc) { + public Block getBlock(ChunkNibbleLocation loc) { return blocks.get(loc); } - public Blocks getBlock(int x, int y, int z) { + public Block getBlock(int x, int y, int z) { return getBlock(new ChunkNibbleLocation(x, y, z)); } - public void setBlock(int x, int y, int z, Blocks block) { + public void setBlock(int x, int y, int z, Block block) { blocks.put(new ChunkNibbleLocation(x, y, z), block); } - public void setBlock(ChunkNibbleLocation location, Blocks block) { + public void setBlock(ChunkNibbleLocation location, Block block) { blocks.put(location, block); } } 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 feb9ce40a..bef2f142b 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 @@ -15,6 +15,7 @@ package de.bixilon.minosoft.game.datatypes.world; import de.bixilon.minosoft.game.datatypes.Dimension; import de.bixilon.minosoft.game.datatypes.TextComponent; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.entities.Entity; import de.bixilon.minosoft.nbt.tag.CompoundTag; @@ -55,15 +56,15 @@ public class World { return chunks; } - public Blocks getBlock(BlockPosition pos) { + public Block getBlock(BlockPosition pos) { ChunkLocation loc = pos.getChunkLocation(); if (getChunk(loc) != null) { return getChunk(loc).getBlock(pos.getInChunkLocation()); } - return Blocks.AIR; + return Blocks.nullBlock; } - public void setBlock(BlockPosition pos, Blocks block) { + public void setBlock(BlockPosition pos, Block block) { if (getChunk(pos.getChunkLocation()) != null) { getChunk(pos.getChunkLocation()).setBlock(pos.getInChunkLocation(), block); } diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockChange.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockChange.java index 86ba198bd..72a8ee452 100644 --- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockChange.java +++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketBlockChange.java @@ -13,6 +13,7 @@ package de.bixilon.minosoft.protocol.packets.clientbound.play; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.world.BlockPosition; import de.bixilon.minosoft.logging.Log; @@ -22,7 +23,7 @@ import de.bixilon.minosoft.protocol.protocol.PacketHandler; public class PacketBlockChange implements ClientboundPacket { BlockPosition position; - Blocks block; + Block block; @Override @@ -30,16 +31,16 @@ public class PacketBlockChange implements ClientboundPacket { switch (buffer.getVersion()) { case VERSION_1_7_10: position = buffer.readBlockPosition(); - block = Blocks.byId(buffer.readVarInt(), buffer.readByte()); + block = Blocks.getBlockByLegacy(buffer.readVarInt(), buffer.readByte()); return true; case VERSION_1_8: case VERSION_1_9_4: case VERSION_1_10: case VERSION_1_11_2: case VERSION_1_12_2: + case VERSION_1_13_2: position = buffer.readPosition(); - int blockId = buffer.readVarInt(); - block = Blocks.byId(blockId >>> 4, blockId & 0xF); + block = Blocks.getBlock(buffer.readVarInt(), buffer.getVersion()); return true; } @@ -48,7 +49,7 @@ public class PacketBlockChange implements ClientboundPacket { @Override public void log() { - Log.protocol(String.format("Block change received at %s (block=%s)", position.toString(), block.name())); + Log.protocol(String.format("Block change received at %s (block=%s)", position.toString(), block)); } @Override @@ -60,7 +61,7 @@ public class PacketBlockChange implements ClientboundPacket { return position; } - public Blocks getBlock() { + public Block getBlock() { return block; } } diff --git a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketMultiBlockChange.java b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketMultiBlockChange.java index bd876876a..cbc38f2c2 100644 --- a/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketMultiBlockChange.java +++ b/src/main/java/de/bixilon/minosoft/protocol/packets/clientbound/play/PacketMultiBlockChange.java @@ -13,6 +13,7 @@ package de.bixilon.minosoft.protocol.packets.clientbound.play; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.world.ChunkLocation; import de.bixilon.minosoft.game.datatypes.world.InChunkLocation; @@ -24,7 +25,7 @@ import de.bixilon.minosoft.protocol.protocol.PacketHandler; import java.util.HashMap; public class PacketMultiBlockChange implements ClientboundPacket { - final HashMap blocks = new HashMap<>(); + final HashMap blocks = new HashMap<>(); ChunkLocation location; @Override @@ -44,7 +45,7 @@ public class PacketMultiBlockChange implements ClientboundPacket { byte y = (byte) ((raw & 0xFF_00_00) >>> 16); byte z = (byte) ((raw & 0x0F_00_00_00) >>> 24); byte x = (byte) ((raw & 0xF0_00_00_00) >>> 28); - blocks.put(new InChunkLocation(x, y, z), Blocks.byId(blockId, meta)); + blocks.put(new InChunkLocation(x, y, z), Blocks.getBlockByLegacy(blockId, meta)); } return true; } @@ -60,7 +61,7 @@ public class PacketMultiBlockChange implements ClientboundPacket { byte pos = buffer.readByte(); byte y = buffer.readByte(); int blockId = buffer.readVarInt(); - blocks.put(new InChunkLocation(((pos & 0xF0) >>> 4), y, (pos & 0xF)), Blocks.byId((blockId >>> 4), (blockId & 0xF))); + blocks.put(new InChunkLocation(((pos & 0xF0) >>> 4), y, (pos & 0xF)), Blocks.getBlock(blockId, buffer.getVersion())); } return true; } @@ -83,7 +84,7 @@ public class PacketMultiBlockChange implements ClientboundPacket { return location; } - public HashMap getBlocks() { + public HashMap getBlocks() { return blocks; } } 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 ec36cf08a..ac2c59095 100644 --- a/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java +++ b/src/main/java/de/bixilon/minosoft/protocol/protocol/InByteBuffer.java @@ -277,7 +277,7 @@ public class InByteBuffer { byte count = readByte(); short metaData = readShort(); CompoundTag nbt = readNBT(version == ProtocolVersion.VERSION_1_7_10); - return new Slot(Items.getItemByLegacy(id, metaData, version), count, metaData, nbt); + return new Slot(Items.getItemByLegacy(id, metaData), count, metaData, nbt); case VERSION_1_13_2: if (readBoolean()) { return new Slot(Items.getItem(readVarInt(), version), readByte(), readNBT()); 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 b606c7890..fe64ba1c4 100644 --- a/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java +++ b/src/main/java/de/bixilon/minosoft/protocol/protocol/PacketHandler.java @@ -391,7 +391,7 @@ public class PacketHandler { int y = ((int) pkg.getLocation().getY()) + record[1]; int z = ((int) pkg.getLocation().getY()) + record[2]; BlockPosition blockPosition = new BlockPosition(x, (short) y, z); - connection.getPlayer().getWorld().setBlock(blockPosition, Blocks.AIR); + connection.getPlayer().getWorld().setBlock(blockPosition, Blocks.nullBlock); } // ToDo: motion support } diff --git a/src/main/java/de/bixilon/minosoft/util/ChunkUtil.java b/src/main/java/de/bixilon/minosoft/util/ChunkUtil.java index 01f54b9f9..d7965dd74 100644 --- a/src/main/java/de/bixilon/minosoft/util/ChunkUtil.java +++ b/src/main/java/de/bixilon/minosoft/util/ChunkUtil.java @@ -13,6 +13,7 @@ package de.bixilon.minosoft.util; +import de.bixilon.minosoft.game.datatypes.blocks.Block; import de.bixilon.minosoft.game.datatypes.blocks.Blocks; import de.bixilon.minosoft.game.datatypes.world.Chunk; import de.bixilon.minosoft.game.datatypes.world.ChunkNibble; @@ -53,7 +54,7 @@ public class ChunkUtil { for (byte c = 0; c < 16; c++) { // max sections per chunks in chunk column if (BitByte.isBitSet(sectionBitMask, c)) { - HashMap blockMap = new HashMap<>(); + HashMap blockMap = new HashMap<>(); for (int nibbleY = 0; nibbleY < 16; nibbleY++) { for (int nibbleZ = 0; nibbleZ < 16; nibbleZ++) { @@ -79,8 +80,8 @@ public class ChunkUtil { // ToDo light, biome - Blocks block = Blocks.byId(singeBlockId, singleMeta); - if (block == Blocks.AIR) { + Block block = Blocks.getBlockByLegacy(singeBlockId, singleMeta); + if (block == Blocks.nullBlock) { arrayPos++; continue; } @@ -124,13 +125,13 @@ public class ChunkUtil { if (!BitByte.isBitSet(sectionBitMask, c)) { continue; } - HashMap blockMap = new HashMap<>(); + HashMap blockMap = new HashMap<>(); for (int nibbleY = 0; nibbleY < 16; nibbleY++) { for (int nibbleZ = 0; nibbleZ < 16; nibbleZ++) { for (int nibbleX = 0; nibbleX < 16; nibbleX++) { - Blocks block = Blocks.byId(blockData[arrayPos] >>> 4, blockData[arrayPos] & 0xF); - if (block == Blocks.AIR) { + Block block = Blocks.getBlockByLegacy(blockData[arrayPos]); + if (block == Blocks.nullBlock) { arrayPos++; continue; } @@ -176,7 +177,7 @@ public class ChunkUtil { long[] data = buffer.readLongs(buffer.readVarInt()); - HashMap blockMap = new HashMap<>(); + HashMap blockMap = new HashMap<>(); for (int nibbleY = 0; nibbleY < 16; nibbleY++) { for (int nibbleZ = 0; nibbleZ < 16; nibbleZ++) { for (int nibbleX = 0; nibbleX < 16; nibbleX++) { @@ -203,14 +204,14 @@ public class ChunkUtil { // you're probably reading light data instead blockId = palette[blockId]; } - Blocks block; + Block block; if (buffer.getVersion().getVersionNumber() >= ProtocolVersion.VERSION_1_13_2.getVersionNumber()) { // no meta data anymore - block = Blocks.byId(blockId); + block = Blocks.getBlock(blockId, buffer.getVersion()); } else { - block = Blocks.byId(blockId >>> 4, blockId & 0xF); + block = Blocks.getBlockByLegacy(blockId >>> 4, blockId & 0xF); } - if (block == Blocks.AIR) { + if (block == Blocks.nullBlock) { continue; } blockMap.put(new ChunkNibbleLocation(nibbleX, nibbleY, nibbleZ), block); diff --git a/src/main/resources/assets/mapping/1.12.2/blocks.json b/src/main/resources/assets/mapping/1.12.2/blocks.json new file mode 100644 index 000000000..a00b7f2f8 --- /dev/null +++ b/src/main/resources/assets/mapping/1.12.2/blocks.json @@ -0,0 +1,237 @@ +{ + "minecraft": { + "air": { + "states": [ + { + "id": 0 + } + ] + }, + "stone": { + "states": [ + { + "id": 1, + "meta": 0 + } + ] + }, + "granite": { + "states": [ + { + "id": 1, + "meta": 1 + } + ] + }, + "polished_granite": { + "states": [ + { + "id": 1, + "meta": 2 + } + ] + }, + "diorite": { + "states": [ + { + "id": 1, + "meta": 3 + } + ] + }, + "polished_diorite": { + "states": [ + { + "id": 1, + "meta": 4 + } + ] + }, + "andesite": { + "states": [ + { + "id": 1, + "meta": 5 + } + ] + }, + "polished_andesite": { + "states": [ + { + "id": 1, + "meta": 6 + } + ] + }, + "grass_block": { + "states": [ + { + "id": 2 + } + ] + }, + "dirt": { + "states": [ + { + "id": 3 + } + ] + }, + "cobblestone": { + "states": [ + { + "id": 4 + } + ] + }, + "bedrock": { + "states": [ + { + "id": 7 + } + ] + }, + "glass": { + "states": [ + { + "id": 20 + } + ] + }, + "white_wool": { + "states": [ + { + "id": 35, + "meta": 0 + } + ] + }, + "orange_wool": { + "states": [ + { + "id": 35, + "meta": 1 + } + ] + }, + "magenta_wool": { + "states": [ + { + "id": 35, + "meta": 2 + } + ] + }, + "light_blue_wool": { + "states": [ + { + "id": 35, + "meta": 3 + } + ] + }, + "yellow_wool": { + "states": [ + { + "id": 35, + "meta": 4 + } + ] + }, + "lime_wool": { + "states": [ + { + "id": 35, + "meta": 5 + } + ] + }, + "pink_wool": { + "states": [ + { + "id": 35, + "meta": 6 + } + ] + }, + "gray_wool": { + "states": [ + { + "id": 35, + "meta": 7 + } + ] + }, + "light_gray_wool": { + "states": [ + { + "id": 35, + "meta": 8 + } + ] + }, + "cyan_wool": { + "states": [ + { + "id": 35, + "meta": 9 + } + ] + }, + "purple_wool": { + "states": [ + { + "id": 35, + "meta": 10 + } + ] + }, + "blue_wool": { + "states": [ + { + "id": 35, + "meta": 11 + } + ] + }, + "brown_wool": { + "states": [ + { + "id": 35, + "meta": 12 + } + ] + }, + "green_wool": { + "states": [ + { + "id": 35, + "meta": 13 + } + ] + }, + "red_wool": { + "states": [ + { + "id": 35, + "meta": 14 + } + ] + }, + "black_wool": { + "states": [ + { + "id": 35, + "meta": 15 + } + ] + }, + "tnt": { + "states": [ + { + "id": 46 + } + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/1.12.2/items.json b/src/main/resources/assets/mapping/1.12.2/items.json deleted file mode 100644 index 50fe87c6c..000000000 --- a/src/main/resources/assets/mapping/1.12.2/items.json +++ /dev/null @@ -1 +0,0 @@ -{"minecraft":{"yellow_glazed_terracotta":{"protocol_id":239},"yellow_wool":{"protocol_meta":4,"protocol_id":35},"iron_leggings":{"protocol_id":308},"ghast_spawn_egg":{"protocol_meta":56,"protocol_id":383},"name_tag":{"protocol_id":421},"pig_spawn_egg":{"protocol_meta":90,"protocol_id":383},"chainmail_helmet":{"protocol_id":302},"compass":{"protocol_id":345},"gray_bed":{"protocol_meta":7,"protocol_id":355},"golden_horse_armor":{"protocol_id":418},"brown_concrete_powder":{"protocol_meta":12,"protocol_id":252},"acacia_fence_gate":{"protocol_id":187},"golden_hoe":{"protocol_id":294},"red_sand":{"protocol_meta":1,"protocol_id":12},"stone_shovel":{"protocol_id":273},"jungle_slab":{"protocol_meta":3,"protocol_id":126},"beetroot":{"protocol_id":434},"chainmail_leggings":{"protocol_id":304},"cow_spawn_egg":{"protocol_meta":92,"protocol_id":383},"oak_button":{"protocol_id":143},"saddle":{"protocol_id":329},"sunflower":{"protocol_id":175},"cake":{"protocol_id":354},"fire":{"protocol_id":51},"stone_bricks":{"protocol_id":98},"lily_pad":{"protocol_id":111},"enchanting_table":{"protocol_id":116},"apple":{"protocol_id":260},"observer":{"protocol_id":218},"pink_wool":{"protocol_meta":6,"protocol_id":35},"cobblestone_stairs":{"protocol_id":67},"light_gray_shulker_box":{"protocol_id":227},"stone":{"protocol_id":1},"poppy":{"protocol_id":38},"white_shulker_box":{"protocol_id":219},"redstone_ore":{"protocol_id":73},"green_banner":{"protocol_meta":2,"protocol_id":425},"jungle_sapling":{"protocol_meta":3,"protocol_id":6},"orange_stained_glass_pane":{"protocol_meta":1,"protocol_id":160},"melon_seeds":{"protocol_id":362},"cooked_chicken":{"protocol_id":366},"endermite_spawn_egg":{"protocol_meta":67,"protocol_id":383},"light_blue_stained_glass":{"protocol_meta":3,"protocol_id":95},"birch_door":{"protocol_id":428},"polar_bear_spawn_egg":{"protocol_meta":102,"protocol_id":383},"leather_leggings":{"protocol_id":300},"iron_sword":{"protocol_id":267},"filled_map":{"protocol_id":358},"jungle_fence_gate":{"protocol_id":185},"oak_slab":{"protocol_id":126},"golden_carrot":{"protocol_id":396},"lime_shulker_box":{"protocol_id":224},"firework_star":{"protocol_id":402},"dark_prismarine":{"protocol_meta":2,"protocol_id":168},"spruce_slab":{"protocol_meta":1,"protocol_id":126},"beacon":{"protocol_id":138},"written_book":{"protocol_id":387},"quartz":{"protocol_id":406},"white_terracotta":{"protocol_id":159},"golden_shovel":{"protocol_id":284},"peony":{"protocol_meta":5,"protocol_id":175},"green_carpet":{"protocol_meta":13,"protocol_id":171},"sea_lantern":{"protocol_id":169},"potion{Potion":{"protocol_meta":64,"protocol_id":373},"zombie_head":{"protocol_meta":2,"protocol_id":397},"rabbit_stew":{"protocol_id":413},"tipped_arrow":{"protocol_id":440},"ghast_tear":{"protocol_id":370},"skeleton_skull":{"protocol_id":397},"mossy_cobblestone_wall":{"protocol_meta":1,"protocol_id":139},"pumpkin_seeds":{"protocol_id":361},"white_wool":{"protocol_id":35},"squid_spawn_egg":{"protocol_meta":94,"protocol_id":383},"gray_banner":{"protocol_meta":8,"protocol_id":425},"purple_stained_glass":{"protocol_meta":10,"protocol_id":95},"blue_stained_glass_pane":{"protocol_meta":11,"protocol_id":160},"golden_apple":{"protocol_id":322},"cooked_mutton":{"protocol_id":424},"end_rod":{"protocol_id":198},"chiseled_quartz_block":{"protocol_meta":1,"protocol_id":155},"allium":{"protocol_meta":2,"protocol_id":38},"magenta_wool":{"protocol_meta":2,"protocol_id":35},"prismarine_bricks":{"protocol_meta":1,"protocol_id":168},"chainmail_chestplate":{"protocol_id":303},"crafting_table":{"protocol_id":58},"lever":{"protocol_id":69},"cyan_dye":{"protocol_meta":6,"protocol_id":351},"mossy_stone_bricks":{"protocol_meta":1,"protocol_id":98},"green_shulker_box":{"protocol_id":232},"blaze_powder":{"protocol_id":377},"tnt":{"protocol_id":46},"black_carpet":{"protocol_meta":15,"protocol_id":171},"golden_boots":{"protocol_id":317},"magenta_dye":{"protocol_meta":13,"protocol_id":351},"gray_terracotta":{"protocol_meta":7,"protocol_id":159},"white_carpet":{"protocol_id":171},"creeper_head":{"protocol_meta":4,"protocol_id":397},"end_stone_bricks":{"protocol_id":206},"sandstone_slab":{"protocol_meta":1,"protocol_id":44},"iron_horse_armor":{"protocol_id":417},"jungle_fence":{"protocol_id":190},"arrow":{"protocol_id":262},"chest_minecart":{"protocol_id":342},"red_carpet":{"protocol_meta":14,"protocol_id":171},"red_sandstone":{"protocol_id":179},"dark_oak_leaves":{"protocol_meta":1,"protocol_id":161},"dark_oak_slab":{"protocol_meta":5,"protocol_id":126},"wooden_hoe":{"protocol_id":290},"light_blue_dye":{"protocol_meta":12,"protocol_id":351},"pumpkin":{"protocol_id":86},"oak_sapling":{"protocol_id":6},"iron_axe":{"protocol_id":258},"wither_skeleton_skull":{"protocol_meta":1,"protocol_id":397},"light_weighted_pressure_plate":{"protocol_id":147},"bookshelf":{"protocol_id":47},"blue_stained_glass":{"protocol_meta":11,"protocol_id":95},"orange_glazed_terracotta":{"protocol_id":236},"stone_sword":{"protocol_id":272},"end_portal_frame":{"protocol_id":120},"purpur_stairs":{"protocol_id":203},"magma_block":{"protocol_id":213},"cobblestone_slab":{"protocol_meta":3,"protocol_id":44},"red_nether_bricks":{"protocol_id":215},"magma_cream":{"protocol_id":378},"lime_dye":{"protocol_meta":10,"protocol_id":351},"terracotta":{"protocol_id":172},"coal":{"protocol_id":263},"zombie_villager_spawn_egg":{"protocol_meta":27,"protocol_id":383},"wall_sign":{"protocol_id":68},"chiseled_red_sandstone":{"protocol_meta":1,"protocol_id":179},"leather_chestplate":{"protocol_id":299},"repeating_command_block":{"protocol_id":210},"dirt":{"protocol_id":3},"green_concrete_powder":{"protocol_meta":13,"protocol_id":252},"brown_stained_glass":{"protocol_meta":12,"protocol_id":95},"stray_spawn_egg":{"protocol_meta":6,"protocol_id":383},"witch_spawn_egg":{"protocol_meta":66,"protocol_id":383},"glass":{"protocol_id":20},"armor_stand":{"protocol_id":416},"cyan_carpet":{"protocol_meta":9,"protocol_id":171},"pink_concrete_powder":{"protocol_meta":6,"protocol_id":252},"popped_chorus_fruit":{"protocol_id":433},"oak_planks":{"protocol_id":5},"orange_wool":{"protocol_meta":1,"protocol_id":35},"cut_sandstone":{"protocol_meta":2,"protocol_id":24},"golden_leggings":{"protocol_id":316},"green_stained_glass_pane":{"protocol_meta":13,"protocol_id":160},"pufferfish":{"protocol_meta":3,"protocol_id":349},"evoker_spawn_egg":{"protocol_meta":34,"protocol_id":383},"spruce_leaves":{"protocol_meta":1,"protocol_id":18},"black_terracotta":{"protocol_meta":15,"protocol_id":159},"porkchop":{"protocol_id":319},"end_stone":{"protocol_id":121},"stick":{"protocol_id":280},"jungle_log":{"protocol_meta":3,"protocol_id":17},"wither_skeleton_spawn_egg":{"protocol_meta":5,"protocol_id":383},"yellow_terracotta":{"protocol_meta":4,"protocol_id":159},"piston":{"protocol_id":33},"purple_bed":{"protocol_meta":10,"protocol_id":355},"ink_sac":{"protocol_id":351},"orange_dye":{"protocol_meta":14,"protocol_id":351},"red_sandstone_stairs":{"protocol_id":180},"chicken":{"protocol_id":365},"magenta_shulker_box":{"protocol_id":221},"iron_ore":{"protocol_id":15},"yellow_bed":{"protocol_meta":4,"protocol_id":355},"netherrack":{"protocol_id":87},"nether_brick_slab":{"protocol_meta":6,"protocol_id":44},"prismarine_crystals":{"protocol_id":410},"oak_log":{"protocol_id":17},"redstone_torch":{"protocol_id":76},"diamond_hoe":{"protocol_id":293},"yellow_shulker_box":{"protocol_id":223},"magenta_banner":{"protocol_meta":13,"protocol_id":425},"cave_spider_spawn_egg":{"protocol_meta":59,"protocol_id":383},"jungle_boat":{"protocol_id":446},"gray_stained_glass_pane":{"protocol_meta":7,"protocol_id":160},"purple_carpet":{"protocol_meta":10,"protocol_id":171},"blue_concrete_powder":{"protocol_meta":11,"protocol_id":252},"mossy_cobblestone":{"protocol_id":48},"furnace":{"protocol_id":61},"orange_banner":{"protocol_meta":14,"protocol_id":425},"iron_trapdoor":{"protocol_id":167},"bone_meal":{"protocol_meta":15,"protocol_id":351},"lime_wool":{"protocol_meta":5,"protocol_id":35},"white_stained_glass_pane":{"protocol_id":160},"bricks":{"protocol_id":45},"brewing_stand":{"protocol_id":379},"golden_axe":{"protocol_id":286},"prismarine_shard":{"protocol_id":409},"magma_cube_spawn_egg":{"protocol_meta":62,"protocol_id":383},"barrier":{"protocol_id":166},"red_sandstone_slab":{"protocol_id":182},"spruce_fence":{"protocol_id":188},"dark_oak_door":{"protocol_id":431},"spruce_sapling":{"protocol_meta":1,"protocol_id":6},"cooked_beef":{"protocol_id":364},"magenta_carpet":{"protocol_meta":2,"protocol_id":171},"pink_stained_glass_pane":{"protocol_meta":6,"protocol_id":160},"acacia_log":{"protocol_id":162},"ladder":{"protocol_id":65},"jungle_planks":{"protocol_meta":3,"protocol_id":5},"item_frame":{"protocol_id":389},"slime_block":{"protocol_id":165},"bat_spawn_egg":{"protocol_meta":65,"protocol_id":383},"rail":{"protocol_id":66},"jungle_stairs":{"protocol_id":136},"minecart":{"protocol_id":328},"clay_ball":{"protocol_id":337},"sugar":{"protocol_id":353},"lapis_block":{"protocol_id":22},"prismarine":{"protocol_id":168},"iron_block":{"protocol_id":42},"purple_shulker_box":{"protocol_id":229},"spruce_boat":{"protocol_id":444},"paper":{"protocol_id":339},"end_gateway":{"protocol_id":209},"spider_spawn_egg":{"protocol_meta":52,"protocol_id":383},"brick_slab":{"protocol_meta":4,"protocol_id":44},"gravel":{"protocol_id":13},"music_disc_strad":{"protocol_id":2264},"light_gray_stained_glass_pane":{"protocol_meta":8,"protocol_id":160},"light_gray_concrete_powder":{"protocol_meta":8,"protocol_id":252},"vine":{"protocol_id":106},"red_mushroom_block":{"protocol_id":100},"pink_tulip":{"protocol_meta":7,"protocol_id":38},"vex_spawn_egg":{"protocol_meta":35,"protocol_id":383},"lime_banner":{"protocol_meta":10,"protocol_id":425},"golden_pickaxe":{"protocol_id":285},"light_blue_shulker_box":{"protocol_id":222},"orange_terracotta":{"protocol_meta":1,"protocol_id":159},"pink_stained_glass":{"protocol_meta":6,"protocol_id":95},"black_concrete":{"protocol_meta":15,"protocol_id":251},"dark_oak_sapling":{"protocol_meta":5,"protocol_id":6},"piston_head":{"protocol_id":34},"black_wool":{"protocol_meta":15,"protocol_id":35},"rabbit_spawn_egg":{"protocol_meta":101,"protocol_id":383},"wooden_shovel":{"protocol_id":269},"light_gray_carpet":{"protocol_meta":8,"protocol_id":171},"trapped_chest":{"protocol_id":146},"hopper_minecart":{"protocol_id":408},"dropper":{"protocol_id":158},"pink_bed":{"protocol_meta":6,"protocol_id":355},"fire_charge":{"protocol_id":385},"music_disc_cat":{"protocol_id":2257},"potatoes":{"protocol_id":142},"coarse_dirt":{"protocol_meta":1,"protocol_id":3},"spruce_log":{"protocol_meta":1,"protocol_id":17},"dark_oak_log":{"protocol_meta":1,"protocol_id":162},"chest":{"protocol_id":54},"brown_mushroom":{"protocol_id":39},"cyan_glazed_terracotta":{"protocol_id":244},"cauldron":{"protocol_id":380},"infested_stone_bricks":{"protocol_meta":2,"protocol_id":97},"painting":{"protocol_id":321},"chiseled_sandstone":{"protocol_meta":1,"protocol_id":24},"dark_oak_fence_gate":{"protocol_id":186},"polished_granite":{"protocol_meta":2,"protocol_id":1},"dark_oak_stairs":{"protocol_id":164},"glistering_melon_slice":{"protocol_id":382},"dispenser":{"protocol_id":23},"lime_stained_glass_pane":{"protocol_meta":5,"protocol_id":160},"light_gray_concrete":{"protocol_meta":8,"protocol_id":251},"grass_block":{"protocol_id":2},"acacia_sapling":{"protocol_meta":4,"protocol_id":6},"infested_cobblestone":{"protocol_meta":1,"protocol_id":97},"green_terracotta":{"protocol_meta":13,"protocol_id":159},"magenta_concrete_powder":{"protocol_meta":2,"protocol_id":252},"red_banner":{"protocol_meta":1,"protocol_id":425},"water":{"protocol_id":9},"iron_ingot":{"protocol_id":265},"tnt_minecart":{"protocol_id":407},"rotten_flesh":{"protocol_id":367},"iron_hoe":{"protocol_id":292},"polished_andesite":{"protocol_meta":6,"protocol_id":1},"acacia_leaves":{"protocol_id":161},"acacia_door":{"protocol_id":430},"flower_pot":{"protocol_id":390},"brick_stairs":{"protocol_id":108},"wet_sponge":{"protocol_meta":1,"protocol_id":19},"rose_red":{"protocol_meta":1,"protocol_id":351},"cracked_stone_bricks":{"protocol_meta":2,"protocol_id":98},"quartz_slab":{"protocol_meta":7,"protocol_id":44},"lime_carpet":{"protocol_meta":5,"protocol_id":171},"yellow_carpet":{"protocol_meta":4,"protocol_id":171},"leather_boots":{"protocol_id":301},"white_banner":{"protocol_meta":15,"protocol_id":425},"blaze_rod":{"protocol_id":369},"diamond_chestplate":{"protocol_id":311},"beetroot_soup":{"protocol_id":436},"furnace_minecart":{"protocol_id":343},"cobweb":{"protocol_id":30},"heavy_weighted_pressure_plate":{"protocol_id":148},"redstone_block":{"protocol_id":152},"sandstone":{"protocol_id":24},"yellow_stained_glass":{"protocol_meta":4,"protocol_id":95},"oak_door":{"protocol_id":324},"shield":{"protocol_id":442},"red_stained_glass_pane":{"protocol_meta":14,"protocol_id":160},"potato":{"protocol_id":392},"rose_bush":{"protocol_meta":4,"protocol_id":175},"lime_concrete_powder":{"protocol_meta":5,"protocol_id":252},"sponge":{"protocol_id":19},"mooshroom_spawn_egg":{"protocol_meta":96,"protocol_id":383},"golden_sword":{"protocol_id":283},"egg":{"protocol_id":344},"splash_potion":{"protocol_id":438},"fermented_spider_eye":{"protocol_id":376},"diamond_helmet":{"protocol_id":310},"stone_pickaxe":{"protocol_id":274},"red_shulker_box":{"protocol_id":233},"cyan_stained_glass_pane":{"protocol_meta":9,"protocol_id":160},"damaged_anvil":{"protocol_meta":2,"protocol_id":145},"red_mushroom":{"protocol_id":40},"spruce_planks":{"protocol_meta":1,"protocol_id":5},"gray_stained_glass":{"protocol_meta":7,"protocol_id":95},"enchanted_book":{"protocol_id":403},"repeater":{"protocol_id":356},"andesite":{"protocol_meta":5,"protocol_id":1},"music_disc_mellohi":{"protocol_id":2262},"cooked_rabbit":{"protocol_id":412},"purple_glazed_terracotta":{"protocol_id":245},"magenta_terracotta":{"protocol_meta":2,"protocol_id":159},"spider_eye":{"protocol_id":375},"music_disc_11":{"protocol_id":2266},"birch_planks":{"protocol_meta":2,"protocol_id":5},"iron_pickaxe":{"protocol_id":257},"tropical_fish":{"protocol_meta":2,"protocol_id":349},"music_disc_13":{"protocol_id":2256},"gray_glazed_terracotta":{"protocol_id":242},"gold_ingot":{"protocol_id":266},"brown_terracotta":{"protocol_meta":12,"protocol_id":159},"leather":{"protocol_id":334},"diamond_leggings":{"protocol_id":312},"golden_chestplate":{"protocol_id":315},"light_gray_bed":{"protocol_meta":8,"protocol_id":355},"dandelion":{"protocol_id":37},"cookie":{"protocol_id":357},"oxeye_daisy":{"protocol_meta":8,"protocol_id":38},"cooked_salmon":{"protocol_meta":1,"protocol_id":350},"zombie_spawn_egg":{"protocol_meta":54,"protocol_id":383},"brown_concrete":{"protocol_meta":12,"protocol_id":251},"light_blue_banner":{"protocol_meta":12,"protocol_id":425},"cyan_concrete":{"protocol_meta":9,"protocol_id":251},"music_disc_stal":{"protocol_id":2263},"music_disc_chirp":{"protocol_id":2259},"redstone":{"protocol_id":331},"wheat_seeds":{"protocol_id":295},"smooth_stone":{"protocol_meta":8,"protocol_id":43},"stone_pressure_plate":{"protocol_id":70},"end_crystal":{"protocol_id":426},"wolf_spawn_egg":{"protocol_meta":95,"protocol_id":383},"shears":{"protocol_id":359},"experience_bottle":{"protocol_id":384},"black_shulker_box":{"protocol_id":234},"rabbit_hide":{"protocol_id":415},"comparator":{"protocol_id":404},"ender_eye":{"protocol_id":381},"oak_stairs":{"protocol_id":53},"chain_command_block":{"protocol_id":211},"lime_concrete":{"protocol_meta":5,"protocol_id":251},"cyan_concrete_powder":{"protocol_meta":9,"protocol_id":252},"gray_dye":{"protocol_meta":8,"protocol_id":351},"white_stained_glass":{"protocol_id":95},"orange_stained_glass":{"protocol_meta":1,"protocol_id":95},"cocoa_beans":{"protocol_meta":3,"protocol_id":351},"structure_void":{"protocol_id":217},"iron_nugget":{"protocol_id":452},"light_gray_wool":{"protocol_meta":8,"protocol_id":35},"birch_fence":{"protocol_id":189},"light_gray_terracotta":{"protocol_meta":8,"protocol_id":159},"skeleton_horse_spawn_egg":{"protocol_meta":28,"protocol_id":383},"granite":{"protocol_meta":1,"protocol_id":1},"beef":{"protocol_id":363},"green_stained_glass":{"protocol_meta":13,"protocol_id":95},"diamond_pickaxe":{"protocol_id":278},"tripwire":{"protocol_id":132},"cobblestone_wall":{"protocol_id":139},"sheep_spawn_egg":{"protocol_meta":91,"protocol_id":383},"polished_diorite":{"protocol_meta":4,"protocol_id":1},"carrots":{"protocol_id":141},"orange_concrete_powder":{"protocol_meta":1,"protocol_id":252},"sand":{"protocol_id":12},"music_disc_ward":{"protocol_id":2265},"mushroom_stew":{"protocol_id":282},"purpur_slab":{"protocol_id":205},"light_blue_carpet":{"protocol_meta":3,"protocol_id":171},"white_concrete":{"protocol_id":251},"nether_brick_stairs":{"protocol_id":114},"cyan_wool":{"protocol_meta":9,"protocol_id":35},"hay_block":{"protocol_id":170},"purpur_pillar":{"protocol_id":202},"carrot_on_a_stick":{"protocol_id":398},"light_blue_glazed_terracotta":{"protocol_id":238},"wheat":{"protocol_id":296},"slime_spawn_egg":{"protocol_meta":55,"protocol_id":383},"dark_oak_fence":{"protocol_id":191},"ocelot_spawn_egg":{"protocol_meta":98,"protocol_id":383},"vindicator_spawn_egg":{"protocol_meta":36,"protocol_id":383},"lime_stained_glass":{"protocol_meta":5,"protocol_id":95},"jukebox":{"protocol_id":84},"cyan_terracotta":{"protocol_meta":9,"protocol_id":159},"orange_tulip":{"protocol_meta":5,"protocol_id":38},"chorus_flower":{"protocol_id":200},"pink_terracotta":{"protocol_meta":6,"protocol_id":159},"ice":{"protocol_id":79},"snow_block":{"protocol_id":80},"acacia_fence":{"protocol_id":192},"infested_cracked_stone_bricks":{"protocol_meta":4,"protocol_id":97},"wooden_pickaxe":{"protocol_id":270},"blue_bed":{"protocol_meta":11,"protocol_id":355},"end_portal":{"protocol_id":119},"magenta_concrete":{"protocol_meta":2,"protocol_id":251},"lava_bucket":{"protocol_id":327},"red_wool":{"protocol_meta":14,"protocol_id":35},"music_disc_mall":{"protocol_id":2261},"birch_fence_gate":{"protocol_id":184},"grass_path":{"protocol_id":208},"gunpowder":{"protocol_id":289},"dragon_breath":{"protocol_id":437},"pumpkin_stem":{"protocol_id":104},"blue_concrete":{"protocol_meta":11,"protocol_id":251},"elytra":{"protocol_id":443},"frosted_ice":{"protocol_id":212},"structure_block":{"protocol_id":255},"iron_boots":{"protocol_id":309},"bowl":{"protocol_id":281},"skeleton_spawn_egg":{"protocol_meta":51,"protocol_id":383},"nether_quartz_ore":{"protocol_id":153},"lime_terracotta":{"protocol_meta":5,"protocol_id":159},"magenta_stained_glass_pane":{"protocol_meta":2,"protocol_id":160},"brown_glazed_terracotta":{"protocol_id":247},"light_gray_stained_glass":{"protocol_meta":8,"protocol_id":95},"white_bed":{"protocol_id":355},"red_concrete_powder":{"protocol_meta":14,"protocol_id":252},"brown_wool":{"protocol_meta":12,"protocol_id":35},"yellow_concrete_powder":{"protocol_meta":4,"protocol_id":252},"red_tulip":{"protocol_meta":4,"protocol_id":38},"green_concrete":{"protocol_meta":13,"protocol_id":251},"podzol":{"protocol_meta":2,"protocol_id":3},"white_concrete_powder":{"protocol_id":252},"quartz_pillar":{"protocol_meta":2,"protocol_id":155},"dandelion_yellow":{"protocol_meta":11,"protocol_id":351},"light_blue_bed":{"protocol_meta":3,"protocol_id":355},"birch_log":{"protocol_meta":2,"protocol_id":17},"orange_shulker_box":{"protocol_id":220},"milk_bucket":{"protocol_id":335},"cyan_bed":{"protocol_meta":9,"protocol_id":355},"azure_bluet":{"protocol_meta":3,"protocol_id":38},"brown_mushroom_block":{"protocol_id":99},"acacia_stairs":{"protocol_id":163},"red_stained_glass":{"protocol_meta":14,"protocol_id":95},"feather":{"protocol_id":288},"glass_bottle":{"protocol_id":374},"purple_wool":{"protocol_meta":10,"protocol_id":35},"magenta_bed":{"protocol_meta":2,"protocol_id":355},"ender_pearl":{"protocol_id":368},"nether_portal":{"protocol_id":90},"melon":{"protocol_id":103},"diamond_ore":{"protocol_id":56},"dragon_head":{"protocol_meta":5,"protocol_id":397},"diorite":{"protocol_meta":3,"protocol_id":1},"diamond_shovel":{"protocol_id":277},"leather_helmet":{"protocol_id":298},"light_gray_banner":{"protocol_meta":7,"protocol_id":425},"music_disc_far":{"protocol_id":2260},"gray_wool":{"protocol_meta":7,"protocol_id":35},"donkey_spawn_egg":{"protocol_meta":31,"protocol_id":383},"infested_chiseled_stone_bricks":{"protocol_meta":5,"protocol_id":97},"string":{"protocol_id":287},"iron_door":{"protocol_id":330},"rabbit_foot":{"protocol_id":414},"lime_bed":{"protocol_meta":5,"protocol_id":355},"nether_bricks":{"protocol_id":112},"purple_dye":{"protocol_meta":5,"protocol_id":351},"blue_terracotta":{"protocol_meta":11,"protocol_id":159},"diamond":{"protocol_id":264},"gold_nugget":{"protocol_id":371},"green_bed":{"protocol_meta":13,"protocol_id":355},"magenta_glazed_terracotta":{"protocol_id":237},"redstone_wire":{"protocol_id":55},"stone_button":{"protocol_id":77},"diamond_sword":{"protocol_id":276},"ender_chest":{"protocol_id":130},"black_glazed_terracotta":{"protocol_id":250},"diamond_axe":{"protocol_id":279},"iron_helmet":{"protocol_id":306},"brown_banner":{"protocol_meta":3,"protocol_id":425},"birch_boat":{"protocol_id":445},"beetroots":{"protocol_id":207},"black_stained_glass_pane":{"protocol_meta":15,"protocol_id":160},"villager_spawn_egg":{"protocol_meta":120,"protocol_id":383},"gold_block":{"protocol_id":41},"yellow_banner":{"protocol_meta":11,"protocol_id":425},"mutton":{"protocol_id":423},"stone_axe":{"protocol_id":275},"orange_bed":{"protocol_meta":1,"protocol_id":355},"lilac":{"protocol_meta":1,"protocol_id":175},"detector_rail":{"protocol_id":28},"enderman_spawn_egg":{"protocol_meta":58,"protocol_id":383},"acacia_slab":{"protocol_meta":4,"protocol_id":126},"flint":{"protocol_id":318},"birch_leaves":{"protocol_meta":2,"protocol_id":18},"jack_o_lantern":{"protocol_id":91},"lead":{"protocol_id":420},"purple_banner":{"protocol_meta":5,"protocol_id":425},"firework_rocket":{"protocol_id":401},"cactus":{"protocol_id":81},"chicken_spawn_egg":{"protocol_meta":93,"protocol_id":383},"purple_stained_glass_pane":{"protocol_meta":10,"protocol_id":160},"shulker_spawn_egg":{"protocol_meta":69,"protocol_id":383},"cocoa":{"protocol_id":127},"pink_shulker_box":{"protocol_id":225},"shulker_shell":{"protocol_id":450},"iron_chestplate":{"protocol_id":307},"elder_guardian_spawn_egg":{"protocol_meta":4,"protocol_id":383},"acacia_planks":{"protocol_meta":4,"protocol_id":5},"bone_block":{"protocol_id":216},"black_stained_glass":{"protocol_meta":15,"protocol_id":95},"blue_glazed_terracotta":{"protocol_id":246},"sandstone_stairs":{"protocol_id":128},"white_glazed_terracotta":{"protocol_id":235},"pink_glazed_terracotta":{"protocol_id":241},"zombie_pigman_spawn_egg":{"protocol_meta":57,"protocol_id":383},"player_head":{"protocol_meta":3,"protocol_id":397},"yellow_stained_glass_pane":{"protocol_meta":4,"protocol_id":160},"red_glazed_terracotta":{"protocol_id":249},"acacia_boat":{"protocol_id":447},"purple_terracotta":{"protocol_meta":10,"protocol_id":159},"large_fern":{"protocol_meta":3,"protocol_id":175},"magenta_stained_glass":{"protocol_meta":2,"protocol_id":95},"nether_brick_fence":{"protocol_id":113},"hopper":{"protocol_id":154},"fern":{"protocol_meta":2,"protocol_id":31},"orange_carpet":{"protocol_meta":1,"protocol_id":171},"green_glazed_terracotta":{"protocol_id":248},"orange_concrete":{"protocol_meta":1,"protocol_id":251},"emerald":{"protocol_id":388},"bow":{"protocol_id":261},"nether_star":{"protocol_id":399},"note_block":{"protocol_id":25},"light_blue_concrete":{"protocol_meta":3,"protocol_id":251},"pumpkin_pie":{"protocol_id":400},"black_bed":{"protocol_meta":15,"protocol_id":355},"redstone_lamp":{"protocol_id":123},"quartz_stairs":{"protocol_id":156},"blue_orchid":{"protocol_meta":1,"protocol_id":38},"chorus_plant":{"protocol_id":199},"oak_boat":{"protocol_id":333},"slime_ball":{"protocol_id":341},"oak_leaves":{"protocol_id":18},"stone_brick_slab":{"protocol_meta":5,"protocol_id":44},"flint_and_steel":{"protocol_id":259},"brown_carpet":{"protocol_meta":12,"protocol_id":171},"cooked_cod":{"protocol_id":350},"dragon_egg":{"protocol_id":122},"red_concrete":{"protocol_meta":14,"protocol_id":251},"glowstone_dust":{"protocol_id":348},"sticky_piston":{"protocol_id":29},"snow":{"protocol_id":78},"red_bed":{"protocol_meta":14,"protocol_id":355},"cyan_stained_glass":{"protocol_meta":9,"protocol_id":95},"music_disc_wait":{"protocol_id":2267},"glass_pane":{"protocol_id":102},"iron_shovel":{"protocol_id":256},"fishing_rod":{"protocol_id":346},"guardian_spawn_egg":{"protocol_meta":68,"protocol_id":383},"pink_banner":{"protocol_meta":9,"protocol_id":425},"cyan_shulker_box":{"protocol_id":228},"oak_trapdoor":{"protocol_id":96},"spruce_fence_gate":{"protocol_id":183},"birch_sapling":{"protocol_meta":2,"protocol_id":6},"diamond_block":{"protocol_id":57},"cod":{"protocol_id":349},"pink_dye":{"protocol_meta":9,"protocol_id":351},"totem_of_undying":{"protocol_id":449},"dead_bush":{"protocol_id":32},"stone_slab":{"protocol_meta":2,"protocol_id":44},"farmland":{"protocol_id":60},"bedrock":{"protocol_id":7},"infested_mossy_stone_bricks":{"protocol_meta":3,"protocol_id":97},"enchanted_golden_apple":{"protocol_meta":1,"protocol_id":322},"brick":{"protocol_id":336},"wooden_axe":{"protocol_id":271},"spruce_stairs":{"protocol_id":134},"activator_rail":{"protocol_id":157},"nether_wart":{"protocol_id":372},"nether_brick":{"protocol_id":405},"smooth_quartz":{"protocol_meta":7,"protocol_id":43},"oak_pressure_plate":{"protocol_id":72},"soul_sand":{"protocol_id":88},"light_blue_concrete_powder":{"protocol_meta":3,"protocol_id":252},"creeper_spawn_egg":{"protocol_meta":50,"protocol_id":383},"spawner":{"protocol_id":52},"glowstone":{"protocol_id":89},"nether_wart_block":{"protocol_id":214},"white_tulip":{"protocol_meta":6,"protocol_id":38},"light_gray_glazed_terracotta":{"protocol_id":243},"dark_oak_boat":{"protocol_id":448},"wooden_sword":{"protocol_id":268},"green_wool":{"protocol_meta":13,"protocol_id":35},"potion":{"protocol_id":373},"husk_spawn_egg":{"protocol_meta":23,"protocol_id":383},"music_disc_blocks":{"protocol_id":2258},"lime_glazed_terracotta":{"protocol_id":240},"blaze_spawn_egg":{"protocol_meta":61,"protocol_id":383},"black_banner":{"protocol_id":425},"light_blue_stained_glass_pane":{"protocol_meta":3,"protocol_id":160},"purple_concrete":{"protocol_meta":10,"protocol_id":251},"map":{"protocol_id":395},"oak_fence_gate":{"protocol_id":107},"tripwire_hook":{"protocol_id":131},"black_concrete_powder":{"protocol_meta":15,"protocol_id":252},"salmon":{"protocol_meta":1,"protocol_id":349},"cactus_green":{"protocol_meta":2,"protocol_id":351},"sign":{"protocol_id":323},"chipped_anvil":{"protocol_meta":1,"protocol_id":145},"cyan_banner":{"protocol_meta":6,"protocol_id":425},"book":{"protocol_id":340},"stone_brick_stairs":{"protocol_id":109},"gold_ore":{"protocol_id":14},"lava":{"protocol_id":11},"light_blue_wool":{"protocol_meta":3,"protocol_id":35},"birch_stairs":{"protocol_id":135},"blue_shulker_box":{"protocol_id":230},"horse_spawn_egg":{"protocol_meta":100,"protocol_id":383},"baked_potato":{"protocol_id":393},"chorus_fruit":{"protocol_id":432},"purpur_block":{"protocol_id":201},"rabbit":{"protocol_id":411},"daylight_detector":{"protocol_id":151},"pink_concrete":{"protocol_meta":6,"protocol_id":251},"cooked_porkchop":{"protocol_id":320},"mule_spawn_egg":{"protocol_meta":32,"protocol_id":383},"blue_banner":{"protocol_meta":4,"protocol_id":425},"clock":{"protocol_id":347},"quartz_block":{"protocol_id":155},"infested_stone":{"protocol_id":97},"lapis_lazuli":{"protocol_meta":4,"protocol_id":351},"bone":{"protocol_id":352},"coal_ore":{"protocol_id":16},"jungle_door":{"protocol_id":429},"lingering_potion":{"protocol_id":441},"stone_hoe":{"protocol_id":291},"bucket":{"protocol_id":325},"bread":{"protocol_id":297},"carrot":{"protocol_id":391},"torch":{"protocol_id":50},"blue_wool":{"protocol_meta":11,"protocol_id":35},"command_block_minecart":{"protocol_id":422},"blue_carpet":{"protocol_meta":11,"protocol_id":171},"diamond_boots":{"protocol_id":313},"diamond_horse_armor":{"protocol_id":419},"zombie_horse_spawn_egg":{"protocol_meta":29,"protocol_id":383},"melon_stem":{"protocol_id":105},"spruce_door":{"protocol_id":427},"cobblestone":{"protocol_id":4},"jungle_leaves":{"protocol_meta":3,"protocol_id":18},"powered_rail":{"protocol_id":27},"coal_block":{"protocol_id":173},"writable_book":{"protocol_id":386},"golden_helmet":{"protocol_id":314},"snowball":{"protocol_id":332},"brown_bed":{"protocol_meta":12,"protocol_id":355},"spectral_arrow":{"protocol_id":439},"command_block":{"protocol_id":137},"yellow_concrete":{"protocol_meta":4,"protocol_id":251},"llama_spawn_egg":{"protocol_meta":103,"protocol_id":383},"light_blue_terracotta":{"protocol_meta":3,"protocol_id":159},"gray_concrete":{"protocol_meta":7,"protocol_id":251},"packed_ice":{"protocol_id":174},"chainmail_boots":{"protocol_id":305},"red_terracotta":{"protocol_meta":14,"protocol_id":159},"emerald_block":{"protocol_id":133},"birch_slab":{"protocol_meta":2,"protocol_id":126},"pink_carpet":{"protocol_meta":6,"protocol_id":171},"water_bucket":{"protocol_id":326},"iron_bars":{"protocol_id":101},"melon_slice":{"protocol_id":360},"lapis_ore":{"protocol_id":21},"mycelium":{"protocol_id":110},"cut_red_sandstone":{"protocol_meta":2,"protocol_id":179},"gray_shulker_box":{"protocol_id":226},"anvil":{"protocol_id":145},"gray_carpet":{"protocol_meta":7,"protocol_id":171},"brown_stained_glass_pane":{"protocol_meta":12,"protocol_id":160},"obsidian":{"protocol_id":49},"sugar_cane":{"protocol_id":338},"brown_shulker_box":{"protocol_id":231},"purple_concrete_powder":{"protocol_meta":10,"protocol_id":252},"poisonous_potato":{"protocol_id":394},"oak_fence":{"protocol_id":85},"dark_oak_planks":{"protocol_meta":5,"protocol_id":5},"light_gray_dye":{"protocol_meta":7,"protocol_id":351},"tall_grass":{"protocol_meta":2,"protocol_id":175},"chiseled_stone_bricks":{"protocol_meta":3,"protocol_id":98},"charcoal":{"protocol_meta":1,"protocol_id":263},"clay":{"protocol_id":337},"beetroot_seeds":{"protocol_id":435},"gray_concrete_powder":{"protocol_meta":7,"protocol_id":252},"emerald_ore":{"protocol_id":129}}} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/1.12.2/registries.json b/src/main/resources/assets/mapping/1.12.2/registries.json new file mode 100644 index 000000000..b61edcc6e --- /dev/null +++ b/src/main/resources/assets/mapping/1.12.2/registries.json @@ -0,0 +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}}}}} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/1.13.2/blocks.json b/src/main/resources/assets/mapping/1.13.2/blocks.json new file mode 100644 index 000000000..c2142415f --- /dev/null +++ b/src/main/resources/assets/mapping/1.13.2/blocks.json @@ -0,0 +1 @@ +{"minecraft":{"air":{"states":[{"id":0}]},"stone":{"states":[{"id":1}]},"granite":{"states":[{"id":2}]},"polished_granite":{"states":[{"id":3}]},"diorite":{"states":[{"id":4}]},"polished_diorite":{"states":[{"id":5}]},"andesite":{"states":[{"id":6}]},"polished_andesite":{"states":[{"id":7}]},"grass_block":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":8},{"properties":{"snowy":"false"},"id":9}]},"dirt":{"states":[{"id":10}]},"coarse_dirt":{"states":[{"id":11}]},"podzol":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":12},{"properties":{"snowy":"false"},"id":13}]},"cobblestone":{"states":[{"id":14}]},"oak_planks":{"states":[{"id":15}]},"spruce_planks":{"states":[{"id":16}]},"birch_planks":{"states":[{"id":17}]},"jungle_planks":{"states":[{"id":18}]},"acacia_planks":{"states":[{"id":19}]},"dark_oak_planks":{"states":[{"id":20}]},"oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":21},{"properties":{"stage":"1"},"id":22}]},"spruce_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":23},{"properties":{"stage":"1"},"id":24}]},"birch_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":25},{"properties":{"stage":"1"},"id":26}]},"jungle_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":27},{"properties":{"stage":"1"},"id":28}]},"acacia_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":29},{"properties":{"stage":"1"},"id":30}]},"dark_oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":31},{"properties":{"stage":"1"},"id":32}]},"bedrock":{"states":[{"id":33}]},"water":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":34},{"properties":{"level":"1"},"id":35},{"properties":{"level":"2"},"id":36},{"properties":{"level":"3"},"id":37},{"properties":{"level":"4"},"id":38},{"properties":{"level":"5"},"id":39},{"properties":{"level":"6"},"id":40},{"properties":{"level":"7"},"id":41},{"properties":{"level":"8"},"id":42},{"properties":{"level":"9"},"id":43},{"properties":{"level":"10"},"id":44},{"properties":{"level":"11"},"id":45},{"properties":{"level":"12"},"id":46},{"properties":{"level":"13"},"id":47},{"properties":{"level":"14"},"id":48},{"properties":{"level":"15"},"id":49}]},"lava":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":50},{"properties":{"level":"1"},"id":51},{"properties":{"level":"2"},"id":52},{"properties":{"level":"3"},"id":53},{"properties":{"level":"4"},"id":54},{"properties":{"level":"5"},"id":55},{"properties":{"level":"6"},"id":56},{"properties":{"level":"7"},"id":57},{"properties":{"level":"8"},"id":58},{"properties":{"level":"9"},"id":59},{"properties":{"level":"10"},"id":60},{"properties":{"level":"11"},"id":61},{"properties":{"level":"12"},"id":62},{"properties":{"level":"13"},"id":63},{"properties":{"level":"14"},"id":64},{"properties":{"level":"15"},"id":65}]},"sand":{"states":[{"id":66}]},"red_sand":{"states":[{"id":67}]},"gravel":{"states":[{"id":68}]},"gold_ore":{"states":[{"id":69}]},"iron_ore":{"states":[{"id":70}]},"coal_ore":{"states":[{"id":71}]},"oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":72},{"properties":{"axis":"y"},"id":73},{"properties":{"axis":"z"},"id":74}]},"spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":75},{"properties":{"axis":"y"},"id":76},{"properties":{"axis":"z"},"id":77}]},"birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":78},{"properties":{"axis":"y"},"id":79},{"properties":{"axis":"z"},"id":80}]},"jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":81},{"properties":{"axis":"y"},"id":82},{"properties":{"axis":"z"},"id":83}]},"acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":84},{"properties":{"axis":"y"},"id":85},{"properties":{"axis":"z"},"id":86}]},"dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":87},{"properties":{"axis":"y"},"id":88},{"properties":{"axis":"z"},"id":89}]},"stripped_spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":90},{"properties":{"axis":"y"},"id":91},{"properties":{"axis":"z"},"id":92}]},"stripped_birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":93},{"properties":{"axis":"y"},"id":94},{"properties":{"axis":"z"},"id":95}]},"stripped_jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":96},{"properties":{"axis":"y"},"id":97},{"properties":{"axis":"z"},"id":98}]},"stripped_acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":99},{"properties":{"axis":"y"},"id":100},{"properties":{"axis":"z"},"id":101}]},"stripped_dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":102},{"properties":{"axis":"y"},"id":103},{"properties":{"axis":"z"},"id":104}]},"stripped_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":105},{"properties":{"axis":"y"},"id":106},{"properties":{"axis":"z"},"id":107}]},"oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":108},{"properties":{"axis":"y"},"id":109},{"properties":{"axis":"z"},"id":110}]},"spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":111},{"properties":{"axis":"y"},"id":112},{"properties":{"axis":"z"},"id":113}]},"birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":114},{"properties":{"axis":"y"},"id":115},{"properties":{"axis":"z"},"id":116}]},"jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":117},{"properties":{"axis":"y"},"id":118},{"properties":{"axis":"z"},"id":119}]},"acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":120},{"properties":{"axis":"y"},"id":121},{"properties":{"axis":"z"},"id":122}]},"dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":123},{"properties":{"axis":"y"},"id":124},{"properties":{"axis":"z"},"id":125}]},"stripped_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":126},{"properties":{"axis":"y"},"id":127},{"properties":{"axis":"z"},"id":128}]},"stripped_spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":129},{"properties":{"axis":"y"},"id":130},{"properties":{"axis":"z"},"id":131}]},"stripped_birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":132},{"properties":{"axis":"y"},"id":133},{"properties":{"axis":"z"},"id":134}]},"stripped_jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":135},{"properties":{"axis":"y"},"id":136},{"properties":{"axis":"z"},"id":137}]},"stripped_acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":138},{"properties":{"axis":"y"},"id":139},{"properties":{"axis":"z"},"id":140}]},"stripped_dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":141},{"properties":{"axis":"y"},"id":142},{"properties":{"axis":"z"},"id":143}]},"oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":144},{"properties":{"distance":"1","persistent":"false"},"id":145},{"properties":{"distance":"2","persistent":"true"},"id":146},{"properties":{"distance":"2","persistent":"false"},"id":147},{"properties":{"distance":"3","persistent":"true"},"id":148},{"properties":{"distance":"3","persistent":"false"},"id":149},{"properties":{"distance":"4","persistent":"true"},"id":150},{"properties":{"distance":"4","persistent":"false"},"id":151},{"properties":{"distance":"5","persistent":"true"},"id":152},{"properties":{"distance":"5","persistent":"false"},"id":153},{"properties":{"distance":"6","persistent":"true"},"id":154},{"properties":{"distance":"6","persistent":"false"},"id":155},{"properties":{"distance":"7","persistent":"true"},"id":156},{"properties":{"distance":"7","persistent":"false"},"id":157}]},"spruce_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":158},{"properties":{"distance":"1","persistent":"false"},"id":159},{"properties":{"distance":"2","persistent":"true"},"id":160},{"properties":{"distance":"2","persistent":"false"},"id":161},{"properties":{"distance":"3","persistent":"true"},"id":162},{"properties":{"distance":"3","persistent":"false"},"id":163},{"properties":{"distance":"4","persistent":"true"},"id":164},{"properties":{"distance":"4","persistent":"false"},"id":165},{"properties":{"distance":"5","persistent":"true"},"id":166},{"properties":{"distance":"5","persistent":"false"},"id":167},{"properties":{"distance":"6","persistent":"true"},"id":168},{"properties":{"distance":"6","persistent":"false"},"id":169},{"properties":{"distance":"7","persistent":"true"},"id":170},{"properties":{"distance":"7","persistent":"false"},"id":171}]},"birch_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":172},{"properties":{"distance":"1","persistent":"false"},"id":173},{"properties":{"distance":"2","persistent":"true"},"id":174},{"properties":{"distance":"2","persistent":"false"},"id":175},{"properties":{"distance":"3","persistent":"true"},"id":176},{"properties":{"distance":"3","persistent":"false"},"id":177},{"properties":{"distance":"4","persistent":"true"},"id":178},{"properties":{"distance":"4","persistent":"false"},"id":179},{"properties":{"distance":"5","persistent":"true"},"id":180},{"properties":{"distance":"5","persistent":"false"},"id":181},{"properties":{"distance":"6","persistent":"true"},"id":182},{"properties":{"distance":"6","persistent":"false"},"id":183},{"properties":{"distance":"7","persistent":"true"},"id":184},{"properties":{"distance":"7","persistent":"false"},"id":185}]},"jungle_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":186},{"properties":{"distance":"1","persistent":"false"},"id":187},{"properties":{"distance":"2","persistent":"true"},"id":188},{"properties":{"distance":"2","persistent":"false"},"id":189},{"properties":{"distance":"3","persistent":"true"},"id":190},{"properties":{"distance":"3","persistent":"false"},"id":191},{"properties":{"distance":"4","persistent":"true"},"id":192},{"properties":{"distance":"4","persistent":"false"},"id":193},{"properties":{"distance":"5","persistent":"true"},"id":194},{"properties":{"distance":"5","persistent":"false"},"id":195},{"properties":{"distance":"6","persistent":"true"},"id":196},{"properties":{"distance":"6","persistent":"false"},"id":197},{"properties":{"distance":"7","persistent":"true"},"id":198},{"properties":{"distance":"7","persistent":"false"},"id":199}]},"acacia_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":200},{"properties":{"distance":"1","persistent":"false"},"id":201},{"properties":{"distance":"2","persistent":"true"},"id":202},{"properties":{"distance":"2","persistent":"false"},"id":203},{"properties":{"distance":"3","persistent":"true"},"id":204},{"properties":{"distance":"3","persistent":"false"},"id":205},{"properties":{"distance":"4","persistent":"true"},"id":206},{"properties":{"distance":"4","persistent":"false"},"id":207},{"properties":{"distance":"5","persistent":"true"},"id":208},{"properties":{"distance":"5","persistent":"false"},"id":209},{"properties":{"distance":"6","persistent":"true"},"id":210},{"properties":{"distance":"6","persistent":"false"},"id":211},{"properties":{"distance":"7","persistent":"true"},"id":212},{"properties":{"distance":"7","persistent":"false"},"id":213}]},"dark_oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":214},{"properties":{"distance":"1","persistent":"false"},"id":215},{"properties":{"distance":"2","persistent":"true"},"id":216},{"properties":{"distance":"2","persistent":"false"},"id":217},{"properties":{"distance":"3","persistent":"true"},"id":218},{"properties":{"distance":"3","persistent":"false"},"id":219},{"properties":{"distance":"4","persistent":"true"},"id":220},{"properties":{"distance":"4","persistent":"false"},"id":221},{"properties":{"distance":"5","persistent":"true"},"id":222},{"properties":{"distance":"5","persistent":"false"},"id":223},{"properties":{"distance":"6","persistent":"true"},"id":224},{"properties":{"distance":"6","persistent":"false"},"id":225},{"properties":{"distance":"7","persistent":"true"},"id":226},{"properties":{"distance":"7","persistent":"false"},"id":227}]},"sponge":{"states":[{"id":228}]},"wet_sponge":{"states":[{"id":229}]},"glass":{"states":[{"id":230}]},"lapis_ore":{"states":[{"id":231}]},"lapis_block":{"states":[{"id":232}]},"dispenser":{"properties":{"facing":["north","east","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":233},{"properties":{"facing":"north","triggered":"false"},"id":234},{"properties":{"facing":"east","triggered":"true"},"id":235},{"properties":{"facing":"east","triggered":"false"},"id":236},{"properties":{"facing":"south","triggered":"true"},"id":237},{"properties":{"facing":"south","triggered":"false"},"id":238},{"properties":{"facing":"west","triggered":"true"},"id":239},{"properties":{"facing":"west","triggered":"false"},"id":240},{"properties":{"facing":"up","triggered":"true"},"id":241},{"properties":{"facing":"up","triggered":"false"},"id":242},{"properties":{"facing":"down","triggered":"true"},"id":243},{"properties":{"facing":"down","triggered":"false"},"id":244}]},"sandstone":{"states":[{"id":245}]},"chiseled_sandstone":{"states":[{"id":246}]},"cut_sandstone":{"states":[{"id":247}]},"note_block":{"properties":{"instrument":["harp","basedrum","snare","hat","bass","flute","bell","guitar","chime","xylophone"],"note":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24"],"powered":["true","false"]},"states":[{"properties":{"instrument":"harp","note":"0","powered":"true"},"id":248},{"properties":{"instrument":"harp","note":"0","powered":"false"},"id":249},{"properties":{"instrument":"harp","note":"1","powered":"true"},"id":250},{"properties":{"instrument":"harp","note":"1","powered":"false"},"id":251},{"properties":{"instrument":"harp","note":"2","powered":"true"},"id":252},{"properties":{"instrument":"harp","note":"2","powered":"false"},"id":253},{"properties":{"instrument":"harp","note":"3","powered":"true"},"id":254},{"properties":{"instrument":"harp","note":"3","powered":"false"},"id":255},{"properties":{"instrument":"harp","note":"4","powered":"true"},"id":256},{"properties":{"instrument":"harp","note":"4","powered":"false"},"id":257},{"properties":{"instrument":"harp","note":"5","powered":"true"},"id":258},{"properties":{"instrument":"harp","note":"5","powered":"false"},"id":259},{"properties":{"instrument":"harp","note":"6","powered":"true"},"id":260},{"properties":{"instrument":"harp","note":"6","powered":"false"},"id":261},{"properties":{"instrument":"harp","note":"7","powered":"true"},"id":262},{"properties":{"instrument":"harp","note":"7","powered":"false"},"id":263},{"properties":{"instrument":"harp","note":"8","powered":"true"},"id":264},{"properties":{"instrument":"harp","note":"8","powered":"false"},"id":265},{"properties":{"instrument":"harp","note":"9","powered":"true"},"id":266},{"properties":{"instrument":"harp","note":"9","powered":"false"},"id":267},{"properties":{"instrument":"harp","note":"10","powered":"true"},"id":268},{"properties":{"instrument":"harp","note":"10","powered":"false"},"id":269},{"properties":{"instrument":"harp","note":"11","powered":"true"},"id":270},{"properties":{"instrument":"harp","note":"11","powered":"false"},"id":271},{"properties":{"instrument":"harp","note":"12","powered":"true"},"id":272},{"properties":{"instrument":"harp","note":"12","powered":"false"},"id":273},{"properties":{"instrument":"harp","note":"13","powered":"true"},"id":274},{"properties":{"instrument":"harp","note":"13","powered":"false"},"id":275},{"properties":{"instrument":"harp","note":"14","powered":"true"},"id":276},{"properties":{"instrument":"harp","note":"14","powered":"false"},"id":277},{"properties":{"instrument":"harp","note":"15","powered":"true"},"id":278},{"properties":{"instrument":"harp","note":"15","powered":"false"},"id":279},{"properties":{"instrument":"harp","note":"16","powered":"true"},"id":280},{"properties":{"instrument":"harp","note":"16","powered":"false"},"id":281},{"properties":{"instrument":"harp","note":"17","powered":"true"},"id":282},{"properties":{"instrument":"harp","note":"17","powered":"false"},"id":283},{"properties":{"instrument":"harp","note":"18","powered":"true"},"id":284},{"properties":{"instrument":"harp","note":"18","powered":"false"},"id":285},{"properties":{"instrument":"harp","note":"19","powered":"true"},"id":286},{"properties":{"instrument":"harp","note":"19","powered":"false"},"id":287},{"properties":{"instrument":"harp","note":"20","powered":"true"},"id":288},{"properties":{"instrument":"harp","note":"20","powered":"false"},"id":289},{"properties":{"instrument":"harp","note":"21","powered":"true"},"id":290},{"properties":{"instrument":"harp","note":"21","powered":"false"},"id":291},{"properties":{"instrument":"harp","note":"22","powered":"true"},"id":292},{"properties":{"instrument":"harp","note":"22","powered":"false"},"id":293},{"properties":{"instrument":"harp","note":"23","powered":"true"},"id":294},{"properties":{"instrument":"harp","note":"23","powered":"false"},"id":295},{"properties":{"instrument":"harp","note":"24","powered":"true"},"id":296},{"properties":{"instrument":"harp","note":"24","powered":"false"},"id":297},{"properties":{"instrument":"basedrum","note":"0","powered":"true"},"id":298},{"properties":{"instrument":"basedrum","note":"0","powered":"false"},"id":299},{"properties":{"instrument":"basedrum","note":"1","powered":"true"},"id":300},{"properties":{"instrument":"basedrum","note":"1","powered":"false"},"id":301},{"properties":{"instrument":"basedrum","note":"2","powered":"true"},"id":302},{"properties":{"instrument":"basedrum","note":"2","powered":"false"},"id":303},{"properties":{"instrument":"basedrum","note":"3","powered":"true"},"id":304},{"properties":{"instrument":"basedrum","note":"3","powered":"false"},"id":305},{"properties":{"instrument":"basedrum","note":"4","powered":"true"},"id":306},{"properties":{"instrument":"basedrum","note":"4","powered":"false"},"id":307},{"properties":{"instrument":"basedrum","note":"5","powered":"true"},"id":308},{"properties":{"instrument":"basedrum","note":"5","powered":"false"},"id":309},{"properties":{"instrument":"basedrum","note":"6","powered":"true"},"id":310},{"properties":{"instrument":"basedrum","note":"6","powered":"false"},"id":311},{"properties":{"instrument":"basedrum","note":"7","powered":"true"},"id":312},{"properties":{"instrument":"basedrum","note":"7","powered":"false"},"id":313},{"properties":{"instrument":"basedrum","note":"8","powered":"true"},"id":314},{"properties":{"instrument":"basedrum","note":"8","powered":"false"},"id":315},{"properties":{"instrument":"basedrum","note":"9","powered":"true"},"id":316},{"properties":{"instrument":"basedrum","note":"9","powered":"false"},"id":317},{"properties":{"instrument":"basedrum","note":"10","powered":"true"},"id":318},{"properties":{"instrument":"basedrum","note":"10","powered":"false"},"id":319},{"properties":{"instrument":"basedrum","note":"11","powered":"true"},"id":320},{"properties":{"instrument":"basedrum","note":"11","powered":"false"},"id":321},{"properties":{"instrument":"basedrum","note":"12","powered":"true"},"id":322},{"properties":{"instrument":"basedrum","note":"12","powered":"false"},"id":323},{"properties":{"instrument":"basedrum","note":"13","powered":"true"},"id":324},{"properties":{"instrument":"basedrum","note":"13","powered":"false"},"id":325},{"properties":{"instrument":"basedrum","note":"14","powered":"true"},"id":326},{"properties":{"instrument":"basedrum","note":"14","powered":"false"},"id":327},{"properties":{"instrument":"basedrum","note":"15","powered":"true"},"id":328},{"properties":{"instrument":"basedrum","note":"15","powered":"false"},"id":329},{"properties":{"instrument":"basedrum","note":"16","powered":"true"},"id":330},{"properties":{"instrument":"basedrum","note":"16","powered":"false"},"id":331},{"properties":{"instrument":"basedrum","note":"17","powered":"true"},"id":332},{"properties":{"instrument":"basedrum","note":"17","powered":"false"},"id":333},{"properties":{"instrument":"basedrum","note":"18","powered":"true"},"id":334},{"properties":{"instrument":"basedrum","note":"18","powered":"false"},"id":335},{"properties":{"instrument":"basedrum","note":"19","powered":"true"},"id":336},{"properties":{"instrument":"basedrum","note":"19","powered":"false"},"id":337},{"properties":{"instrument":"basedrum","note":"20","powered":"true"},"id":338},{"properties":{"instrument":"basedrum","note":"20","powered":"false"},"id":339},{"properties":{"instrument":"basedrum","note":"21","powered":"true"},"id":340},{"properties":{"instrument":"basedrum","note":"21","powered":"false"},"id":341},{"properties":{"instrument":"basedrum","note":"22","powered":"true"},"id":342},{"properties":{"instrument":"basedrum","note":"22","powered":"false"},"id":343},{"properties":{"instrument":"basedrum","note":"23","powered":"true"},"id":344},{"properties":{"instrument":"basedrum","note":"23","powered":"false"},"id":345},{"properties":{"instrument":"basedrum","note":"24","powered":"true"},"id":346},{"properties":{"instrument":"basedrum","note":"24","powered":"false"},"id":347},{"properties":{"instrument":"snare","note":"0","powered":"true"},"id":348},{"properties":{"instrument":"snare","note":"0","powered":"false"},"id":349},{"properties":{"instrument":"snare","note":"1","powered":"true"},"id":350},{"properties":{"instrument":"snare","note":"1","powered":"false"},"id":351},{"properties":{"instrument":"snare","note":"2","powered":"true"},"id":352},{"properties":{"instrument":"snare","note":"2","powered":"false"},"id":353},{"properties":{"instrument":"snare","note":"3","powered":"true"},"id":354},{"properties":{"instrument":"snare","note":"3","powered":"false"},"id":355},{"properties":{"instrument":"snare","note":"4","powered":"true"},"id":356},{"properties":{"instrument":"snare","note":"4","powered":"false"},"id":357},{"properties":{"instrument":"snare","note":"5","powered":"true"},"id":358},{"properties":{"instrument":"snare","note":"5","powered":"false"},"id":359},{"properties":{"instrument":"snare","note":"6","powered":"true"},"id":360},{"properties":{"instrument":"snare","note":"6","powered":"false"},"id":361},{"properties":{"instrument":"snare","note":"7","powered":"true"},"id":362},{"properties":{"instrument":"snare","note":"7","powered":"false"},"id":363},{"properties":{"instrument":"snare","note":"8","powered":"true"},"id":364},{"properties":{"instrument":"snare","note":"8","powered":"false"},"id":365},{"properties":{"instrument":"snare","note":"9","powered":"true"},"id":366},{"properties":{"instrument":"snare","note":"9","powered":"false"},"id":367},{"properties":{"instrument":"snare","note":"10","powered":"true"},"id":368},{"properties":{"instrument":"snare","note":"10","powered":"false"},"id":369},{"properties":{"instrument":"snare","note":"11","powered":"true"},"id":370},{"properties":{"instrument":"snare","note":"11","powered":"false"},"id":371},{"properties":{"instrument":"snare","note":"12","powered":"true"},"id":372},{"properties":{"instrument":"snare","note":"12","powered":"false"},"id":373},{"properties":{"instrument":"snare","note":"13","powered":"true"},"id":374},{"properties":{"instrument":"snare","note":"13","powered":"false"},"id":375},{"properties":{"instrument":"snare","note":"14","powered":"true"},"id":376},{"properties":{"instrument":"snare","note":"14","powered":"false"},"id":377},{"properties":{"instrument":"snare","note":"15","powered":"true"},"id":378},{"properties":{"instrument":"snare","note":"15","powered":"false"},"id":379},{"properties":{"instrument":"snare","note":"16","powered":"true"},"id":380},{"properties":{"instrument":"snare","note":"16","powered":"false"},"id":381},{"properties":{"instrument":"snare","note":"17","powered":"true"},"id":382},{"properties":{"instrument":"snare","note":"17","powered":"false"},"id":383},{"properties":{"instrument":"snare","note":"18","powered":"true"},"id":384},{"properties":{"instrument":"snare","note":"18","powered":"false"},"id":385},{"properties":{"instrument":"snare","note":"19","powered":"true"},"id":386},{"properties":{"instrument":"snare","note":"19","powered":"false"},"id":387},{"properties":{"instrument":"snare","note":"20","powered":"true"},"id":388},{"properties":{"instrument":"snare","note":"20","powered":"false"},"id":389},{"properties":{"instrument":"snare","note":"21","powered":"true"},"id":390},{"properties":{"instrument":"snare","note":"21","powered":"false"},"id":391},{"properties":{"instrument":"snare","note":"22","powered":"true"},"id":392},{"properties":{"instrument":"snare","note":"22","powered":"false"},"id":393},{"properties":{"instrument":"snare","note":"23","powered":"true"},"id":394},{"properties":{"instrument":"snare","note":"23","powered":"false"},"id":395},{"properties":{"instrument":"snare","note":"24","powered":"true"},"id":396},{"properties":{"instrument":"snare","note":"24","powered":"false"},"id":397},{"properties":{"instrument":"hat","note":"0","powered":"true"},"id":398},{"properties":{"instrument":"hat","note":"0","powered":"false"},"id":399},{"properties":{"instrument":"hat","note":"1","powered":"true"},"id":400},{"properties":{"instrument":"hat","note":"1","powered":"false"},"id":401},{"properties":{"instrument":"hat","note":"2","powered":"true"},"id":402},{"properties":{"instrument":"hat","note":"2","powered":"false"},"id":403},{"properties":{"instrument":"hat","note":"3","powered":"true"},"id":404},{"properties":{"instrument":"hat","note":"3","powered":"false"},"id":405},{"properties":{"instrument":"hat","note":"4","powered":"true"},"id":406},{"properties":{"instrument":"hat","note":"4","powered":"false"},"id":407},{"properties":{"instrument":"hat","note":"5","powered":"true"},"id":408},{"properties":{"instrument":"hat","note":"5","powered":"false"},"id":409},{"properties":{"instrument":"hat","note":"6","powered":"true"},"id":410},{"properties":{"instrument":"hat","note":"6","powered":"false"},"id":411},{"properties":{"instrument":"hat","note":"7","powered":"true"},"id":412},{"properties":{"instrument":"hat","note":"7","powered":"false"},"id":413},{"properties":{"instrument":"hat","note":"8","powered":"true"},"id":414},{"properties":{"instrument":"hat","note":"8","powered":"false"},"id":415},{"properties":{"instrument":"hat","note":"9","powered":"true"},"id":416},{"properties":{"instrument":"hat","note":"9","powered":"false"},"id":417},{"properties":{"instrument":"hat","note":"10","powered":"true"},"id":418},{"properties":{"instrument":"hat","note":"10","powered":"false"},"id":419},{"properties":{"instrument":"hat","note":"11","powered":"true"},"id":420},{"properties":{"instrument":"hat","note":"11","powered":"false"},"id":421},{"properties":{"instrument":"hat","note":"12","powered":"true"},"id":422},{"properties":{"instrument":"hat","note":"12","powered":"false"},"id":423},{"properties":{"instrument":"hat","note":"13","powered":"true"},"id":424},{"properties":{"instrument":"hat","note":"13","powered":"false"},"id":425},{"properties":{"instrument":"hat","note":"14","powered":"true"},"id":426},{"properties":{"instrument":"hat","note":"14","powered":"false"},"id":427},{"properties":{"instrument":"hat","note":"15","powered":"true"},"id":428},{"properties":{"instrument":"hat","note":"15","powered":"false"},"id":429},{"properties":{"instrument":"hat","note":"16","powered":"true"},"id":430},{"properties":{"instrument":"hat","note":"16","powered":"false"},"id":431},{"properties":{"instrument":"hat","note":"17","powered":"true"},"id":432},{"properties":{"instrument":"hat","note":"17","powered":"false"},"id":433},{"properties":{"instrument":"hat","note":"18","powered":"true"},"id":434},{"properties":{"instrument":"hat","note":"18","powered":"false"},"id":435},{"properties":{"instrument":"hat","note":"19","powered":"true"},"id":436},{"properties":{"instrument":"hat","note":"19","powered":"false"},"id":437},{"properties":{"instrument":"hat","note":"20","powered":"true"},"id":438},{"properties":{"instrument":"hat","note":"20","powered":"false"},"id":439},{"properties":{"instrument":"hat","note":"21","powered":"true"},"id":440},{"properties":{"instrument":"hat","note":"21","powered":"false"},"id":441},{"properties":{"instrument":"hat","note":"22","powered":"true"},"id":442},{"properties":{"instrument":"hat","note":"22","powered":"false"},"id":443},{"properties":{"instrument":"hat","note":"23","powered":"true"},"id":444},{"properties":{"instrument":"hat","note":"23","powered":"false"},"id":445},{"properties":{"instrument":"hat","note":"24","powered":"true"},"id":446},{"properties":{"instrument":"hat","note":"24","powered":"false"},"id":447},{"properties":{"instrument":"bass","note":"0","powered":"true"},"id":448},{"properties":{"instrument":"bass","note":"0","powered":"false"},"id":449},{"properties":{"instrument":"bass","note":"1","powered":"true"},"id":450},{"properties":{"instrument":"bass","note":"1","powered":"false"},"id":451},{"properties":{"instrument":"bass","note":"2","powered":"true"},"id":452},{"properties":{"instrument":"bass","note":"2","powered":"false"},"id":453},{"properties":{"instrument":"bass","note":"3","powered":"true"},"id":454},{"properties":{"instrument":"bass","note":"3","powered":"false"},"id":455},{"properties":{"instrument":"bass","note":"4","powered":"true"},"id":456},{"properties":{"instrument":"bass","note":"4","powered":"false"},"id":457},{"properties":{"instrument":"bass","note":"5","powered":"true"},"id":458},{"properties":{"instrument":"bass","note":"5","powered":"false"},"id":459},{"properties":{"instrument":"bass","note":"6","powered":"true"},"id":460},{"properties":{"instrument":"bass","note":"6","powered":"false"},"id":461},{"properties":{"instrument":"bass","note":"7","powered":"true"},"id":462},{"properties":{"instrument":"bass","note":"7","powered":"false"},"id":463},{"properties":{"instrument":"bass","note":"8","powered":"true"},"id":464},{"properties":{"instrument":"bass","note":"8","powered":"false"},"id":465},{"properties":{"instrument":"bass","note":"9","powered":"true"},"id":466},{"properties":{"instrument":"bass","note":"9","powered":"false"},"id":467},{"properties":{"instrument":"bass","note":"10","powered":"true"},"id":468},{"properties":{"instrument":"bass","note":"10","powered":"false"},"id":469},{"properties":{"instrument":"bass","note":"11","powered":"true"},"id":470},{"properties":{"instrument":"bass","note":"11","powered":"false"},"id":471},{"properties":{"instrument":"bass","note":"12","powered":"true"},"id":472},{"properties":{"instrument":"bass","note":"12","powered":"false"},"id":473},{"properties":{"instrument":"bass","note":"13","powered":"true"},"id":474},{"properties":{"instrument":"bass","note":"13","powered":"false"},"id":475},{"properties":{"instrument":"bass","note":"14","powered":"true"},"id":476},{"properties":{"instrument":"bass","note":"14","powered":"false"},"id":477},{"properties":{"instrument":"bass","note":"15","powered":"true"},"id":478},{"properties":{"instrument":"bass","note":"15","powered":"false"},"id":479},{"properties":{"instrument":"bass","note":"16","powered":"true"},"id":480},{"properties":{"instrument":"bass","note":"16","powered":"false"},"id":481},{"properties":{"instrument":"bass","note":"17","powered":"true"},"id":482},{"properties":{"instrument":"bass","note":"17","powered":"false"},"id":483},{"properties":{"instrument":"bass","note":"18","powered":"true"},"id":484},{"properties":{"instrument":"bass","note":"18","powered":"false"},"id":485},{"properties":{"instrument":"bass","note":"19","powered":"true"},"id":486},{"properties":{"instrument":"bass","note":"19","powered":"false"},"id":487},{"properties":{"instrument":"bass","note":"20","powered":"true"},"id":488},{"properties":{"instrument":"bass","note":"20","powered":"false"},"id":489},{"properties":{"instrument":"bass","note":"21","powered":"true"},"id":490},{"properties":{"instrument":"bass","note":"21","powered":"false"},"id":491},{"properties":{"instrument":"bass","note":"22","powered":"true"},"id":492},{"properties":{"instrument":"bass","note":"22","powered":"false"},"id":493},{"properties":{"instrument":"bass","note":"23","powered":"true"},"id":494},{"properties":{"instrument":"bass","note":"23","powered":"false"},"id":495},{"properties":{"instrument":"bass","note":"24","powered":"true"},"id":496},{"properties":{"instrument":"bass","note":"24","powered":"false"},"id":497},{"properties":{"instrument":"flute","note":"0","powered":"true"},"id":498},{"properties":{"instrument":"flute","note":"0","powered":"false"},"id":499},{"properties":{"instrument":"flute","note":"1","powered":"true"},"id":500},{"properties":{"instrument":"flute","note":"1","powered":"false"},"id":501},{"properties":{"instrument":"flute","note":"2","powered":"true"},"id":502},{"properties":{"instrument":"flute","note":"2","powered":"false"},"id":503},{"properties":{"instrument":"flute","note":"3","powered":"true"},"id":504},{"properties":{"instrument":"flute","note":"3","powered":"false"},"id":505},{"properties":{"instrument":"flute","note":"4","powered":"true"},"id":506},{"properties":{"instrument":"flute","note":"4","powered":"false"},"id":507},{"properties":{"instrument":"flute","note":"5","powered":"true"},"id":508},{"properties":{"instrument":"flute","note":"5","powered":"false"},"id":509},{"properties":{"instrument":"flute","note":"6","powered":"true"},"id":510},{"properties":{"instrument":"flute","note":"6","powered":"false"},"id":511},{"properties":{"instrument":"flute","note":"7","powered":"true"},"id":512},{"properties":{"instrument":"flute","note":"7","powered":"false"},"id":513},{"properties":{"instrument":"flute","note":"8","powered":"true"},"id":514},{"properties":{"instrument":"flute","note":"8","powered":"false"},"id":515},{"properties":{"instrument":"flute","note":"9","powered":"true"},"id":516},{"properties":{"instrument":"flute","note":"9","powered":"false"},"id":517},{"properties":{"instrument":"flute","note":"10","powered":"true"},"id":518},{"properties":{"instrument":"flute","note":"10","powered":"false"},"id":519},{"properties":{"instrument":"flute","note":"11","powered":"true"},"id":520},{"properties":{"instrument":"flute","note":"11","powered":"false"},"id":521},{"properties":{"instrument":"flute","note":"12","powered":"true"},"id":522},{"properties":{"instrument":"flute","note":"12","powered":"false"},"id":523},{"properties":{"instrument":"flute","note":"13","powered":"true"},"id":524},{"properties":{"instrument":"flute","note":"13","powered":"false"},"id":525},{"properties":{"instrument":"flute","note":"14","powered":"true"},"id":526},{"properties":{"instrument":"flute","note":"14","powered":"false"},"id":527},{"properties":{"instrument":"flute","note":"15","powered":"true"},"id":528},{"properties":{"instrument":"flute","note":"15","powered":"false"},"id":529},{"properties":{"instrument":"flute","note":"16","powered":"true"},"id":530},{"properties":{"instrument":"flute","note":"16","powered":"false"},"id":531},{"properties":{"instrument":"flute","note":"17","powered":"true"},"id":532},{"properties":{"instrument":"flute","note":"17","powered":"false"},"id":533},{"properties":{"instrument":"flute","note":"18","powered":"true"},"id":534},{"properties":{"instrument":"flute","note":"18","powered":"false"},"id":535},{"properties":{"instrument":"flute","note":"19","powered":"true"},"id":536},{"properties":{"instrument":"flute","note":"19","powered":"false"},"id":537},{"properties":{"instrument":"flute","note":"20","powered":"true"},"id":538},{"properties":{"instrument":"flute","note":"20","powered":"false"},"id":539},{"properties":{"instrument":"flute","note":"21","powered":"true"},"id":540},{"properties":{"instrument":"flute","note":"21","powered":"false"},"id":541},{"properties":{"instrument":"flute","note":"22","powered":"true"},"id":542},{"properties":{"instrument":"flute","note":"22","powered":"false"},"id":543},{"properties":{"instrument":"flute","note":"23","powered":"true"},"id":544},{"properties":{"instrument":"flute","note":"23","powered":"false"},"id":545},{"properties":{"instrument":"flute","note":"24","powered":"true"},"id":546},{"properties":{"instrument":"flute","note":"24","powered":"false"},"id":547},{"properties":{"instrument":"bell","note":"0","powered":"true"},"id":548},{"properties":{"instrument":"bell","note":"0","powered":"false"},"id":549},{"properties":{"instrument":"bell","note":"1","powered":"true"},"id":550},{"properties":{"instrument":"bell","note":"1","powered":"false"},"id":551},{"properties":{"instrument":"bell","note":"2","powered":"true"},"id":552},{"properties":{"instrument":"bell","note":"2","powered":"false"},"id":553},{"properties":{"instrument":"bell","note":"3","powered":"true"},"id":554},{"properties":{"instrument":"bell","note":"3","powered":"false"},"id":555},{"properties":{"instrument":"bell","note":"4","powered":"true"},"id":556},{"properties":{"instrument":"bell","note":"4","powered":"false"},"id":557},{"properties":{"instrument":"bell","note":"5","powered":"true"},"id":558},{"properties":{"instrument":"bell","note":"5","powered":"false"},"id":559},{"properties":{"instrument":"bell","note":"6","powered":"true"},"id":560},{"properties":{"instrument":"bell","note":"6","powered":"false"},"id":561},{"properties":{"instrument":"bell","note":"7","powered":"true"},"id":562},{"properties":{"instrument":"bell","note":"7","powered":"false"},"id":563},{"properties":{"instrument":"bell","note":"8","powered":"true"},"id":564},{"properties":{"instrument":"bell","note":"8","powered":"false"},"id":565},{"properties":{"instrument":"bell","note":"9","powered":"true"},"id":566},{"properties":{"instrument":"bell","note":"9","powered":"false"},"id":567},{"properties":{"instrument":"bell","note":"10","powered":"true"},"id":568},{"properties":{"instrument":"bell","note":"10","powered":"false"},"id":569},{"properties":{"instrument":"bell","note":"11","powered":"true"},"id":570},{"properties":{"instrument":"bell","note":"11","powered":"false"},"id":571},{"properties":{"instrument":"bell","note":"12","powered":"true"},"id":572},{"properties":{"instrument":"bell","note":"12","powered":"false"},"id":573},{"properties":{"instrument":"bell","note":"13","powered":"true"},"id":574},{"properties":{"instrument":"bell","note":"13","powered":"false"},"id":575},{"properties":{"instrument":"bell","note":"14","powered":"true"},"id":576},{"properties":{"instrument":"bell","note":"14","powered":"false"},"id":577},{"properties":{"instrument":"bell","note":"15","powered":"true"},"id":578},{"properties":{"instrument":"bell","note":"15","powered":"false"},"id":579},{"properties":{"instrument":"bell","note":"16","powered":"true"},"id":580},{"properties":{"instrument":"bell","note":"16","powered":"false"},"id":581},{"properties":{"instrument":"bell","note":"17","powered":"true"},"id":582},{"properties":{"instrument":"bell","note":"17","powered":"false"},"id":583},{"properties":{"instrument":"bell","note":"18","powered":"true"},"id":584},{"properties":{"instrument":"bell","note":"18","powered":"false"},"id":585},{"properties":{"instrument":"bell","note":"19","powered":"true"},"id":586},{"properties":{"instrument":"bell","note":"19","powered":"false"},"id":587},{"properties":{"instrument":"bell","note":"20","powered":"true"},"id":588},{"properties":{"instrument":"bell","note":"20","powered":"false"},"id":589},{"properties":{"instrument":"bell","note":"21","powered":"true"},"id":590},{"properties":{"instrument":"bell","note":"21","powered":"false"},"id":591},{"properties":{"instrument":"bell","note":"22","powered":"true"},"id":592},{"properties":{"instrument":"bell","note":"22","powered":"false"},"id":593},{"properties":{"instrument":"bell","note":"23","powered":"true"},"id":594},{"properties":{"instrument":"bell","note":"23","powered":"false"},"id":595},{"properties":{"instrument":"bell","note":"24","powered":"true"},"id":596},{"properties":{"instrument":"bell","note":"24","powered":"false"},"id":597},{"properties":{"instrument":"guitar","note":"0","powered":"true"},"id":598},{"properties":{"instrument":"guitar","note":"0","powered":"false"},"id":599},{"properties":{"instrument":"guitar","note":"1","powered":"true"},"id":600},{"properties":{"instrument":"guitar","note":"1","powered":"false"},"id":601},{"properties":{"instrument":"guitar","note":"2","powered":"true"},"id":602},{"properties":{"instrument":"guitar","note":"2","powered":"false"},"id":603},{"properties":{"instrument":"guitar","note":"3","powered":"true"},"id":604},{"properties":{"instrument":"guitar","note":"3","powered":"false"},"id":605},{"properties":{"instrument":"guitar","note":"4","powered":"true"},"id":606},{"properties":{"instrument":"guitar","note":"4","powered":"false"},"id":607},{"properties":{"instrument":"guitar","note":"5","powered":"true"},"id":608},{"properties":{"instrument":"guitar","note":"5","powered":"false"},"id":609},{"properties":{"instrument":"guitar","note":"6","powered":"true"},"id":610},{"properties":{"instrument":"guitar","note":"6","powered":"false"},"id":611},{"properties":{"instrument":"guitar","note":"7","powered":"true"},"id":612},{"properties":{"instrument":"guitar","note":"7","powered":"false"},"id":613},{"properties":{"instrument":"guitar","note":"8","powered":"true"},"id":614},{"properties":{"instrument":"guitar","note":"8","powered":"false"},"id":615},{"properties":{"instrument":"guitar","note":"9","powered":"true"},"id":616},{"properties":{"instrument":"guitar","note":"9","powered":"false"},"id":617},{"properties":{"instrument":"guitar","note":"10","powered":"true"},"id":618},{"properties":{"instrument":"guitar","note":"10","powered":"false"},"id":619},{"properties":{"instrument":"guitar","note":"11","powered":"true"},"id":620},{"properties":{"instrument":"guitar","note":"11","powered":"false"},"id":621},{"properties":{"instrument":"guitar","note":"12","powered":"true"},"id":622},{"properties":{"instrument":"guitar","note":"12","powered":"false"},"id":623},{"properties":{"instrument":"guitar","note":"13","powered":"true"},"id":624},{"properties":{"instrument":"guitar","note":"13","powered":"false"},"id":625},{"properties":{"instrument":"guitar","note":"14","powered":"true"},"id":626},{"properties":{"instrument":"guitar","note":"14","powered":"false"},"id":627},{"properties":{"instrument":"guitar","note":"15","powered":"true"},"id":628},{"properties":{"instrument":"guitar","note":"15","powered":"false"},"id":629},{"properties":{"instrument":"guitar","note":"16","powered":"true"},"id":630},{"properties":{"instrument":"guitar","note":"16","powered":"false"},"id":631},{"properties":{"instrument":"guitar","note":"17","powered":"true"},"id":632},{"properties":{"instrument":"guitar","note":"17","powered":"false"},"id":633},{"properties":{"instrument":"guitar","note":"18","powered":"true"},"id":634},{"properties":{"instrument":"guitar","note":"18","powered":"false"},"id":635},{"properties":{"instrument":"guitar","note":"19","powered":"true"},"id":636},{"properties":{"instrument":"guitar","note":"19","powered":"false"},"id":637},{"properties":{"instrument":"guitar","note":"20","powered":"true"},"id":638},{"properties":{"instrument":"guitar","note":"20","powered":"false"},"id":639},{"properties":{"instrument":"guitar","note":"21","powered":"true"},"id":640},{"properties":{"instrument":"guitar","note":"21","powered":"false"},"id":641},{"properties":{"instrument":"guitar","note":"22","powered":"true"},"id":642},{"properties":{"instrument":"guitar","note":"22","powered":"false"},"id":643},{"properties":{"instrument":"guitar","note":"23","powered":"true"},"id":644},{"properties":{"instrument":"guitar","note":"23","powered":"false"},"id":645},{"properties":{"instrument":"guitar","note":"24","powered":"true"},"id":646},{"properties":{"instrument":"guitar","note":"24","powered":"false"},"id":647},{"properties":{"instrument":"chime","note":"0","powered":"true"},"id":648},{"properties":{"instrument":"chime","note":"0","powered":"false"},"id":649},{"properties":{"instrument":"chime","note":"1","powered":"true"},"id":650},{"properties":{"instrument":"chime","note":"1","powered":"false"},"id":651},{"properties":{"instrument":"chime","note":"2","powered":"true"},"id":652},{"properties":{"instrument":"chime","note":"2","powered":"false"},"id":653},{"properties":{"instrument":"chime","note":"3","powered":"true"},"id":654},{"properties":{"instrument":"chime","note":"3","powered":"false"},"id":655},{"properties":{"instrument":"chime","note":"4","powered":"true"},"id":656},{"properties":{"instrument":"chime","note":"4","powered":"false"},"id":657},{"properties":{"instrument":"chime","note":"5","powered":"true"},"id":658},{"properties":{"instrument":"chime","note":"5","powered":"false"},"id":659},{"properties":{"instrument":"chime","note":"6","powered":"true"},"id":660},{"properties":{"instrument":"chime","note":"6","powered":"false"},"id":661},{"properties":{"instrument":"chime","note":"7","powered":"true"},"id":662},{"properties":{"instrument":"chime","note":"7","powered":"false"},"id":663},{"properties":{"instrument":"chime","note":"8","powered":"true"},"id":664},{"properties":{"instrument":"chime","note":"8","powered":"false"},"id":665},{"properties":{"instrument":"chime","note":"9","powered":"true"},"id":666},{"properties":{"instrument":"chime","note":"9","powered":"false"},"id":667},{"properties":{"instrument":"chime","note":"10","powered":"true"},"id":668},{"properties":{"instrument":"chime","note":"10","powered":"false"},"id":669},{"properties":{"instrument":"chime","note":"11","powered":"true"},"id":670},{"properties":{"instrument":"chime","note":"11","powered":"false"},"id":671},{"properties":{"instrument":"chime","note":"12","powered":"true"},"id":672},{"properties":{"instrument":"chime","note":"12","powered":"false"},"id":673},{"properties":{"instrument":"chime","note":"13","powered":"true"},"id":674},{"properties":{"instrument":"chime","note":"13","powered":"false"},"id":675},{"properties":{"instrument":"chime","note":"14","powered":"true"},"id":676},{"properties":{"instrument":"chime","note":"14","powered":"false"},"id":677},{"properties":{"instrument":"chime","note":"15","powered":"true"},"id":678},{"properties":{"instrument":"chime","note":"15","powered":"false"},"id":679},{"properties":{"instrument":"chime","note":"16","powered":"true"},"id":680},{"properties":{"instrument":"chime","note":"16","powered":"false"},"id":681},{"properties":{"instrument":"chime","note":"17","powered":"true"},"id":682},{"properties":{"instrument":"chime","note":"17","powered":"false"},"id":683},{"properties":{"instrument":"chime","note":"18","powered":"true"},"id":684},{"properties":{"instrument":"chime","note":"18","powered":"false"},"id":685},{"properties":{"instrument":"chime","note":"19","powered":"true"},"id":686},{"properties":{"instrument":"chime","note":"19","powered":"false"},"id":687},{"properties":{"instrument":"chime","note":"20","powered":"true"},"id":688},{"properties":{"instrument":"chime","note":"20","powered":"false"},"id":689},{"properties":{"instrument":"chime","note":"21","powered":"true"},"id":690},{"properties":{"instrument":"chime","note":"21","powered":"false"},"id":691},{"properties":{"instrument":"chime","note":"22","powered":"true"},"id":692},{"properties":{"instrument":"chime","note":"22","powered":"false"},"id":693},{"properties":{"instrument":"chime","note":"23","powered":"true"},"id":694},{"properties":{"instrument":"chime","note":"23","powered":"false"},"id":695},{"properties":{"instrument":"chime","note":"24","powered":"true"},"id":696},{"properties":{"instrument":"chime","note":"24","powered":"false"},"id":697},{"properties":{"instrument":"xylophone","note":"0","powered":"true"},"id":698},{"properties":{"instrument":"xylophone","note":"0","powered":"false"},"id":699},{"properties":{"instrument":"xylophone","note":"1","powered":"true"},"id":700},{"properties":{"instrument":"xylophone","note":"1","powered":"false"},"id":701},{"properties":{"instrument":"xylophone","note":"2","powered":"true"},"id":702},{"properties":{"instrument":"xylophone","note":"2","powered":"false"},"id":703},{"properties":{"instrument":"xylophone","note":"3","powered":"true"},"id":704},{"properties":{"instrument":"xylophone","note":"3","powered":"false"},"id":705},{"properties":{"instrument":"xylophone","note":"4","powered":"true"},"id":706},{"properties":{"instrument":"xylophone","note":"4","powered":"false"},"id":707},{"properties":{"instrument":"xylophone","note":"5","powered":"true"},"id":708},{"properties":{"instrument":"xylophone","note":"5","powered":"false"},"id":709},{"properties":{"instrument":"xylophone","note":"6","powered":"true"},"id":710},{"properties":{"instrument":"xylophone","note":"6","powered":"false"},"id":711},{"properties":{"instrument":"xylophone","note":"7","powered":"true"},"id":712},{"properties":{"instrument":"xylophone","note":"7","powered":"false"},"id":713},{"properties":{"instrument":"xylophone","note":"8","powered":"true"},"id":714},{"properties":{"instrument":"xylophone","note":"8","powered":"false"},"id":715},{"properties":{"instrument":"xylophone","note":"9","powered":"true"},"id":716},{"properties":{"instrument":"xylophone","note":"9","powered":"false"},"id":717},{"properties":{"instrument":"xylophone","note":"10","powered":"true"},"id":718},{"properties":{"instrument":"xylophone","note":"10","powered":"false"},"id":719},{"properties":{"instrument":"xylophone","note":"11","powered":"true"},"id":720},{"properties":{"instrument":"xylophone","note":"11","powered":"false"},"id":721},{"properties":{"instrument":"xylophone","note":"12","powered":"true"},"id":722},{"properties":{"instrument":"xylophone","note":"12","powered":"false"},"id":723},{"properties":{"instrument":"xylophone","note":"13","powered":"true"},"id":724},{"properties":{"instrument":"xylophone","note":"13","powered":"false"},"id":725},{"properties":{"instrument":"xylophone","note":"14","powered":"true"},"id":726},{"properties":{"instrument":"xylophone","note":"14","powered":"false"},"id":727},{"properties":{"instrument":"xylophone","note":"15","powered":"true"},"id":728},{"properties":{"instrument":"xylophone","note":"15","powered":"false"},"id":729},{"properties":{"instrument":"xylophone","note":"16","powered":"true"},"id":730},{"properties":{"instrument":"xylophone","note":"16","powered":"false"},"id":731},{"properties":{"instrument":"xylophone","note":"17","powered":"true"},"id":732},{"properties":{"instrument":"xylophone","note":"17","powered":"false"},"id":733},{"properties":{"instrument":"xylophone","note":"18","powered":"true"},"id":734},{"properties":{"instrument":"xylophone","note":"18","powered":"false"},"id":735},{"properties":{"instrument":"xylophone","note":"19","powered":"true"},"id":736},{"properties":{"instrument":"xylophone","note":"19","powered":"false"},"id":737},{"properties":{"instrument":"xylophone","note":"20","powered":"true"},"id":738},{"properties":{"instrument":"xylophone","note":"20","powered":"false"},"id":739},{"properties":{"instrument":"xylophone","note":"21","powered":"true"},"id":740},{"properties":{"instrument":"xylophone","note":"21","powered":"false"},"id":741},{"properties":{"instrument":"xylophone","note":"22","powered":"true"},"id":742},{"properties":{"instrument":"xylophone","note":"22","powered":"false"},"id":743},{"properties":{"instrument":"xylophone","note":"23","powered":"true"},"id":744},{"properties":{"instrument":"xylophone","note":"23","powered":"false"},"id":745},{"properties":{"instrument":"xylophone","note":"24","powered":"true"},"id":746},{"properties":{"instrument":"xylophone","note":"24","powered":"false"},"id":747}]},"white_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":748},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":749},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":750},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":751},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":752},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":753},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":754},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":755},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":756},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":757},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":758},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":759},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":760},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":761},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":762},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":763}]},"orange_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":764},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":765},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":766},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":767},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":768},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":769},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":770},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":771},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":772},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":773},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":774},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":775},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":776},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":777},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":778},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":779}]},"magenta_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":780},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":781},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":782},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":783},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":784},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":785},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":786},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":787},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":788},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":789},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":790},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":791},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":792},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":793},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":794},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":795}]},"light_blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":796},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":797},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":798},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":799},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":800},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":801},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":802},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":803},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":804},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":805},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":806},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":807},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":808},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":809},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":810},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":811}]},"yellow_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":812},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":813},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":814},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":815},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":816},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":817},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":818},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":819},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":820},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":821},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":822},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":823},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":824},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":825},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":826},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":827}]},"lime_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":828},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":829},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":830},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":831},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":832},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":833},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":834},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":835},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":836},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":837},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":838},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":839},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":840},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":841},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":842},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":843}]},"pink_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":844},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":845},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":846},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":847},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":848},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":849},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":850},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":851},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":852},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":853},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":854},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":855},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":856},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":857},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":858},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":859}]},"gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":860},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":861},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":862},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":863},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":864},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":865},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":866},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":867},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":868},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":869},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":870},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":871},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":872},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":873},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":874},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":875}]},"light_gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":876},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":877},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":878},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":879},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":880},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":881},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":882},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":883},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":884},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":885},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":886},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":887},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":888},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":889},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":890},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":891}]},"cyan_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":892},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":893},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":894},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":895},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":896},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":897},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":898},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":899},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":900},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":901},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":902},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":903},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":904},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":905},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":906},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":907}]},"purple_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":908},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":909},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":910},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":911},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":912},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":913},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":914},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":915},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":916},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":917},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":918},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":919},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":920},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":921},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":922},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":923}]},"blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":924},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":925},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":926},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":927},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":928},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":929},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":930},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":931},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":932},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":933},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":934},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":935},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":936},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":937},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":938},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":939}]},"brown_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":940},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":941},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":942},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":943},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":944},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":945},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":946},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":947},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":948},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":949},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":950},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":951},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":952},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":953},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":954},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":955}]},"green_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":956},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":957},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":958},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":959},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":960},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":961},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":962},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":963},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":964},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":965},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":966},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":967},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":968},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":969},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":970},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":971}]},"red_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":972},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":973},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":974},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":975},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":976},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":977},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":978},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":979},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":980},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":981},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":982},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":983},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":984},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":985},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":986},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":987}]},"black_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":988},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":989},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":990},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":991},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":992},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":993},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":994},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":995},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":996},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":997},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":998},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":999},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1000},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1001},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1002},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1003}]},"powered_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1004},{"properties":{"powered":"true","shape":"east_west"},"id":1005},{"properties":{"powered":"true","shape":"ascending_east"},"id":1006},{"properties":{"powered":"true","shape":"ascending_west"},"id":1007},{"properties":{"powered":"true","shape":"ascending_north"},"id":1008},{"properties":{"powered":"true","shape":"ascending_south"},"id":1009},{"properties":{"powered":"false","shape":"north_south"},"id":1010},{"properties":{"powered":"false","shape":"east_west"},"id":1011},{"properties":{"powered":"false","shape":"ascending_east"},"id":1012},{"properties":{"powered":"false","shape":"ascending_west"},"id":1013},{"properties":{"powered":"false","shape":"ascending_north"},"id":1014},{"properties":{"powered":"false","shape":"ascending_south"},"id":1015}]},"detector_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1016},{"properties":{"powered":"true","shape":"east_west"},"id":1017},{"properties":{"powered":"true","shape":"ascending_east"},"id":1018},{"properties":{"powered":"true","shape":"ascending_west"},"id":1019},{"properties":{"powered":"true","shape":"ascending_north"},"id":1020},{"properties":{"powered":"true","shape":"ascending_south"},"id":1021},{"properties":{"powered":"false","shape":"north_south"},"id":1022},{"properties":{"powered":"false","shape":"east_west"},"id":1023},{"properties":{"powered":"false","shape":"ascending_east"},"id":1024},{"properties":{"powered":"false","shape":"ascending_west"},"id":1025},{"properties":{"powered":"false","shape":"ascending_north"},"id":1026},{"properties":{"powered":"false","shape":"ascending_south"},"id":1027}]},"sticky_piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1028},{"properties":{"extended":"true","facing":"east"},"id":1029},{"properties":{"extended":"true","facing":"south"},"id":1030},{"properties":{"extended":"true","facing":"west"},"id":1031},{"properties":{"extended":"true","facing":"up"},"id":1032},{"properties":{"extended":"true","facing":"down"},"id":1033},{"properties":{"extended":"false","facing":"north"},"id":1034},{"properties":{"extended":"false","facing":"east"},"id":1035},{"properties":{"extended":"false","facing":"south"},"id":1036},{"properties":{"extended":"false","facing":"west"},"id":1037},{"properties":{"extended":"false","facing":"up"},"id":1038},{"properties":{"extended":"false","facing":"down"},"id":1039}]},"cobweb":{"states":[{"id":1040}]},"grass":{"states":[{"id":1041}]},"fern":{"states":[{"id":1042}]},"dead_bush":{"states":[{"id":1043}]},"seagrass":{"states":[{"id":1044}]},"tall_seagrass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":1045},{"properties":{"half":"lower"},"id":1046}]},"piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1047},{"properties":{"extended":"true","facing":"east"},"id":1048},{"properties":{"extended":"true","facing":"south"},"id":1049},{"properties":{"extended":"true","facing":"west"},"id":1050},{"properties":{"extended":"true","facing":"up"},"id":1051},{"properties":{"extended":"true","facing":"down"},"id":1052},{"properties":{"extended":"false","facing":"north"},"id":1053},{"properties":{"extended":"false","facing":"east"},"id":1054},{"properties":{"extended":"false","facing":"south"},"id":1055},{"properties":{"extended":"false","facing":"west"},"id":1056},{"properties":{"extended":"false","facing":"up"},"id":1057},{"properties":{"extended":"false","facing":"down"},"id":1058}]},"piston_head":{"properties":{"facing":["north","east","south","west","up","down"],"short":["true","false"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","short":"true","type":"normal"},"id":1059},{"properties":{"facing":"north","short":"true","type":"sticky"},"id":1060},{"properties":{"facing":"north","short":"false","type":"normal"},"id":1061},{"properties":{"facing":"north","short":"false","type":"sticky"},"id":1062},{"properties":{"facing":"east","short":"true","type":"normal"},"id":1063},{"properties":{"facing":"east","short":"true","type":"sticky"},"id":1064},{"properties":{"facing":"east","short":"false","type":"normal"},"id":1065},{"properties":{"facing":"east","short":"false","type":"sticky"},"id":1066},{"properties":{"facing":"south","short":"true","type":"normal"},"id":1067},{"properties":{"facing":"south","short":"true","type":"sticky"},"id":1068},{"properties":{"facing":"south","short":"false","type":"normal"},"id":1069},{"properties":{"facing":"south","short":"false","type":"sticky"},"id":1070},{"properties":{"facing":"west","short":"true","type":"normal"},"id":1071},{"properties":{"facing":"west","short":"true","type":"sticky"},"id":1072},{"properties":{"facing":"west","short":"false","type":"normal"},"id":1073},{"properties":{"facing":"west","short":"false","type":"sticky"},"id":1074},{"properties":{"facing":"up","short":"true","type":"normal"},"id":1075},{"properties":{"facing":"up","short":"true","type":"sticky"},"id":1076},{"properties":{"facing":"up","short":"false","type":"normal"},"id":1077},{"properties":{"facing":"up","short":"false","type":"sticky"},"id":1078},{"properties":{"facing":"down","short":"true","type":"normal"},"id":1079},{"properties":{"facing":"down","short":"true","type":"sticky"},"id":1080},{"properties":{"facing":"down","short":"false","type":"normal"},"id":1081},{"properties":{"facing":"down","short":"false","type":"sticky"},"id":1082}]},"white_wool":{"states":[{"id":1083}]},"orange_wool":{"states":[{"id":1084}]},"magenta_wool":{"states":[{"id":1085}]},"light_blue_wool":{"states":[{"id":1086}]},"yellow_wool":{"states":[{"id":1087}]},"lime_wool":{"states":[{"id":1088}]},"pink_wool":{"states":[{"id":1089}]},"gray_wool":{"states":[{"id":1090}]},"light_gray_wool":{"states":[{"id":1091}]},"cyan_wool":{"states":[{"id":1092}]},"purple_wool":{"states":[{"id":1093}]},"blue_wool":{"states":[{"id":1094}]},"brown_wool":{"states":[{"id":1095}]},"green_wool":{"states":[{"id":1096}]},"red_wool":{"states":[{"id":1097}]},"black_wool":{"states":[{"id":1098}]},"moving_piston":{"properties":{"facing":["north","east","south","west","up","down"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","type":"normal"},"id":1099},{"properties":{"facing":"north","type":"sticky"},"id":1100},{"properties":{"facing":"east","type":"normal"},"id":1101},{"properties":{"facing":"east","type":"sticky"},"id":1102},{"properties":{"facing":"south","type":"normal"},"id":1103},{"properties":{"facing":"south","type":"sticky"},"id":1104},{"properties":{"facing":"west","type":"normal"},"id":1105},{"properties":{"facing":"west","type":"sticky"},"id":1106},{"properties":{"facing":"up","type":"normal"},"id":1107},{"properties":{"facing":"up","type":"sticky"},"id":1108},{"properties":{"facing":"down","type":"normal"},"id":1109},{"properties":{"facing":"down","type":"sticky"},"id":1110}]},"dandelion":{"states":[{"id":1111}]},"poppy":{"states":[{"id":1112}]},"blue_orchid":{"states":[{"id":1113}]},"allium":{"states":[{"id":1114}]},"azure_bluet":{"states":[{"id":1115}]},"red_tulip":{"states":[{"id":1116}]},"orange_tulip":{"states":[{"id":1117}]},"white_tulip":{"states":[{"id":1118}]},"pink_tulip":{"states":[{"id":1119}]},"oxeye_daisy":{"states":[{"id":1120}]},"brown_mushroom":{"states":[{"id":1121}]},"red_mushroom":{"states":[{"id":1122}]},"gold_block":{"states":[{"id":1123}]},"iron_block":{"states":[{"id":1124}]},"bricks":{"states":[{"id":1125}]},"tnt":{"properties":{"unstable":["true","false"]},"states":[{"properties":{"unstable":"true"},"id":1126},{"properties":{"unstable":"false"},"id":1127}]},"bookshelf":{"states":[{"id":1128}]},"mossy_cobblestone":{"states":[{"id":1129}]},"obsidian":{"states":[{"id":1130}]},"torch":{"states":[{"id":1131}]},"wall_torch":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":1132},{"properties":{"facing":"south"},"id":1133},{"properties":{"facing":"west"},"id":1134},{"properties":{"facing":"east"},"id":1135}]},"fire":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1136},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1137},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1138},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1139},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1140},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1141},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1142},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1143},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1144},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1145},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1146},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1147},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1148},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1149},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1150},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1151},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1152},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1153},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1154},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1155},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1156},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1157},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1158},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1159},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1160},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1161},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1162},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1163},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1164},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1165},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1166},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1167},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1168},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1169},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1170},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1171},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1172},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1173},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1174},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1175},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1176},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1177},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1178},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1179},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1180},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1181},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1182},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1183},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1184},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1185},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1186},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1187},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1188},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1189},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1190},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1191},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1192},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1193},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1194},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1195},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1196},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1197},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1198},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1199},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1200},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1201},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1202},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1203},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1204},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1205},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1206},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1207},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1208},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1209},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1210},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1211},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1212},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1213},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1214},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1215},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1216},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1217},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1218},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1219},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1220},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1221},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1222},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1223},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1224},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1225},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1226},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1227},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1228},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1229},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1230},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1231},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1232},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1233},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1234},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1235},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1236},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1237},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1238},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1239},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1240},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1241},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1242},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1243},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1244},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1245},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1246},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1247},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1248},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1249},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1250},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1251},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1252},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1253},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1254},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1255},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1256},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1257},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1258},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1259},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1260},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1261},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1262},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1263},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1264},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1265},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1266},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1267},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1268},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1269},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1270},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1271},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1272},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1273},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1274},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1275},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1276},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1277},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1278},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1279},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1280},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1281},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1282},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1283},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1284},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1285},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1286},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1287},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1288},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1289},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1290},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1291},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1292},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1293},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1294},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1295},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1296},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1297},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1298},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1299},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1300},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1301},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1302},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1303},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1304},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1305},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1306},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1307},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1308},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1309},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1310},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1311},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1312},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1313},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1314},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1315},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1316},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1317},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1318},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1319},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1320},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1321},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1322},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1323},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1324},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1325},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1326},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1327},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1328},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1329},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1330},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1331},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1332},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1333},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1334},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1335},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1336},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1337},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1338},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1339},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1340},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1341},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1342},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1343},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1344},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1345},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1346},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1347},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1348},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1349},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1350},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1351},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1352},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1353},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1354},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1355},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1356},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1357},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1358},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1359},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1360},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1361},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1362},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1363},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1364},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1365},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1366},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1367},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1368},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1369},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1370},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1371},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1372},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1373},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1374},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1375},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1376},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1377},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1378},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1379},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1380},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1381},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1382},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1383},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1384},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1385},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1386},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1387},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1388},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1389},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1390},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1391},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1392},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1393},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1394},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1395},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1396},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1397},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1398},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1399},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1400},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1401},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1402},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1403},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1404},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1405},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1406},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1407},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1408},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1409},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1410},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1411},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1412},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1413},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1414},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1415},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1416},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1417},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1418},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1419},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1420},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1421},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1422},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1423},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1424},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1425},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1426},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1427},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1428},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1429},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1430},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1431},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1432},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1433},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1434},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1435},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1436},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1437},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1438},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1439},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1440},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1441},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1442},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1443},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1444},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1445},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1446},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1447},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1448},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1449},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1450},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1451},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1452},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1453},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1454},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1455},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1456},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1457},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1458},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1459},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1460},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1461},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1462},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1463},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1464},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1465},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1466},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1467},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1468},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1469},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1470},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1471},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1472},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1473},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1474},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1475},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1476},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1477},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1478},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1479},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1480},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1481},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1482},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1483},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1484},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1485},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1486},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1487},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1488},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1489},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1490},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1491},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1492},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1493},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1494},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1495},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1496},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1497},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1498},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1499},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1500},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1501},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1502},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1503},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1504},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1505},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1506},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1507},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1508},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1509},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1510},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1511},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1512},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1513},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1514},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1515},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1516},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1517},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1518},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1519},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1520},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1521},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1522},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1523},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1524},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1525},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1526},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1527},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1528},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1529},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1530},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1531},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1532},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1533},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1534},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1535},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1536},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1537},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1538},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1539},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1540},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1541},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1542},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1543},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1544},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1545},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1546},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1547},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1548},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1549},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1550},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1551},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1552},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1553},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1554},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1555},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1556},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1557},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1558},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1559},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1560},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1561},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1562},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1563},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1564},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1565},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1566},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1567},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1568},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1569},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1570},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1571},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1572},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1573},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1574},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1575},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1576},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1577},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1578},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1579},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1580},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1581},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1582},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1583},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1584},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1585},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1586},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1587},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1588},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1589},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1590},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1591},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1592},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1593},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1594},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1595},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1596},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1597},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1598},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1599},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1600},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1601},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1602},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1603},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1604},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1605},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1606},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1607},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1608},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1609},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1610},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1611},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1612},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1613},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1614},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1615},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1616},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1617},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1618},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1619},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1620},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1621},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1622},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1623},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1624},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1625},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1626},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1627},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1628},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1629},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1630},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1631},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1632},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1633},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1634},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1635},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1636},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1637},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1638},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1639},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1640},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1641},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1642},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1643},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1644},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1645},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1646},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1647}]},"spawner":{"states":[{"id":1648}]},"oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":1649},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":1650},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":1651},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":1652},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":1653},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":1654},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":1655},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":1656},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":1657},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":1658},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":1659},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":1660},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1661},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1662},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1663},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1664},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1665},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1666},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1667},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1668},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":1669},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":1670},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":1671},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":1672},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":1673},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":1674},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":1675},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":1676},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":1677},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":1678},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":1679},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":1680},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1681},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1682},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1683},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1684},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1685},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1686},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1687},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1688},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":1689},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":1690},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":1691},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":1692},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":1693},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":1694},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":1695},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":1696},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":1697},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":1698},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":1699},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":1700},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1701},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1702},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1703},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1704},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1705},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1706},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1707},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1708},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":1709},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":1710},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":1711},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":1712},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":1713},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":1714},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":1715},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":1716},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":1717},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":1718},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":1719},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":1720},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1721},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1722},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1723},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1724},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1725},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1726},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1727},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1728}]},"chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":1729},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":1730},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":1731},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":1732},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":1733},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":1734},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":1735},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":1736},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":1737},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":1738},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":1739},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":1740},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":1741},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":1742},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":1743},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":1744},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":1745},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":1746},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":1747},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":1748},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":1749},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":1750},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":1751},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":1752}]},"redstone_wire":{"properties":{"east":["up","side","none"],"north":["up","side","none"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"south":["up","side","none"],"west":["up","side","none"]},"states":[{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"up"},"id":1753},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"side"},"id":1754},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"none"},"id":1755},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"up"},"id":1756},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"side"},"id":1757},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"none"},"id":1758},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"up"},"id":1759},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"side"},"id":1760},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"none"},"id":1761},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"up"},"id":1762},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"side"},"id":1763},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"none"},"id":1764},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"up"},"id":1765},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"side"},"id":1766},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"none"},"id":1767},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"up"},"id":1768},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"side"},"id":1769},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"none"},"id":1770},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"up"},"id":1771},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"side"},"id":1772},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"none"},"id":1773},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"up"},"id":1774},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"side"},"id":1775},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"none"},"id":1776},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"up"},"id":1777},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"side"},"id":1778},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"none"},"id":1779},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"up"},"id":1780},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"side"},"id":1781},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"none"},"id":1782},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"up"},"id":1783},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"side"},"id":1784},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"none"},"id":1785},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"up"},"id":1786},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"side"},"id":1787},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"none"},"id":1788},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"up"},"id":1789},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"side"},"id":1790},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"none"},"id":1791},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"up"},"id":1792},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"side"},"id":1793},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"none"},"id":1794},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"up"},"id":1795},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"side"},"id":1796},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"none"},"id":1797},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"up"},"id":1798},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"side"},"id":1799},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"none"},"id":1800},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"up"},"id":1801},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"side"},"id":1802},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"none"},"id":1803},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"up"},"id":1804},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"side"},"id":1805},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"none"},"id":1806},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"up"},"id":1807},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"side"},"id":1808},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"none"},"id":1809},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"up"},"id":1810},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"side"},"id":1811},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"none"},"id":1812},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"up"},"id":1813},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"side"},"id":1814},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"none"},"id":1815},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"up"},"id":1816},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"side"},"id":1817},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"none"},"id":1818},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"up"},"id":1819},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"side"},"id":1820},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"none"},"id":1821},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"up"},"id":1822},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"side"},"id":1823},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"none"},"id":1824},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"up"},"id":1825},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"side"},"id":1826},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"none"},"id":1827},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"up"},"id":1828},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"side"},"id":1829},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"none"},"id":1830},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"up"},"id":1831},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"side"},"id":1832},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"none"},"id":1833},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"up"},"id":1834},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"side"},"id":1835},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"none"},"id":1836},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"up"},"id":1837},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"side"},"id":1838},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"none"},"id":1839},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"up"},"id":1840},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"side"},"id":1841},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"none"},"id":1842},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"up"},"id":1843},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"side"},"id":1844},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"none"},"id":1845},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"up"},"id":1846},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"side"},"id":1847},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"none"},"id":1848},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"up"},"id":1849},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"side"},"id":1850},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"none"},"id":1851},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"up"},"id":1852},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"side"},"id":1853},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"none"},"id":1854},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"up"},"id":1855},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"side"},"id":1856},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"none"},"id":1857},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"up"},"id":1858},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"side"},"id":1859},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"none"},"id":1860},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"up"},"id":1861},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"side"},"id":1862},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"none"},"id":1863},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"up"},"id":1864},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"side"},"id":1865},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"none"},"id":1866},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"up"},"id":1867},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"side"},"id":1868},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"none"},"id":1869},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"up"},"id":1870},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"side"},"id":1871},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"none"},"id":1872},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"up"},"id":1873},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"side"},"id":1874},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"none"},"id":1875},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"up"},"id":1876},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"side"},"id":1877},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"none"},"id":1878},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"up"},"id":1879},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"side"},"id":1880},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"none"},"id":1881},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"up"},"id":1882},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"side"},"id":1883},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"none"},"id":1884},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"up"},"id":1885},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"side"},"id":1886},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"none"},"id":1887},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"up"},"id":1888},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"side"},"id":1889},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"none"},"id":1890},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"up"},"id":1891},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"side"},"id":1892},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"none"},"id":1893},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"up"},"id":1894},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"side"},"id":1895},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"none"},"id":1896},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"up"},"id":1897},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"side"},"id":1898},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"none"},"id":1899},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"up"},"id":1900},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"side"},"id":1901},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"none"},"id":1902},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"up"},"id":1903},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"side"},"id":1904},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"none"},"id":1905},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"up"},"id":1906},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"side"},"id":1907},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"none"},"id":1908},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"up"},"id":1909},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"side"},"id":1910},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"none"},"id":1911},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"up"},"id":1912},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"side"},"id":1913},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"none"},"id":1914},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"up"},"id":1915},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"side"},"id":1916},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"none"},"id":1917},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"up"},"id":1918},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"side"},"id":1919},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"none"},"id":1920},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"up"},"id":1921},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"side"},"id":1922},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"none"},"id":1923},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"up"},"id":1924},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"side"},"id":1925},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"none"},"id":1926},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"up"},"id":1927},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"side"},"id":1928},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"none"},"id":1929},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"up"},"id":1930},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"side"},"id":1931},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"none"},"id":1932},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"up"},"id":1933},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"side"},"id":1934},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"none"},"id":1935},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"up"},"id":1936},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"side"},"id":1937},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"none"},"id":1938},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"up"},"id":1939},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"side"},"id":1940},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"none"},"id":1941},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"up"},"id":1942},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"side"},"id":1943},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"none"},"id":1944},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"up"},"id":1945},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"side"},"id":1946},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"none"},"id":1947},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"up"},"id":1948},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"side"},"id":1949},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"none"},"id":1950},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"up"},"id":1951},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"side"},"id":1952},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"none"},"id":1953},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"up"},"id":1954},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"side"},"id":1955},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"none"},"id":1956},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"up"},"id":1957},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"side"},"id":1958},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"none"},"id":1959},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"up"},"id":1960},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"side"},"id":1961},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"none"},"id":1962},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"up"},"id":1963},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"side"},"id":1964},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"none"},"id":1965},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"up"},"id":1966},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"side"},"id":1967},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"none"},"id":1968},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"up"},"id":1969},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"side"},"id":1970},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"none"},"id":1971},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"up"},"id":1972},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"side"},"id":1973},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"none"},"id":1974},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"up"},"id":1975},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"side"},"id":1976},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"none"},"id":1977},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"up"},"id":1978},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"side"},"id":1979},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"none"},"id":1980},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"up"},"id":1981},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"side"},"id":1982},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"none"},"id":1983},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"up"},"id":1984},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"side"},"id":1985},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"none"},"id":1986},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"up"},"id":1987},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"side"},"id":1988},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"none"},"id":1989},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"up"},"id":1990},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"side"},"id":1991},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"none"},"id":1992},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"up"},"id":1993},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"side"},"id":1994},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"none"},"id":1995},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"up"},"id":1996},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"side"},"id":1997},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"none"},"id":1998},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"up"},"id":1999},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"side"},"id":2000},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"none"},"id":2001},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"up"},"id":2002},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"side"},"id":2003},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"none"},"id":2004},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"up"},"id":2005},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"side"},"id":2006},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"none"},"id":2007},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"up"},"id":2008},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"side"},"id":2009},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"none"},"id":2010},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"up"},"id":2011},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"side"},"id":2012},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"none"},"id":2013},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"up"},"id":2014},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"side"},"id":2015},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"none"},"id":2016},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"up"},"id":2017},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"side"},"id":2018},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"none"},"id":2019},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"up"},"id":2020},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"side"},"id":2021},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"none"},"id":2022},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"up"},"id":2023},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"side"},"id":2024},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"none"},"id":2025},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"up"},"id":2026},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"side"},"id":2027},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"none"},"id":2028},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"up"},"id":2029},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"side"},"id":2030},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"none"},"id":2031},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"up"},"id":2032},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"side"},"id":2033},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"none"},"id":2034},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"up"},"id":2035},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"side"},"id":2036},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"none"},"id":2037},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"up"},"id":2038},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"side"},"id":2039},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"none"},"id":2040},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"up"},"id":2041},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"side"},"id":2042},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"none"},"id":2043},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"up"},"id":2044},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"side"},"id":2045},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"none"},"id":2046},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"up"},"id":2047},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"side"},"id":2048},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"none"},"id":2049},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"up"},"id":2050},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"side"},"id":2051},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"none"},"id":2052},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"up"},"id":2053},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"side"},"id":2054},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"none"},"id":2055},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"up"},"id":2056},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"side"},"id":2057},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"none"},"id":2058},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"up"},"id":2059},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"side"},"id":2060},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"none"},"id":2061},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"up"},"id":2062},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"side"},"id":2063},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"none"},"id":2064},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"up"},"id":2065},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"side"},"id":2066},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"none"},"id":2067},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"up"},"id":2068},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"side"},"id":2069},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"none"},"id":2070},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"up"},"id":2071},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"side"},"id":2072},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"none"},"id":2073},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"up"},"id":2074},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"side"},"id":2075},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"none"},"id":2076},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"up"},"id":2077},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"side"},"id":2078},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"none"},"id":2079},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"up"},"id":2080},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"side"},"id":2081},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"none"},"id":2082},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"up"},"id":2083},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"side"},"id":2084},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"none"},"id":2085},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"up"},"id":2086},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"side"},"id":2087},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"none"},"id":2088},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"up"},"id":2089},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"side"},"id":2090},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"none"},"id":2091},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"up"},"id":2092},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"side"},"id":2093},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"none"},"id":2094},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"up"},"id":2095},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"side"},"id":2096},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"none"},"id":2097},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"up"},"id":2098},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"side"},"id":2099},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"none"},"id":2100},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"up"},"id":2101},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"side"},"id":2102},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"none"},"id":2103},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"up"},"id":2104},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"side"},"id":2105},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"none"},"id":2106},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"up"},"id":2107},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"side"},"id":2108},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"none"},"id":2109},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"up"},"id":2110},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"side"},"id":2111},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"none"},"id":2112},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"up"},"id":2113},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"side"},"id":2114},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"none"},"id":2115},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"up"},"id":2116},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"side"},"id":2117},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"none"},"id":2118},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"up"},"id":2119},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"side"},"id":2120},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"none"},"id":2121},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"up"},"id":2122},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"side"},"id":2123},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"none"},"id":2124},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"up"},"id":2125},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"side"},"id":2126},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"none"},"id":2127},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"up"},"id":2128},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"side"},"id":2129},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"none"},"id":2130},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"up"},"id":2131},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"side"},"id":2132},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"none"},"id":2133},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"up"},"id":2134},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"side"},"id":2135},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"none"},"id":2136},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"up"},"id":2137},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"side"},"id":2138},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"none"},"id":2139},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"up"},"id":2140},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"side"},"id":2141},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"none"},"id":2142},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"up"},"id":2143},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"side"},"id":2144},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"none"},"id":2145},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"up"},"id":2146},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"side"},"id":2147},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"none"},"id":2148},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"up"},"id":2149},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"side"},"id":2150},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"none"},"id":2151},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"up"},"id":2152},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"side"},"id":2153},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"none"},"id":2154},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"up"},"id":2155},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"side"},"id":2156},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"none"},"id":2157},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"up"},"id":2158},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"side"},"id":2159},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"none"},"id":2160},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"up"},"id":2161},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"side"},"id":2162},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"none"},"id":2163},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"up"},"id":2164},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"side"},"id":2165},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"none"},"id":2166},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"up"},"id":2167},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"side"},"id":2168},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"none"},"id":2169},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"up"},"id":2170},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"side"},"id":2171},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"none"},"id":2172},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"up"},"id":2173},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"side"},"id":2174},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"none"},"id":2175},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"up"},"id":2176},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"side"},"id":2177},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"none"},"id":2178},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"up"},"id":2179},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"side"},"id":2180},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"none"},"id":2181},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"up"},"id":2182},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"side"},"id":2183},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"none"},"id":2184},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"up"},"id":2185},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"side"},"id":2186},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"none"},"id":2187},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"up"},"id":2188},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"side"},"id":2189},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"none"},"id":2190},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"up"},"id":2191},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"side"},"id":2192},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"none"},"id":2193},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"up"},"id":2194},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"side"},"id":2195},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"none"},"id":2196},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"up"},"id":2197},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"side"},"id":2198},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"none"},"id":2199},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"up"},"id":2200},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"side"},"id":2201},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"none"},"id":2202},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"up"},"id":2203},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"side"},"id":2204},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"none"},"id":2205},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"up"},"id":2206},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"side"},"id":2207},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"none"},"id":2208},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"up"},"id":2209},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"side"},"id":2210},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"none"},"id":2211},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"up"},"id":2212},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"side"},"id":2213},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"none"},"id":2214},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"up"},"id":2215},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"side"},"id":2216},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"none"},"id":2217},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"up"},"id":2218},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"side"},"id":2219},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"none"},"id":2220},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"up"},"id":2221},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"side"},"id":2222},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"none"},"id":2223},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"up"},"id":2224},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"side"},"id":2225},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"none"},"id":2226},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"up"},"id":2227},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"side"},"id":2228},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"none"},"id":2229},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"up"},"id":2230},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"side"},"id":2231},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"none"},"id":2232},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"up"},"id":2233},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"side"},"id":2234},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"none"},"id":2235},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"up"},"id":2236},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"side"},"id":2237},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"none"},"id":2238},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"up"},"id":2239},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"side"},"id":2240},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"none"},"id":2241},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"up"},"id":2242},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"side"},"id":2243},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"none"},"id":2244},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"up"},"id":2245},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"side"},"id":2246},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"none"},"id":2247},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"up"},"id":2248},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"side"},"id":2249},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"none"},"id":2250},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"up"},"id":2251},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"side"},"id":2252},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"none"},"id":2253},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"up"},"id":2254},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"side"},"id":2255},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"none"},"id":2256},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"up"},"id":2257},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"side"},"id":2258},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"none"},"id":2259},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"up"},"id":2260},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"side"},"id":2261},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"none"},"id":2262},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"up"},"id":2263},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"side"},"id":2264},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"none"},"id":2265},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"up"},"id":2266},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"side"},"id":2267},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"none"},"id":2268},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"up"},"id":2269},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"side"},"id":2270},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"none"},"id":2271},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"up"},"id":2272},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"side"},"id":2273},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"none"},"id":2274},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"up"},"id":2275},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"side"},"id":2276},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"none"},"id":2277},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"up"},"id":2278},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"side"},"id":2279},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"none"},"id":2280},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"up"},"id":2281},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"side"},"id":2282},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"none"},"id":2283},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"up"},"id":2284},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"side"},"id":2285},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"none"},"id":2286},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"up"},"id":2287},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"side"},"id":2288},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"none"},"id":2289},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"up"},"id":2290},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"side"},"id":2291},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"none"},"id":2292},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"up"},"id":2293},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"side"},"id":2294},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"none"},"id":2295},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"up"},"id":2296},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"side"},"id":2297},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"none"},"id":2298},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"up"},"id":2299},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"side"},"id":2300},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"none"},"id":2301},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"up"},"id":2302},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"side"},"id":2303},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"none"},"id":2304},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"up"},"id":2305},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"side"},"id":2306},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"none"},"id":2307},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"up"},"id":2308},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"side"},"id":2309},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"none"},"id":2310},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"up"},"id":2311},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"side"},"id":2312},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"none"},"id":2313},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"up"},"id":2314},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"side"},"id":2315},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"none"},"id":2316},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"up"},"id":2317},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"side"},"id":2318},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"none"},"id":2319},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"up"},"id":2320},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"side"},"id":2321},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"none"},"id":2322},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"up"},"id":2323},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"side"},"id":2324},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"none"},"id":2325},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"up"},"id":2326},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"side"},"id":2327},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"none"},"id":2328},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"up"},"id":2329},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"side"},"id":2330},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"none"},"id":2331},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"up"},"id":2332},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"side"},"id":2333},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"none"},"id":2334},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"up"},"id":2335},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"side"},"id":2336},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"none"},"id":2337},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"up"},"id":2338},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"side"},"id":2339},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"none"},"id":2340},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"up"},"id":2341},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"side"},"id":2342},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"none"},"id":2343},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"up"},"id":2344},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"side"},"id":2345},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"none"},"id":2346},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"up"},"id":2347},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"side"},"id":2348},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"none"},"id":2349},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"up"},"id":2350},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"side"},"id":2351},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"none"},"id":2352},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"up"},"id":2353},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"side"},"id":2354},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"none"},"id":2355},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"up"},"id":2356},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"side"},"id":2357},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"none"},"id":2358},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"up"},"id":2359},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"side"},"id":2360},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"none"},"id":2361},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"up"},"id":2362},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"side"},"id":2363},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"none"},"id":2364},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"up"},"id":2365},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"side"},"id":2366},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"none"},"id":2367},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"up"},"id":2368},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"side"},"id":2369},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"none"},"id":2370},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"up"},"id":2371},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"side"},"id":2372},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"none"},"id":2373},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"up"},"id":2374},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"side"},"id":2375},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"none"},"id":2376},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"up"},"id":2377},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"side"},"id":2378},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"none"},"id":2379},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"up"},"id":2380},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"side"},"id":2381},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"none"},"id":2382},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"up"},"id":2383},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"side"},"id":2384},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"none"},"id":2385},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"up"},"id":2386},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"side"},"id":2387},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"none"},"id":2388},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"up"},"id":2389},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"side"},"id":2390},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"none"},"id":2391},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"up"},"id":2392},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"side"},"id":2393},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"none"},"id":2394},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"up"},"id":2395},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"side"},"id":2396},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"none"},"id":2397},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"up"},"id":2398},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"side"},"id":2399},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"none"},"id":2400},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"up"},"id":2401},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"side"},"id":2402},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"none"},"id":2403},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"up"},"id":2404},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"side"},"id":2405},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"none"},"id":2406},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"up"},"id":2407},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"side"},"id":2408},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"none"},"id":2409},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"up"},"id":2410},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"side"},"id":2411},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"none"},"id":2412},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"up"},"id":2413},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"side"},"id":2414},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"none"},"id":2415},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"up"},"id":2416},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"side"},"id":2417},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"none"},"id":2418},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"up"},"id":2419},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"side"},"id":2420},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"none"},"id":2421},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"up"},"id":2422},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"side"},"id":2423},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"none"},"id":2424},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"up"},"id":2425},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"side"},"id":2426},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"none"},"id":2427},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"up"},"id":2428},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"side"},"id":2429},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"none"},"id":2430},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"up"},"id":2431},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"side"},"id":2432},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"none"},"id":2433},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"up"},"id":2434},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"side"},"id":2435},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"none"},"id":2436},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"up"},"id":2437},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"side"},"id":2438},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"none"},"id":2439},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"up"},"id":2440},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"side"},"id":2441},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"none"},"id":2442},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"up"},"id":2443},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"side"},"id":2444},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"none"},"id":2445},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"up"},"id":2446},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"side"},"id":2447},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"none"},"id":2448},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"up"},"id":2449},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"side"},"id":2450},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"none"},"id":2451},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"up"},"id":2452},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"side"},"id":2453},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"none"},"id":2454},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"up"},"id":2455},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"side"},"id":2456},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"none"},"id":2457},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"up"},"id":2458},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"side"},"id":2459},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"none"},"id":2460},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"up"},"id":2461},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"side"},"id":2462},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"none"},"id":2463},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"up"},"id":2464},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"side"},"id":2465},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"none"},"id":2466},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"up"},"id":2467},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"side"},"id":2468},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"none"},"id":2469},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"up"},"id":2470},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"side"},"id":2471},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"none"},"id":2472},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"up"},"id":2473},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"side"},"id":2474},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"none"},"id":2475},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"up"},"id":2476},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"side"},"id":2477},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"none"},"id":2478},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"up"},"id":2479},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"side"},"id":2480},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"none"},"id":2481},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"up"},"id":2482},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"side"},"id":2483},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"none"},"id":2484},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"up"},"id":2485},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"side"},"id":2486},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"none"},"id":2487},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"up"},"id":2488},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"side"},"id":2489},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"none"},"id":2490},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"up"},"id":2491},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"side"},"id":2492},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"none"},"id":2493},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"up"},"id":2494},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"side"},"id":2495},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"none"},"id":2496},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"up"},"id":2497},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"side"},"id":2498},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"none"},"id":2499},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"up"},"id":2500},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"side"},"id":2501},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"none"},"id":2502},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"up"},"id":2503},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"side"},"id":2504},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"none"},"id":2505},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"up"},"id":2506},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"side"},"id":2507},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"none"},"id":2508},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"up"},"id":2509},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"side"},"id":2510},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"none"},"id":2511},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"up"},"id":2512},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"side"},"id":2513},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"none"},"id":2514},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"up"},"id":2515},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"side"},"id":2516},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"none"},"id":2517},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"up"},"id":2518},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"side"},"id":2519},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"none"},"id":2520},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"up"},"id":2521},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"side"},"id":2522},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"none"},"id":2523},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"up"},"id":2524},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"side"},"id":2525},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"none"},"id":2526},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"up"},"id":2527},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"side"},"id":2528},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"none"},"id":2529},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"up"},"id":2530},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"side"},"id":2531},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"none"},"id":2532},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"up"},"id":2533},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"side"},"id":2534},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"none"},"id":2535},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"up"},"id":2536},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"side"},"id":2537},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"none"},"id":2538},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"up"},"id":2539},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"side"},"id":2540},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"none"},"id":2541},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"up"},"id":2542},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"side"},"id":2543},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"none"},"id":2544},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"up"},"id":2545},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"side"},"id":2546},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"none"},"id":2547},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"up"},"id":2548},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"side"},"id":2549},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"none"},"id":2550},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"up"},"id":2551},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"side"},"id":2552},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"none"},"id":2553},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"up"},"id":2554},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"side"},"id":2555},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"none"},"id":2556},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"up"},"id":2557},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"side"},"id":2558},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"none"},"id":2559},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"up"},"id":2560},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"side"},"id":2561},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"none"},"id":2562},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"up"},"id":2563},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"side"},"id":2564},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"none"},"id":2565},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"up"},"id":2566},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"side"},"id":2567},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"none"},"id":2568},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"up"},"id":2569},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"side"},"id":2570},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"none"},"id":2571},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"up"},"id":2572},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"side"},"id":2573},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"none"},"id":2574},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"up"},"id":2575},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"side"},"id":2576},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"none"},"id":2577},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"up"},"id":2578},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"side"},"id":2579},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"none"},"id":2580},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"up"},"id":2581},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"side"},"id":2582},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"none"},"id":2583},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"up"},"id":2584},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"side"},"id":2585},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"none"},"id":2586},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"up"},"id":2587},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"side"},"id":2588},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"none"},"id":2589},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"up"},"id":2590},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"side"},"id":2591},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"none"},"id":2592},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"up"},"id":2593},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"side"},"id":2594},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"none"},"id":2595},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"up"},"id":2596},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"side"},"id":2597},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"none"},"id":2598},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"up"},"id":2599},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"side"},"id":2600},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"none"},"id":2601},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"up"},"id":2602},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"side"},"id":2603},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"none"},"id":2604},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"up"},"id":2605},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"side"},"id":2606},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"none"},"id":2607},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"up"},"id":2608},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"side"},"id":2609},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"none"},"id":2610},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"up"},"id":2611},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"side"},"id":2612},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"none"},"id":2613},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"up"},"id":2614},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"side"},"id":2615},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"none"},"id":2616},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"up"},"id":2617},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"side"},"id":2618},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"none"},"id":2619},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"up"},"id":2620},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"side"},"id":2621},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"none"},"id":2622},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"up"},"id":2623},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"side"},"id":2624},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"none"},"id":2625},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"up"},"id":2626},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"side"},"id":2627},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"none"},"id":2628},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"up"},"id":2629},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"side"},"id":2630},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"none"},"id":2631},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"up"},"id":2632},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"side"},"id":2633},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"none"},"id":2634},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"up"},"id":2635},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"side"},"id":2636},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"none"},"id":2637},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"up"},"id":2638},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"side"},"id":2639},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"none"},"id":2640},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"up"},"id":2641},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"side"},"id":2642},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"none"},"id":2643},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"up"},"id":2644},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"side"},"id":2645},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"none"},"id":2646},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"up"},"id":2647},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"side"},"id":2648},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"none"},"id":2649},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"up"},"id":2650},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"side"},"id":2651},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"none"},"id":2652},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"up"},"id":2653},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"side"},"id":2654},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"none"},"id":2655},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"up"},"id":2656},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"side"},"id":2657},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"none"},"id":2658},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"up"},"id":2659},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"side"},"id":2660},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"none"},"id":2661},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"up"},"id":2662},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"side"},"id":2663},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"none"},"id":2664},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"up"},"id":2665},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"side"},"id":2666},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"none"},"id":2667},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"up"},"id":2668},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"side"},"id":2669},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"none"},"id":2670},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"up"},"id":2671},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"side"},"id":2672},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"none"},"id":2673},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"up"},"id":2674},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"side"},"id":2675},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"none"},"id":2676},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"up"},"id":2677},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"side"},"id":2678},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"none"},"id":2679},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"up"},"id":2680},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"side"},"id":2681},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"none"},"id":2682},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"up"},"id":2683},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"side"},"id":2684},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"none"},"id":2685},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"up"},"id":2686},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"side"},"id":2687},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"none"},"id":2688},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"up"},"id":2689},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"side"},"id":2690},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"none"},"id":2691},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"up"},"id":2692},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"side"},"id":2693},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"none"},"id":2694},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"up"},"id":2695},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"side"},"id":2696},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"none"},"id":2697},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"up"},"id":2698},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"side"},"id":2699},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"none"},"id":2700},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"up"},"id":2701},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"side"},"id":2702},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"none"},"id":2703},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"up"},"id":2704},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"side"},"id":2705},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"none"},"id":2706},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"up"},"id":2707},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"side"},"id":2708},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"none"},"id":2709},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"up"},"id":2710},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"side"},"id":2711},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"none"},"id":2712},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"up"},"id":2713},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"side"},"id":2714},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"none"},"id":2715},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"up"},"id":2716},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"side"},"id":2717},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"none"},"id":2718},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"up"},"id":2719},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"side"},"id":2720},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"none"},"id":2721},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"up"},"id":2722},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"side"},"id":2723},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"none"},"id":2724},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"up"},"id":2725},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"side"},"id":2726},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"none"},"id":2727},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"up"},"id":2728},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"side"},"id":2729},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"none"},"id":2730},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"up"},"id":2731},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"side"},"id":2732},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"none"},"id":2733},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"up"},"id":2734},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"side"},"id":2735},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"none"},"id":2736},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"up"},"id":2737},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"side"},"id":2738},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"none"},"id":2739},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"up"},"id":2740},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"side"},"id":2741},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"none"},"id":2742},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"up"},"id":2743},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"side"},"id":2744},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"none"},"id":2745},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"up"},"id":2746},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"side"},"id":2747},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"none"},"id":2748},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"up"},"id":2749},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"side"},"id":2750},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"none"},"id":2751},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"up"},"id":2752},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"side"},"id":2753},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"none"},"id":2754},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"up"},"id":2755},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"side"},"id":2756},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"none"},"id":2757},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"up"},"id":2758},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"side"},"id":2759},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"none"},"id":2760},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"up"},"id":2761},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"side"},"id":2762},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"none"},"id":2763},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"up"},"id":2764},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"side"},"id":2765},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"none"},"id":2766},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"up"},"id":2767},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"side"},"id":2768},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"none"},"id":2769},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"up"},"id":2770},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"side"},"id":2771},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"none"},"id":2772},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"up"},"id":2773},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"side"},"id":2774},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"none"},"id":2775},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"up"},"id":2776},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"side"},"id":2777},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"none"},"id":2778},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"up"},"id":2779},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"side"},"id":2780},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"none"},"id":2781},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"up"},"id":2782},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"side"},"id":2783},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"none"},"id":2784},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"up"},"id":2785},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"side"},"id":2786},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"none"},"id":2787},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"up"},"id":2788},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"side"},"id":2789},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"none"},"id":2790},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"up"},"id":2791},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"side"},"id":2792},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"none"},"id":2793},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"up"},"id":2794},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"side"},"id":2795},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"none"},"id":2796},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"up"},"id":2797},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"side"},"id":2798},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"none"},"id":2799},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"up"},"id":2800},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"side"},"id":2801},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"none"},"id":2802},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"up"},"id":2803},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"side"},"id":2804},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"none"},"id":2805},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"up"},"id":2806},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"side"},"id":2807},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"none"},"id":2808},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"up"},"id":2809},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"side"},"id":2810},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"none"},"id":2811},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"up"},"id":2812},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"side"},"id":2813},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"none"},"id":2814},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"up"},"id":2815},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"side"},"id":2816},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"none"},"id":2817},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"up"},"id":2818},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"side"},"id":2819},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"none"},"id":2820},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"up"},"id":2821},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"side"},"id":2822},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"none"},"id":2823},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"up"},"id":2824},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"side"},"id":2825},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"none"},"id":2826},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"up"},"id":2827},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"side"},"id":2828},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"none"},"id":2829},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"up"},"id":2830},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"side"},"id":2831},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"none"},"id":2832},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"up"},"id":2833},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"side"},"id":2834},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"none"},"id":2835},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"up"},"id":2836},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"side"},"id":2837},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"none"},"id":2838},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"up"},"id":2839},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"side"},"id":2840},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"none"},"id":2841},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"up"},"id":2842},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"side"},"id":2843},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"none"},"id":2844},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"up"},"id":2845},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"side"},"id":2846},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"none"},"id":2847},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"up"},"id":2848},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"side"},"id":2849},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"none"},"id":2850},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"up"},"id":2851},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"side"},"id":2852},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"none"},"id":2853},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"up"},"id":2854},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"side"},"id":2855},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"none"},"id":2856},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"up"},"id":2857},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"side"},"id":2858},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"none"},"id":2859},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"up"},"id":2860},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"side"},"id":2861},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"none"},"id":2862},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"up"},"id":2863},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"side"},"id":2864},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"none"},"id":2865},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"up"},"id":2866},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"side"},"id":2867},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"none"},"id":2868},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"up"},"id":2869},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"side"},"id":2870},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"none"},"id":2871},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"up"},"id":2872},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"side"},"id":2873},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"none"},"id":2874},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"up"},"id":2875},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"side"},"id":2876},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"none"},"id":2877},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"up"},"id":2878},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"side"},"id":2879},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"none"},"id":2880},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"up"},"id":2881},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"side"},"id":2882},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"none"},"id":2883},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"up"},"id":2884},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"side"},"id":2885},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"none"},"id":2886},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"up"},"id":2887},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"side"},"id":2888},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"none"},"id":2889},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"up"},"id":2890},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"side"},"id":2891},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"none"},"id":2892},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"up"},"id":2893},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"side"},"id":2894},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"none"},"id":2895},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"up"},"id":2896},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"side"},"id":2897},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"none"},"id":2898},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"up"},"id":2899},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"side"},"id":2900},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"none"},"id":2901},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"up"},"id":2902},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"side"},"id":2903},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"none"},"id":2904},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"up"},"id":2905},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"side"},"id":2906},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"none"},"id":2907},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"up"},"id":2908},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"side"},"id":2909},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"none"},"id":2910},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"up"},"id":2911},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"side"},"id":2912},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"none"},"id":2913},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"up"},"id":2914},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"side"},"id":2915},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"none"},"id":2916},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"up"},"id":2917},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"side"},"id":2918},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"none"},"id":2919},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"up"},"id":2920},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"side"},"id":2921},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"none"},"id":2922},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"up"},"id":2923},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"side"},"id":2924},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"none"},"id":2925},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"up"},"id":2926},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"side"},"id":2927},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"none"},"id":2928},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"up"},"id":2929},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"side"},"id":2930},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"none"},"id":2931},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"up"},"id":2932},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"side"},"id":2933},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"none"},"id":2934},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"up"},"id":2935},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"side"},"id":2936},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"none"},"id":2937},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"up"},"id":2938},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"side"},"id":2939},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"none"},"id":2940},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"up"},"id":2941},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"side"},"id":2942},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"none"},"id":2943},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"up"},"id":2944},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"side"},"id":2945},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"none"},"id":2946},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"up"},"id":2947},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"side"},"id":2948},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"none"},"id":2949},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"up"},"id":2950},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"side"},"id":2951},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"none"},"id":2952},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"up"},"id":2953},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"side"},"id":2954},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"none"},"id":2955},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"up"},"id":2956},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"side"},"id":2957},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"none"},"id":2958},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"up"},"id":2959},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"side"},"id":2960},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"none"},"id":2961},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"up"},"id":2962},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"side"},"id":2963},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"none"},"id":2964},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"up"},"id":2965},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"side"},"id":2966},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"none"},"id":2967},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"up"},"id":2968},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"side"},"id":2969},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"none"},"id":2970},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"up"},"id":2971},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"side"},"id":2972},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"none"},"id":2973},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"up"},"id":2974},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"side"},"id":2975},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"none"},"id":2976},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"up"},"id":2977},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"side"},"id":2978},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"none"},"id":2979},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"up"},"id":2980},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"side"},"id":2981},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"none"},"id":2982},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"up"},"id":2983},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"side"},"id":2984},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"none"},"id":2985},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"up"},"id":2986},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"side"},"id":2987},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"none"},"id":2988},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"up"},"id":2989},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"side"},"id":2990},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"none"},"id":2991},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"up"},"id":2992},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"side"},"id":2993},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"none"},"id":2994},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"up"},"id":2995},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"side"},"id":2996},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"none"},"id":2997},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"up"},"id":2998},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"side"},"id":2999},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"none"},"id":3000},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"up"},"id":3001},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"side"},"id":3002},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"none"},"id":3003},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"up"},"id":3004},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"side"},"id":3005},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"none"},"id":3006},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"up"},"id":3007},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"side"},"id":3008},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"none"},"id":3009},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"up"},"id":3010},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"side"},"id":3011},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"none"},"id":3012},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"up"},"id":3013},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"side"},"id":3014},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"none"},"id":3015},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"up"},"id":3016},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"side"},"id":3017},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"none"},"id":3018},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"up"},"id":3019},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"side"},"id":3020},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"none"},"id":3021},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"up"},"id":3022},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"side"},"id":3023},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"none"},"id":3024},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"up"},"id":3025},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"side"},"id":3026},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"none"},"id":3027},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"up"},"id":3028},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"side"},"id":3029},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"none"},"id":3030},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"up"},"id":3031},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"side"},"id":3032},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"none"},"id":3033},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"up"},"id":3034},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"side"},"id":3035},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"none"},"id":3036},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"up"},"id":3037},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"side"},"id":3038},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"none"},"id":3039},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"up"},"id":3040},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"side"},"id":3041},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"none"},"id":3042},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"up"},"id":3043},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"side"},"id":3044},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"none"},"id":3045},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"up"},"id":3046},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"side"},"id":3047},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"none"},"id":3048}]},"diamond_ore":{"states":[{"id":3049}]},"diamond_block":{"states":[{"id":3050}]},"crafting_table":{"states":[{"id":3051}]},"wheat":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":3052},{"properties":{"age":"1"},"id":3053},{"properties":{"age":"2"},"id":3054},{"properties":{"age":"3"},"id":3055},{"properties":{"age":"4"},"id":3056},{"properties":{"age":"5"},"id":3057},{"properties":{"age":"6"},"id":3058},{"properties":{"age":"7"},"id":3059}]},"farmland":{"properties":{"moisture":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"moisture":"0"},"id":3060},{"properties":{"moisture":"1"},"id":3061},{"properties":{"moisture":"2"},"id":3062},{"properties":{"moisture":"3"},"id":3063},{"properties":{"moisture":"4"},"id":3064},{"properties":{"moisture":"5"},"id":3065},{"properties":{"moisture":"6"},"id":3066},{"properties":{"moisture":"7"},"id":3067}]},"furnace":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3068},{"properties":{"facing":"north","lit":"false"},"id":3069},{"properties":{"facing":"south","lit":"true"},"id":3070},{"properties":{"facing":"south","lit":"false"},"id":3071},{"properties":{"facing":"west","lit":"true"},"id":3072},{"properties":{"facing":"west","lit":"false"},"id":3073},{"properties":{"facing":"east","lit":"true"},"id":3074},{"properties":{"facing":"east","lit":"false"},"id":3075}]},"sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3076},{"properties":{"rotation":"0","waterlogged":"false"},"id":3077},{"properties":{"rotation":"1","waterlogged":"true"},"id":3078},{"properties":{"rotation":"1","waterlogged":"false"},"id":3079},{"properties":{"rotation":"2","waterlogged":"true"},"id":3080},{"properties":{"rotation":"2","waterlogged":"false"},"id":3081},{"properties":{"rotation":"3","waterlogged":"true"},"id":3082},{"properties":{"rotation":"3","waterlogged":"false"},"id":3083},{"properties":{"rotation":"4","waterlogged":"true"},"id":3084},{"properties":{"rotation":"4","waterlogged":"false"},"id":3085},{"properties":{"rotation":"5","waterlogged":"true"},"id":3086},{"properties":{"rotation":"5","waterlogged":"false"},"id":3087},{"properties":{"rotation":"6","waterlogged":"true"},"id":3088},{"properties":{"rotation":"6","waterlogged":"false"},"id":3089},{"properties":{"rotation":"7","waterlogged":"true"},"id":3090},{"properties":{"rotation":"7","waterlogged":"false"},"id":3091},{"properties":{"rotation":"8","waterlogged":"true"},"id":3092},{"properties":{"rotation":"8","waterlogged":"false"},"id":3093},{"properties":{"rotation":"9","waterlogged":"true"},"id":3094},{"properties":{"rotation":"9","waterlogged":"false"},"id":3095},{"properties":{"rotation":"10","waterlogged":"true"},"id":3096},{"properties":{"rotation":"10","waterlogged":"false"},"id":3097},{"properties":{"rotation":"11","waterlogged":"true"},"id":3098},{"properties":{"rotation":"11","waterlogged":"false"},"id":3099},{"properties":{"rotation":"12","waterlogged":"true"},"id":3100},{"properties":{"rotation":"12","waterlogged":"false"},"id":3101},{"properties":{"rotation":"13","waterlogged":"true"},"id":3102},{"properties":{"rotation":"13","waterlogged":"false"},"id":3103},{"properties":{"rotation":"14","waterlogged":"true"},"id":3104},{"properties":{"rotation":"14","waterlogged":"false"},"id":3105},{"properties":{"rotation":"15","waterlogged":"true"},"id":3106},{"properties":{"rotation":"15","waterlogged":"false"},"id":3107}]},"oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3108},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3109},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3110},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3111},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3112},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3113},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3114},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3115},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3116},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3117},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3118},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3119},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3120},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3121},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3122},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3123},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3124},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3125},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3126},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3127},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3128},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3129},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3130},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3131},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3132},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3133},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3134},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3135},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3136},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3137},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3138},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3139},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3140},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3141},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3142},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3143},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3144},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3145},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3146},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3147},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3148},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3149},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3150},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3151},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3152},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3153},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3154},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3155},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3156},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3157},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3158},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3159},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3160},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3161},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3162},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3163},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3164},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3165},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3166},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3167},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3168},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3169},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3170},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3171}]},"ladder":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3172},{"properties":{"facing":"north","waterlogged":"false"},"id":3173},{"properties":{"facing":"south","waterlogged":"true"},"id":3174},{"properties":{"facing":"south","waterlogged":"false"},"id":3175},{"properties":{"facing":"west","waterlogged":"true"},"id":3176},{"properties":{"facing":"west","waterlogged":"false"},"id":3177},{"properties":{"facing":"east","waterlogged":"true"},"id":3178},{"properties":{"facing":"east","waterlogged":"false"},"id":3179}]},"rail":{"properties":{"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south","south_east","south_west","north_west","north_east"]},"states":[{"properties":{"shape":"north_south"},"id":3180},{"properties":{"shape":"east_west"},"id":3181},{"properties":{"shape":"ascending_east"},"id":3182},{"properties":{"shape":"ascending_west"},"id":3183},{"properties":{"shape":"ascending_north"},"id":3184},{"properties":{"shape":"ascending_south"},"id":3185},{"properties":{"shape":"south_east"},"id":3186},{"properties":{"shape":"south_west"},"id":3187},{"properties":{"shape":"north_west"},"id":3188},{"properties":{"shape":"north_east"},"id":3189}]},"cobblestone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":3190},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":3191},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":3192},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":3193},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":3194},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":3195},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":3196},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":3197},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":3198},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":3199},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":3200},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":3201},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3202},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3203},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3204},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3205},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3206},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3207},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3208},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3209},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":3210},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":3211},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":3212},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":3213},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":3214},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":3215},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":3216},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":3217},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":3218},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":3219},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":3220},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":3221},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3222},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3223},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3224},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3225},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3226},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3227},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3228},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3229},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":3230},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":3231},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":3232},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":3233},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":3234},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":3235},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":3236},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":3237},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":3238},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":3239},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":3240},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":3241},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3242},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3243},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3244},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3245},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3246},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3247},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3248},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3249},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":3250},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":3251},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":3252},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":3253},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":3254},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":3255},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":3256},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":3257},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":3258},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":3259},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":3260},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":3261},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3262},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3263},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3264},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3265},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3266},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3267},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3268},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3269}]},"wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3270},{"properties":{"facing":"north","waterlogged":"false"},"id":3271},{"properties":{"facing":"south","waterlogged":"true"},"id":3272},{"properties":{"facing":"south","waterlogged":"false"},"id":3273},{"properties":{"facing":"west","waterlogged":"true"},"id":3274},{"properties":{"facing":"west","waterlogged":"false"},"id":3275},{"properties":{"facing":"east","waterlogged":"true"},"id":3276},{"properties":{"facing":"east","waterlogged":"false"},"id":3277}]},"lever":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3278},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3279},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3280},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3281},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3282},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3283},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3284},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3285},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3286},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3287},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3288},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3289},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3290},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3291},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3292},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3293},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3294},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3295},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3296},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3297},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3298},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3299},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3300},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3301}]},"stone_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3302},{"properties":{"powered":"false"},"id":3303}]},"iron_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3304},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3305},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3306},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3307},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3308},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3309},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3310},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3311},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3312},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3313},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3314},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3315},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3316},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3317},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3318},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3319},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3320},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3321},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3322},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3323},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3324},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3325},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3326},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3327},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3328},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3329},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3330},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3331},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3332},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3333},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3334},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3335},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3336},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3337},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3338},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3339},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3340},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3341},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3342},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3343},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3344},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3345},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3346},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3347},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3348},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3349},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3350},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3351},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3352},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3353},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3354},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3355},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3356},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3357},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3358},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3359},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3360},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3361},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3362},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3363},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3364},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3365},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3366},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3367}]},"oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3368},{"properties":{"powered":"false"},"id":3369}]},"spruce_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3370},{"properties":{"powered":"false"},"id":3371}]},"birch_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3372},{"properties":{"powered":"false"},"id":3373}]},"jungle_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3374},{"properties":{"powered":"false"},"id":3375}]},"acacia_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3376},{"properties":{"powered":"false"},"id":3377}]},"dark_oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3378},{"properties":{"powered":"false"},"id":3379}]},"redstone_ore":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3380},{"properties":{"lit":"false"},"id":3381}]},"redstone_torch":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3382},{"properties":{"lit":"false"},"id":3383}]},"redstone_wall_torch":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3384},{"properties":{"facing":"north","lit":"false"},"id":3385},{"properties":{"facing":"south","lit":"true"},"id":3386},{"properties":{"facing":"south","lit":"false"},"id":3387},{"properties":{"facing":"west","lit":"true"},"id":3388},{"properties":{"facing":"west","lit":"false"},"id":3389},{"properties":{"facing":"east","lit":"true"},"id":3390},{"properties":{"facing":"east","lit":"false"},"id":3391}]},"stone_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3392},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3393},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3394},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3395},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3396},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3397},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3398},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3399},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3400},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3401},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3402},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3403},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3404},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3405},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3406},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3407},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3408},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3409},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3410},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3411},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3412},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3413},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3414},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3415}]},"snow":{"properties":{"layers":["1","2","3","4","5","6","7","8"]},"states":[{"properties":{"layers":"1"},"id":3416},{"properties":{"layers":"2"},"id":3417},{"properties":{"layers":"3"},"id":3418},{"properties":{"layers":"4"},"id":3419},{"properties":{"layers":"5"},"id":3420},{"properties":{"layers":"6"},"id":3421},{"properties":{"layers":"7"},"id":3422},{"properties":{"layers":"8"},"id":3423}]},"ice":{"states":[{"id":3424}]},"snow_block":{"states":[{"id":3425}]},"cactus":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3426},{"properties":{"age":"1"},"id":3427},{"properties":{"age":"2"},"id":3428},{"properties":{"age":"3"},"id":3429},{"properties":{"age":"4"},"id":3430},{"properties":{"age":"5"},"id":3431},{"properties":{"age":"6"},"id":3432},{"properties":{"age":"7"},"id":3433},{"properties":{"age":"8"},"id":3434},{"properties":{"age":"9"},"id":3435},{"properties":{"age":"10"},"id":3436},{"properties":{"age":"11"},"id":3437},{"properties":{"age":"12"},"id":3438},{"properties":{"age":"13"},"id":3439},{"properties":{"age":"14"},"id":3440},{"properties":{"age":"15"},"id":3441}]},"clay":{"states":[{"id":3442}]},"sugar_cane":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3443},{"properties":{"age":"1"},"id":3444},{"properties":{"age":"2"},"id":3445},{"properties":{"age":"3"},"id":3446},{"properties":{"age":"4"},"id":3447},{"properties":{"age":"5"},"id":3448},{"properties":{"age":"6"},"id":3449},{"properties":{"age":"7"},"id":3450},{"properties":{"age":"8"},"id":3451},{"properties":{"age":"9"},"id":3452},{"properties":{"age":"10"},"id":3453},{"properties":{"age":"11"},"id":3454},{"properties":{"age":"12"},"id":3455},{"properties":{"age":"13"},"id":3456},{"properties":{"age":"14"},"id":3457},{"properties":{"age":"15"},"id":3458}]},"jukebox":{"properties":{"has_record":["true","false"]},"states":[{"properties":{"has_record":"true"},"id":3459},{"properties":{"has_record":"false"},"id":3460}]},"oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3461},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3462},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3463},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3464},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3465},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3466},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3467},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3468},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3469},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3470},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3471},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3472},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3473},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3474},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3475},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3476},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3477},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3478},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3479},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3480},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3481},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3482},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3483},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3484},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3485},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3486},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3487},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3488},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3489},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3490},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3491},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3492}]},"pumpkin":{"states":[{"id":3493}]},"netherrack":{"states":[{"id":3494}]},"soul_sand":{"states":[{"id":3495}]},"glowstone":{"states":[{"id":3496}]},"nether_portal":{"properties":{"axis":["x","z"]},"states":[{"properties":{"axis":"x"},"id":3497},{"properties":{"axis":"z"},"id":3498}]},"carved_pumpkin":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":3499},{"properties":{"facing":"south"},"id":3500},{"properties":{"facing":"west"},"id":3501},{"properties":{"facing":"east"},"id":3502}]},"jack_o_lantern":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":3503},{"properties":{"facing":"south"},"id":3504},{"properties":{"facing":"west"},"id":3505},{"properties":{"facing":"east"},"id":3506}]},"cake":{"properties":{"bites":["0","1","2","3","4","5","6"]},"states":[{"properties":{"bites":"0"},"id":3507},{"properties":{"bites":"1"},"id":3508},{"properties":{"bites":"2"},"id":3509},{"properties":{"bites":"3"},"id":3510},{"properties":{"bites":"4"},"id":3511},{"properties":{"bites":"5"},"id":3512},{"properties":{"bites":"6"},"id":3513}]},"repeater":{"properties":{"delay":["1","2","3","4"],"facing":["north","south","west","east"],"locked":["true","false"],"powered":["true","false"]},"states":[{"properties":{"delay":"1","facing":"north","locked":"true","powered":"true"},"id":3514},{"properties":{"delay":"1","facing":"north","locked":"true","powered":"false"},"id":3515},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"true"},"id":3516},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"false"},"id":3517},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"true"},"id":3518},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"false"},"id":3519},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"true"},"id":3520},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"false"},"id":3521},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"true"},"id":3522},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"false"},"id":3523},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"true"},"id":3524},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"false"},"id":3525},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"true"},"id":3526},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"false"},"id":3527},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"true"},"id":3528},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"false"},"id":3529},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"true"},"id":3530},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"false"},"id":3531},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"true"},"id":3532},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"false"},"id":3533},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"true"},"id":3534},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"false"},"id":3535},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"true"},"id":3536},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"false"},"id":3537},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"true"},"id":3538},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"false"},"id":3539},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"true"},"id":3540},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"false"},"id":3541},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"true"},"id":3542},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"false"},"id":3543},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"true"},"id":3544},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"false"},"id":3545},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"true"},"id":3546},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"false"},"id":3547},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"true"},"id":3548},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"false"},"id":3549},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"true"},"id":3550},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"false"},"id":3551},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"true"},"id":3552},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"false"},"id":3553},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"true"},"id":3554},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"false"},"id":3555},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"true"},"id":3556},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"false"},"id":3557},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"true"},"id":3558},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"false"},"id":3559},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"true"},"id":3560},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"false"},"id":3561},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"true"},"id":3562},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"false"},"id":3563},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"true"},"id":3564},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"false"},"id":3565},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"true"},"id":3566},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"false"},"id":3567},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"true"},"id":3568},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"false"},"id":3569},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"true"},"id":3570},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"false"},"id":3571},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"true"},"id":3572},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"false"},"id":3573},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"true"},"id":3574},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"false"},"id":3575},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"true"},"id":3576},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"false"},"id":3577}]},"white_stained_glass":{"states":[{"id":3578}]},"orange_stained_glass":{"states":[{"id":3579}]},"magenta_stained_glass":{"states":[{"id":3580}]},"light_blue_stained_glass":{"states":[{"id":3581}]},"yellow_stained_glass":{"states":[{"id":3582}]},"lime_stained_glass":{"states":[{"id":3583}]},"pink_stained_glass":{"states":[{"id":3584}]},"gray_stained_glass":{"states":[{"id":3585}]},"light_gray_stained_glass":{"states":[{"id":3586}]},"cyan_stained_glass":{"states":[{"id":3587}]},"purple_stained_glass":{"states":[{"id":3588}]},"blue_stained_glass":{"states":[{"id":3589}]},"brown_stained_glass":{"states":[{"id":3590}]},"green_stained_glass":{"states":[{"id":3591}]},"red_stained_glass":{"states":[{"id":3592}]},"black_stained_glass":{"states":[{"id":3593}]},"oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3594},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3595},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3596},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3597},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3598},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3599},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3600},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3601},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3602},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3603},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3604},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3605},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3606},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3607},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3608},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3609},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3610},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3611},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3612},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3613},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3614},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3615},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3616},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3617},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3618},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3619},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3620},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3621},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3622},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3623},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3624},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3625},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3626},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3627},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3628},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3629},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3630},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3631},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3632},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3633},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3634},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3635},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3636},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3637},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3638},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3639},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3640},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3641},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3642},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3643},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3644},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3645},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3646},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3647},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3648},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3649},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3650},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3651},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3652},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3653},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3654},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3655},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3656},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3657}]},"spruce_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3658},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3659},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3660},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3661},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3662},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3663},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3664},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3665},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3666},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3667},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3668},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3669},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3670},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3671},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3672},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3673},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3674},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3675},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3676},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3677},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3678},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3679},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3680},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3681},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3682},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3683},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3684},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3685},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3686},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3687},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3688},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3689},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3690},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3691},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3692},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3693},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3694},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3695},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3696},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3697},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3698},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3699},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3700},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3701},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3702},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3703},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3704},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3705},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3706},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3707},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3708},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3709},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3710},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3711},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3712},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3713},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3714},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3715},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3716},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3717},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3718},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3719},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3720},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3721}]},"birch_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3722},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3723},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3724},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3725},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3726},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3727},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3728},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3729},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3730},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3731},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3732},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3733},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3734},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3735},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3736},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3737},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3738},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3739},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3740},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3741},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3742},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3743},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3744},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3745},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3746},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3747},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3748},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3749},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3750},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3751},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3752},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3753},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3754},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3755},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3756},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3757},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3758},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3759},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3760},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3761},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3762},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3763},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3764},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3765},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3766},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3767},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3768},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3769},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3770},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3771},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3772},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3773},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3774},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3775},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3776},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3777},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3778},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3779},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3780},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3781},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3782},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3783},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3784},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3785}]},"jungle_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3786},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3787},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3788},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3789},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3790},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3791},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3792},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3793},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3794},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3795},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3796},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3797},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3798},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3799},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3800},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3801},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3802},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3803},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3804},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3805},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3806},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3807},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3808},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3809},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3810},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3811},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3812},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3813},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3814},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3815},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3816},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3817},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3818},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3819},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3820},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3821},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3822},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3823},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3824},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3825},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3826},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3827},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3828},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3829},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3830},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3831},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3832},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3833},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3834},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3835},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3836},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3837},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3838},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3839},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3840},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3841},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3842},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3843},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3844},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3845},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3846},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3847},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3848},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3849}]},"acacia_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3850},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3851},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3852},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3853},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3854},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3855},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3856},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3857},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3858},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3859},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3860},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3861},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3862},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3863},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3864},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3865},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3866},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3867},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3868},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3869},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3870},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3871},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3872},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3873},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3874},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3875},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3876},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3877},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3878},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3879},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3880},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3881},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3882},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3883},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3884},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3885},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3886},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3887},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3888},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3889},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3890},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3891},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3892},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3893},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3894},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3895},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3896},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3897},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3898},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3899},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3900},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3901},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3902},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3903},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3904},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3905},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3906},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3907},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3908},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3909},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3910},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3911},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3912},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3913}]},"dark_oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3914},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3915},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3916},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3917},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3918},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3919},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3920},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3921},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3922},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3923},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3924},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3925},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3926},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3927},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3928},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3929},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3930},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3931},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3932},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3933},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3934},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3935},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3936},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3937},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3938},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3939},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3940},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3941},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3942},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3943},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3944},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3945},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3946},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3947},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3948},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3949},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3950},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3951},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3952},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3953},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3954},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3955},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3956},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3957},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3958},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3959},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3960},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3961},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":3962},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":3963},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":3964},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":3965},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":3966},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":3967},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":3968},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":3969},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":3970},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":3971},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":3972},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":3973},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":3974},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":3975},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":3976},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":3977}]},"infested_stone":{"states":[{"id":3978}]},"infested_cobblestone":{"states":[{"id":3979}]},"infested_stone_bricks":{"states":[{"id":3980}]},"infested_mossy_stone_bricks":{"states":[{"id":3981}]},"infested_cracked_stone_bricks":{"states":[{"id":3982}]},"infested_chiseled_stone_bricks":{"states":[{"id":3983}]},"stone_bricks":{"states":[{"id":3984}]},"mossy_stone_bricks":{"states":[{"id":3985}]},"cracked_stone_bricks":{"states":[{"id":3986}]},"chiseled_stone_bricks":{"states":[{"id":3987}]},"brown_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":3988},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":3989},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":3990},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":3991},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":3992},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":3993},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":3994},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":3995},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":3996},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":3997},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":3998},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":3999},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4000},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4001},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4002},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4003},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4004},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4005},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4006},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4007},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4008},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4009},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4010},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4011},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4012},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4013},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4014},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4015},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4016},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4017},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4018},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4019},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4020},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4021},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4022},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4023},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4024},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4025},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4026},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4027},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4028},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4029},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4030},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4031},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4032},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4033},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4034},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4035},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4036},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4037},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4038},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4039},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4040},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4041},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4042},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4043},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4044},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4045},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4046},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4047},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4048},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4049},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4050},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4051}]},"red_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4052},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4053},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4054},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4055},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4056},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4057},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4058},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4059},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4060},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4061},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4062},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4063},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4064},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4065},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4066},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4067},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4068},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4069},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4070},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4071},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4072},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4073},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4074},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4075},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4076},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4077},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4078},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4079},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4080},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4081},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4082},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4083},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4084},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4085},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4086},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4087},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4088},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4089},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4090},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4091},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4092},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4093},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4094},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4095},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4096},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4097},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4098},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4099},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4100},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4101},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4102},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4103},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4104},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4105},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4106},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4107},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4108},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4109},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4110},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4111},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4112},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4113},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4114},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4115}]},"mushroom_stem":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4116},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4117},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4118},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4119},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4120},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4121},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4122},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4123},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4124},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4125},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4126},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4127},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4128},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4129},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4130},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4131},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4132},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4133},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4134},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4135},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4136},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4137},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4138},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4139},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4140},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4141},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4142},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4143},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4144},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4145},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4146},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4147},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4148},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4149},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4150},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4151},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4152},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4153},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4154},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4155},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4156},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4157},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4158},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4159},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4160},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4161},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4162},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4163},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4164},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4165},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4166},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4167},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4168},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4169},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4170},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4171},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4172},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4173},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4174},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4175},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4176},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4177},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4178},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4179}]},"iron_bars":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4180},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4181},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4182},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4183},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4184},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4185},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4186},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4187},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4188},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4189},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4190},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4191},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4192},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4193},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4194},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4195},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4196},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4197},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4198},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4199},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4200},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4201},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4202},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4203},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4204},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4205},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4206},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4207},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4208},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4209},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4210},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4211}]},"glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4212},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4213},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4214},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4215},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4216},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4217},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4218},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4219},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4220},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4221},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4222},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4223},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4224},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4225},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4226},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4227},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4228},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4229},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4230},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4231},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4232},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4233},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4234},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4235},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4236},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4237},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4238},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4239},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4240},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4241},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4242},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4243}]},"melon":{"states":[{"id":4244}]},"attached_pumpkin_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4245},{"properties":{"facing":"south"},"id":4246},{"properties":{"facing":"west"},"id":4247},{"properties":{"facing":"east"},"id":4248}]},"attached_melon_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4249},{"properties":{"facing":"south"},"id":4250},{"properties":{"facing":"west"},"id":4251},{"properties":{"facing":"east"},"id":4252}]},"pumpkin_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4253},{"properties":{"age":"1"},"id":4254},{"properties":{"age":"2"},"id":4255},{"properties":{"age":"3"},"id":4256},{"properties":{"age":"4"},"id":4257},{"properties":{"age":"5"},"id":4258},{"properties":{"age":"6"},"id":4259},{"properties":{"age":"7"},"id":4260}]},"melon_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4261},{"properties":{"age":"1"},"id":4262},{"properties":{"age":"2"},"id":4263},{"properties":{"age":"3"},"id":4264},{"properties":{"age":"4"},"id":4265},{"properties":{"age":"5"},"id":4266},{"properties":{"age":"6"},"id":4267},{"properties":{"age":"7"},"id":4268}]},"vine":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4269},{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4270},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4271},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4272},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4273},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4274},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4275},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4276},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4277},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4278},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4279},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4280},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4281},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4282},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4283},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4284},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4285},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4286},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4287},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4288},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4289},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4290},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4291},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4292},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4293},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4294},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4295},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4296},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4297},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4298},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4299},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4300}]},"oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":4301},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":4302},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":4303},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":4304},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":4305},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":4306},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":4307},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":4308},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":4309},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":4310},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":4311},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":4312},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":4313},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":4314},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":4315},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":4316},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":4317},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":4318},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":4319},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":4320},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":4321},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":4322},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":4323},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":4324},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":4325},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":4326},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":4327},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":4328},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":4329},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":4330},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":4331},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":4332}]},"brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4333},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4334},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4335},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4336},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4337},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4338},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4339},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4340},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4341},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4342},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4343},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4344},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4345},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4346},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4347},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4348},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4349},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4350},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4351},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4352},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4353},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4354},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4355},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4356},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4357},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4358},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4359},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4360},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4361},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4362},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4363},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4364},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4365},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4366},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4367},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4368},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4369},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4370},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4371},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4372},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4373},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4374},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4375},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4376},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4377},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4378},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4379},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4380},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4381},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4382},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4383},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4384},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4385},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4386},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4387},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4388},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4389},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4390},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4391},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4392},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4393},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4394},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4395},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4396},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4397},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4398},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4399},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4400},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4401},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4402},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4403},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4404},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4405},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4406},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4407},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4408},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4409},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4410},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4411},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4412}]},"stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4413},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4414},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4415},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4416},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4417},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4418},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4419},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4420},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4421},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4422},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4423},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4424},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4425},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4426},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4427},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4428},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4429},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4430},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4431},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4432},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4433},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4434},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4435},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4436},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4437},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4438},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4439},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4440},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4441},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4442},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4443},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4444},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4445},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4446},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4447},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4448},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4449},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4450},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4451},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4452},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4453},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4454},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4455},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4456},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4457},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4458},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4459},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4460},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4461},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4462},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4463},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4464},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4465},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4466},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4467},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4468},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4469},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4470},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4471},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4472},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4473},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4474},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4475},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4476},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4477},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4478},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4479},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4480},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4481},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4482},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4483},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4484},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4485},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4486},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4487},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4488},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4489},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4490},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4491},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4492}]},"mycelium":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":4493},{"properties":{"snowy":"false"},"id":4494}]},"lily_pad":{"states":[{"id":4495}]},"nether_bricks":{"states":[{"id":4496}]},"nether_brick_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4497},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4498},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4499},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4500},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4501},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4502},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4503},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4504},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4505},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4506},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4507},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4508},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4509},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4510},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4511},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4512},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4513},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4514},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4515},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4516},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4517},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4518},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4519},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4520},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4521},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4522},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4523},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4524},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4525},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4526},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4527},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4528}]},"nether_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4529},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4530},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4531},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4532},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4533},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4534},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4535},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4536},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4537},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4538},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4539},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4540},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4541},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4542},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4543},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4544},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4545},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4546},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4547},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4548},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4549},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4550},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4551},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4552},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4553},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4554},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4555},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4556},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4557},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4558},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4559},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4560},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4561},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4562},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4563},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4564},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4565},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4566},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4567},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4568},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4569},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4570},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4571},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4572},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4573},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4574},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4575},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4576},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4577},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4578},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4579},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4580},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4581},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4582},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4583},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4584},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4585},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4586},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4587},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4588},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4589},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4590},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4591},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4592},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4593},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4594},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4595},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4596},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4597},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4598},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4599},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4600},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4601},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4602},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4603},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4604},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4605},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4606},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4607},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4608}]},"nether_wart":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":4609},{"properties":{"age":"1"},"id":4610},{"properties":{"age":"2"},"id":4611},{"properties":{"age":"3"},"id":4612}]},"enchanting_table":{"states":[{"id":4613}]},"brewing_stand":{"properties":{"has_bottle_0":["true","false"],"has_bottle_1":["true","false"],"has_bottle_2":["true","false"]},"states":[{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"true"},"id":4614},{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"false"},"id":4615},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"true"},"id":4616},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"false"},"id":4617},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"true"},"id":4618},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"false"},"id":4619},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"true"},"id":4620},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"false"},"id":4621}]},"cauldron":{"properties":{"level":["0","1","2","3"]},"states":[{"properties":{"level":"0"},"id":4622},{"properties":{"level":"1"},"id":4623},{"properties":{"level":"2"},"id":4624},{"properties":{"level":"3"},"id":4625}]},"end_portal":{"states":[{"id":4626}]},"end_portal_frame":{"properties":{"eye":["true","false"],"facing":["north","south","west","east"]},"states":[{"properties":{"eye":"true","facing":"north"},"id":4627},{"properties":{"eye":"true","facing":"south"},"id":4628},{"properties":{"eye":"true","facing":"west"},"id":4629},{"properties":{"eye":"true","facing":"east"},"id":4630},{"properties":{"eye":"false","facing":"north"},"id":4631},{"properties":{"eye":"false","facing":"south"},"id":4632},{"properties":{"eye":"false","facing":"west"},"id":4633},{"properties":{"eye":"false","facing":"east"},"id":4634}]},"end_stone":{"states":[{"id":4635}]},"dragon_egg":{"states":[{"id":4636}]},"redstone_lamp":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":4637},{"properties":{"lit":"false"},"id":4638}]},"cocoa":{"properties":{"age":["0","1","2"],"facing":["north","south","west","east"]},"states":[{"properties":{"age":"0","facing":"north"},"id":4639},{"properties":{"age":"0","facing":"south"},"id":4640},{"properties":{"age":"0","facing":"west"},"id":4641},{"properties":{"age":"0","facing":"east"},"id":4642},{"properties":{"age":"1","facing":"north"},"id":4643},{"properties":{"age":"1","facing":"south"},"id":4644},{"properties":{"age":"1","facing":"west"},"id":4645},{"properties":{"age":"1","facing":"east"},"id":4646},{"properties":{"age":"2","facing":"north"},"id":4647},{"properties":{"age":"2","facing":"south"},"id":4648},{"properties":{"age":"2","facing":"west"},"id":4649},{"properties":{"age":"2","facing":"east"},"id":4650}]},"sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4651},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4652},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4653},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4654},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4655},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4656},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4657},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4658},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4659},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4660},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4661},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4662},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4663},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4664},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4665},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4666},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4667},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4668},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4669},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4670},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4671},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4672},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4673},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4674},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4675},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4676},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4677},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4678},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4679},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4680},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4681},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4682},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4683},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4684},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4685},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4686},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4687},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4688},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4689},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4690},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4691},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4692},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4693},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4694},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4695},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4696},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4697},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4698},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4699},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4700},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4701},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4702},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4703},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4704},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4705},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4706},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4707},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4708},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4709},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4710},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4711},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4712},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4713},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4714},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4715},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4716},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4717},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4718},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4719},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4720},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4721},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4722},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4723},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4724},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4725},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4726},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4727},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4728},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4729},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4730}]},"emerald_ore":{"states":[{"id":4731}]},"ender_chest":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":4732},{"properties":{"facing":"north","waterlogged":"false"},"id":4733},{"properties":{"facing":"south","waterlogged":"true"},"id":4734},{"properties":{"facing":"south","waterlogged":"false"},"id":4735},{"properties":{"facing":"west","waterlogged":"true"},"id":4736},{"properties":{"facing":"west","waterlogged":"false"},"id":4737},{"properties":{"facing":"east","waterlogged":"true"},"id":4738},{"properties":{"facing":"east","waterlogged":"false"},"id":4739}]},"tripwire_hook":{"properties":{"attached":["true","false"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"attached":"true","facing":"north","powered":"true"},"id":4740},{"properties":{"attached":"true","facing":"north","powered":"false"},"id":4741},{"properties":{"attached":"true","facing":"south","powered":"true"},"id":4742},{"properties":{"attached":"true","facing":"south","powered":"false"},"id":4743},{"properties":{"attached":"true","facing":"west","powered":"true"},"id":4744},{"properties":{"attached":"true","facing":"west","powered":"false"},"id":4745},{"properties":{"attached":"true","facing":"east","powered":"true"},"id":4746},{"properties":{"attached":"true","facing":"east","powered":"false"},"id":4747},{"properties":{"attached":"false","facing":"north","powered":"true"},"id":4748},{"properties":{"attached":"false","facing":"north","powered":"false"},"id":4749},{"properties":{"attached":"false","facing":"south","powered":"true"},"id":4750},{"properties":{"attached":"false","facing":"south","powered":"false"},"id":4751},{"properties":{"attached":"false","facing":"west","powered":"true"},"id":4752},{"properties":{"attached":"false","facing":"west","powered":"false"},"id":4753},{"properties":{"attached":"false","facing":"east","powered":"true"},"id":4754},{"properties":{"attached":"false","facing":"east","powered":"false"},"id":4755}]},"tripwire":{"properties":{"attached":["true","false"],"disarmed":["true","false"],"east":["true","false"],"north":["true","false"],"powered":["true","false"],"south":["true","false"],"west":["true","false"]},"states":[{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":4756},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":4757},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":4758},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":4759},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":4760},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":4761},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":4762},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":4763},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":4764},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":4765},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":4766},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":4767},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":4768},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":4769},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":4770},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":4771},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":4772},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":4773},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":4774},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":4775},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":4776},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":4777},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":4778},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":4779},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":4780},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":4781},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":4782},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":4783},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":4784},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":4785},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":4786},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":4787},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":4788},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":4789},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":4790},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":4791},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":4792},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":4793},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":4794},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":4795},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":4796},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":4797},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":4798},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":4799},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":4800},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":4801},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":4802},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":4803},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":4804},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":4805},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":4806},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":4807},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":4808},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":4809},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":4810},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":4811},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":4812},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":4813},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":4814},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":4815},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":4816},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":4817},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":4818},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":4819},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":4820},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":4821},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":4822},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":4823},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":4824},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":4825},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":4826},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":4827},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":4828},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":4829},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":4830},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":4831},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":4832},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":4833},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":4834},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":4835},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":4836},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":4837},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":4838},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":4839},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":4840},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":4841},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":4842},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":4843},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":4844},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":4845},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":4846},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":4847},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":4848},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":4849},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":4850},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":4851},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":4852},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":4853},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":4854},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":4855},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":4856},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":4857},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":4858},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":4859},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":4860},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":4861},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":4862},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":4863},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":4864},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":4865},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":4866},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":4867},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":4868},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":4869},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":4870},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":4871},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":4872},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":4873},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":4874},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":4875},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":4876},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":4877},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":4878},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":4879},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":4880},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":4881},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":4882},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":4883}]},"emerald_block":{"states":[{"id":4884}]},"spruce_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4885},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4886},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4887},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4888},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4889},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4890},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4891},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4892},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4893},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4894},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4895},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4896},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4897},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4898},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4899},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4900},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4901},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4902},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4903},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4904},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4905},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4906},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4907},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4908},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4909},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4910},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4911},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4912},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4913},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4914},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4915},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4916},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4917},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4918},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4919},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4920},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4921},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4922},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4923},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4924},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4925},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4926},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4927},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4928},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4929},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4930},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4931},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4932},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4933},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4934},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4935},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4936},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4937},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4938},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4939},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4940},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4941},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4942},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4943},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4944},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4945},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4946},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4947},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4948},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4949},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4950},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4951},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4952},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4953},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4954},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4955},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4956},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4957},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4958},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4959},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4960},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4961},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4962},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4963},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4964}]},"birch_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4965},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4966},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4967},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4968},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4969},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4970},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4971},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4972},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4973},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4974},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4975},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4976},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4977},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4978},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4979},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4980},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4981},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4982},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4983},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4984},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4985},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4986},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4987},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4988},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4989},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4990},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4991},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4992},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4993},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4994},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4995},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4996},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4997},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4998},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4999},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5000},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5001},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5002},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5003},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5004},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5005},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5006},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5007},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5008},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5009},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5010},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5011},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5012},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5013},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5014},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5015},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5016},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5017},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5018},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5019},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5020},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5021},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5022},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5023},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5024},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5025},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5026},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5027},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5028},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5029},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5030},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5031},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5032},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5033},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5034},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5035},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5036},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5037},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5038},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5039},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5040},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5041},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5042},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5043},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5044}]},"jungle_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5045},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5046},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5047},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5048},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5049},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5050},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5051},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5052},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5053},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5054},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5055},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5056},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5057},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5058},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5059},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5060},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5061},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5062},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5063},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5064},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5065},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5066},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5067},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5068},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5069},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5070},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5071},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5072},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5073},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5074},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5075},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5076},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5077},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5078},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5079},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5080},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5081},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5082},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5083},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5084},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5085},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5086},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5087},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5088},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5089},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5090},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5091},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5092},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5093},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5094},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5095},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5096},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5097},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5098},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5099},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5100},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5101},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5102},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5103},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5104},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5105},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5106},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5107},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5108},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5109},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5110},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5111},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5112},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5113},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5114},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5115},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5116},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5117},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5118},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5119},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5120},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5121},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5122},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5123},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5124}]},"command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":5125},{"properties":{"conditional":"true","facing":"east"},"id":5126},{"properties":{"conditional":"true","facing":"south"},"id":5127},{"properties":{"conditional":"true","facing":"west"},"id":5128},{"properties":{"conditional":"true","facing":"up"},"id":5129},{"properties":{"conditional":"true","facing":"down"},"id":5130},{"properties":{"conditional":"false","facing":"north"},"id":5131},{"properties":{"conditional":"false","facing":"east"},"id":5132},{"properties":{"conditional":"false","facing":"south"},"id":5133},{"properties":{"conditional":"false","facing":"west"},"id":5134},{"properties":{"conditional":"false","facing":"up"},"id":5135},{"properties":{"conditional":"false","facing":"down"},"id":5136}]},"beacon":{"states":[{"id":5137}]},"cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5138},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5139},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5140},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5141},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5142},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5143},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5144},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5145},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5146},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5147},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5148},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5149},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5150},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5151},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5152},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5153},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5154},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5155},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5156},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5157},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5158},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5159},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5160},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5161},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5162},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5163},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5164},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5165},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5166},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5167},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5168},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5169},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5170},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5171},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5172},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5173},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5174},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5175},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5176},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5177},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5178},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5179},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5180},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5181},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5182},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5183},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5184},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5185},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5186},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5187},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5188},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5189},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5190},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5191},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5192},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5193},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5194},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5195},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5196},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5197},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5198},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5199},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5200},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5201}]},"mossy_cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5202},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5203},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5204},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5205},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5206},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5207},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5208},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5209},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5210},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5211},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5212},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5213},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5214},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5215},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5216},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5217},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5218},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5219},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5220},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5221},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5222},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5223},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5224},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5225},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5226},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5227},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5228},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5229},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5230},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5231},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5232},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5233},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5234},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5235},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5236},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5237},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5238},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5239},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5240},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5241},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5242},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5243},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5244},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5245},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5246},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5247},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5248},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5249},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5250},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5251},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5252},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5253},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5254},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5255},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5256},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5257},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5258},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5259},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5260},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5261},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5262},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5263},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5264},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5265}]},"flower_pot":{"states":[{"id":5266}]},"potted_oak_sapling":{"states":[{"id":5267}]},"potted_spruce_sapling":{"states":[{"id":5268}]},"potted_birch_sapling":{"states":[{"id":5269}]},"potted_jungle_sapling":{"states":[{"id":5270}]},"potted_acacia_sapling":{"states":[{"id":5271}]},"potted_dark_oak_sapling":{"states":[{"id":5272}]},"potted_fern":{"states":[{"id":5273}]},"potted_dandelion":{"states":[{"id":5274}]},"potted_poppy":{"states":[{"id":5275}]},"potted_blue_orchid":{"states":[{"id":5276}]},"potted_allium":{"states":[{"id":5277}]},"potted_azure_bluet":{"states":[{"id":5278}]},"potted_red_tulip":{"states":[{"id":5279}]},"potted_orange_tulip":{"states":[{"id":5280}]},"potted_white_tulip":{"states":[{"id":5281}]},"potted_pink_tulip":{"states":[{"id":5282}]},"potted_oxeye_daisy":{"states":[{"id":5283}]},"potted_red_mushroom":{"states":[{"id":5284}]},"potted_brown_mushroom":{"states":[{"id":5285}]},"potted_dead_bush":{"states":[{"id":5286}]},"potted_cactus":{"states":[{"id":5287}]},"carrots":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5288},{"properties":{"age":"1"},"id":5289},{"properties":{"age":"2"},"id":5290},{"properties":{"age":"3"},"id":5291},{"properties":{"age":"4"},"id":5292},{"properties":{"age":"5"},"id":5293},{"properties":{"age":"6"},"id":5294},{"properties":{"age":"7"},"id":5295}]},"potatoes":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5296},{"properties":{"age":"1"},"id":5297},{"properties":{"age":"2"},"id":5298},{"properties":{"age":"3"},"id":5299},{"properties":{"age":"4"},"id":5300},{"properties":{"age":"5"},"id":5301},{"properties":{"age":"6"},"id":5302},{"properties":{"age":"7"},"id":5303}]},"oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5304},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5305},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5306},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5307},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5308},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5309},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5310},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5311},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5312},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5313},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5314},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5315},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5316},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5317},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5318},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5319},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5320},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5321},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5322},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5323},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5324},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5325},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5326},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5327}]},"spruce_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5328},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5329},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5330},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5331},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5332},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5333},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5334},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5335},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5336},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5337},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5338},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5339},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5340},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5341},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5342},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5343},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5344},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5345},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5346},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5347},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5348},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5349},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5350},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5351}]},"birch_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5352},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5353},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5354},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5355},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5356},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5357},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5358},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5359},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5360},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5361},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5362},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5363},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5364},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5365},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5366},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5367},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5368},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5369},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5370},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5371},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5372},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5373},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5374},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5375}]},"jungle_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5376},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5377},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5378},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5379},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5380},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5381},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5382},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5383},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5384},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5385},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5386},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5387},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5388},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5389},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5390},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5391},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5392},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5393},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5394},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5395},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5396},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5397},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5398},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5399}]},"acacia_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5400},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5401},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5402},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5403},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5404},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5405},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5406},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5407},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5408},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5409},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5410},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5411},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5412},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5413},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5414},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5415},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5416},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5417},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5418},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5419},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5420},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5421},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5422},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5423}]},"dark_oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5424},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5425},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5426},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5427},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5428},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5429},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5430},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5431},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5432},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5433},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5434},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5435},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5436},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5437},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5438},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5439},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5440},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5441},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5442},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5443},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5444},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5445},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5446},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5447}]},"skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5448},{"properties":{"facing":"south"},"id":5449},{"properties":{"facing":"west"},"id":5450},{"properties":{"facing":"east"},"id":5451}]},"skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5452},{"properties":{"rotation":"1"},"id":5453},{"properties":{"rotation":"2"},"id":5454},{"properties":{"rotation":"3"},"id":5455},{"properties":{"rotation":"4"},"id":5456},{"properties":{"rotation":"5"},"id":5457},{"properties":{"rotation":"6"},"id":5458},{"properties":{"rotation":"7"},"id":5459},{"properties":{"rotation":"8"},"id":5460},{"properties":{"rotation":"9"},"id":5461},{"properties":{"rotation":"10"},"id":5462},{"properties":{"rotation":"11"},"id":5463},{"properties":{"rotation":"12"},"id":5464},{"properties":{"rotation":"13"},"id":5465},{"properties":{"rotation":"14"},"id":5466},{"properties":{"rotation":"15"},"id":5467}]},"wither_skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5468},{"properties":{"facing":"south"},"id":5469},{"properties":{"facing":"west"},"id":5470},{"properties":{"facing":"east"},"id":5471}]},"wither_skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5472},{"properties":{"rotation":"1"},"id":5473},{"properties":{"rotation":"2"},"id":5474},{"properties":{"rotation":"3"},"id":5475},{"properties":{"rotation":"4"},"id":5476},{"properties":{"rotation":"5"},"id":5477},{"properties":{"rotation":"6"},"id":5478},{"properties":{"rotation":"7"},"id":5479},{"properties":{"rotation":"8"},"id":5480},{"properties":{"rotation":"9"},"id":5481},{"properties":{"rotation":"10"},"id":5482},{"properties":{"rotation":"11"},"id":5483},{"properties":{"rotation":"12"},"id":5484},{"properties":{"rotation":"13"},"id":5485},{"properties":{"rotation":"14"},"id":5486},{"properties":{"rotation":"15"},"id":5487}]},"zombie_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5488},{"properties":{"facing":"south"},"id":5489},{"properties":{"facing":"west"},"id":5490},{"properties":{"facing":"east"},"id":5491}]},"zombie_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5492},{"properties":{"rotation":"1"},"id":5493},{"properties":{"rotation":"2"},"id":5494},{"properties":{"rotation":"3"},"id":5495},{"properties":{"rotation":"4"},"id":5496},{"properties":{"rotation":"5"},"id":5497},{"properties":{"rotation":"6"},"id":5498},{"properties":{"rotation":"7"},"id":5499},{"properties":{"rotation":"8"},"id":5500},{"properties":{"rotation":"9"},"id":5501},{"properties":{"rotation":"10"},"id":5502},{"properties":{"rotation":"11"},"id":5503},{"properties":{"rotation":"12"},"id":5504},{"properties":{"rotation":"13"},"id":5505},{"properties":{"rotation":"14"},"id":5506},{"properties":{"rotation":"15"},"id":5507}]},"player_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5508},{"properties":{"facing":"south"},"id":5509},{"properties":{"facing":"west"},"id":5510},{"properties":{"facing":"east"},"id":5511}]},"player_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5512},{"properties":{"rotation":"1"},"id":5513},{"properties":{"rotation":"2"},"id":5514},{"properties":{"rotation":"3"},"id":5515},{"properties":{"rotation":"4"},"id":5516},{"properties":{"rotation":"5"},"id":5517},{"properties":{"rotation":"6"},"id":5518},{"properties":{"rotation":"7"},"id":5519},{"properties":{"rotation":"8"},"id":5520},{"properties":{"rotation":"9"},"id":5521},{"properties":{"rotation":"10"},"id":5522},{"properties":{"rotation":"11"},"id":5523},{"properties":{"rotation":"12"},"id":5524},{"properties":{"rotation":"13"},"id":5525},{"properties":{"rotation":"14"},"id":5526},{"properties":{"rotation":"15"},"id":5527}]},"creeper_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5528},{"properties":{"facing":"south"},"id":5529},{"properties":{"facing":"west"},"id":5530},{"properties":{"facing":"east"},"id":5531}]},"creeper_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5532},{"properties":{"rotation":"1"},"id":5533},{"properties":{"rotation":"2"},"id":5534},{"properties":{"rotation":"3"},"id":5535},{"properties":{"rotation":"4"},"id":5536},{"properties":{"rotation":"5"},"id":5537},{"properties":{"rotation":"6"},"id":5538},{"properties":{"rotation":"7"},"id":5539},{"properties":{"rotation":"8"},"id":5540},{"properties":{"rotation":"9"},"id":5541},{"properties":{"rotation":"10"},"id":5542},{"properties":{"rotation":"11"},"id":5543},{"properties":{"rotation":"12"},"id":5544},{"properties":{"rotation":"13"},"id":5545},{"properties":{"rotation":"14"},"id":5546},{"properties":{"rotation":"15"},"id":5547}]},"dragon_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5548},{"properties":{"facing":"south"},"id":5549},{"properties":{"facing":"west"},"id":5550},{"properties":{"facing":"east"},"id":5551}]},"dragon_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5552},{"properties":{"rotation":"1"},"id":5553},{"properties":{"rotation":"2"},"id":5554},{"properties":{"rotation":"3"},"id":5555},{"properties":{"rotation":"4"},"id":5556},{"properties":{"rotation":"5"},"id":5557},{"properties":{"rotation":"6"},"id":5558},{"properties":{"rotation":"7"},"id":5559},{"properties":{"rotation":"8"},"id":5560},{"properties":{"rotation":"9"},"id":5561},{"properties":{"rotation":"10"},"id":5562},{"properties":{"rotation":"11"},"id":5563},{"properties":{"rotation":"12"},"id":5564},{"properties":{"rotation":"13"},"id":5565},{"properties":{"rotation":"14"},"id":5566},{"properties":{"rotation":"15"},"id":5567}]},"anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5568},{"properties":{"facing":"south"},"id":5569},{"properties":{"facing":"west"},"id":5570},{"properties":{"facing":"east"},"id":5571}]},"chipped_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5572},{"properties":{"facing":"south"},"id":5573},{"properties":{"facing":"west"},"id":5574},{"properties":{"facing":"east"},"id":5575}]},"damaged_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5576},{"properties":{"facing":"south"},"id":5577},{"properties":{"facing":"west"},"id":5578},{"properties":{"facing":"east"},"id":5579}]},"trapped_chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":5580},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":5581},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":5582},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":5583},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":5584},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":5585},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":5586},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":5587},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":5588},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":5589},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":5590},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":5591},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":5592},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":5593},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":5594},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":5595},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":5596},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":5597},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":5598},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":5599},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":5600},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":5601},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":5602},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":5603}]},"light_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":5604},{"properties":{"power":"1"},"id":5605},{"properties":{"power":"2"},"id":5606},{"properties":{"power":"3"},"id":5607},{"properties":{"power":"4"},"id":5608},{"properties":{"power":"5"},"id":5609},{"properties":{"power":"6"},"id":5610},{"properties":{"power":"7"},"id":5611},{"properties":{"power":"8"},"id":5612},{"properties":{"power":"9"},"id":5613},{"properties":{"power":"10"},"id":5614},{"properties":{"power":"11"},"id":5615},{"properties":{"power":"12"},"id":5616},{"properties":{"power":"13"},"id":5617},{"properties":{"power":"14"},"id":5618},{"properties":{"power":"15"},"id":5619}]},"heavy_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":5620},{"properties":{"power":"1"},"id":5621},{"properties":{"power":"2"},"id":5622},{"properties":{"power":"3"},"id":5623},{"properties":{"power":"4"},"id":5624},{"properties":{"power":"5"},"id":5625},{"properties":{"power":"6"},"id":5626},{"properties":{"power":"7"},"id":5627},{"properties":{"power":"8"},"id":5628},{"properties":{"power":"9"},"id":5629},{"properties":{"power":"10"},"id":5630},{"properties":{"power":"11"},"id":5631},{"properties":{"power":"12"},"id":5632},{"properties":{"power":"13"},"id":5633},{"properties":{"power":"14"},"id":5634},{"properties":{"power":"15"},"id":5635}]},"comparator":{"properties":{"facing":["north","south","west","east"],"mode":["compare","subtract"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","mode":"compare","powered":"true"},"id":5636},{"properties":{"facing":"north","mode":"compare","powered":"false"},"id":5637},{"properties":{"facing":"north","mode":"subtract","powered":"true"},"id":5638},{"properties":{"facing":"north","mode":"subtract","powered":"false"},"id":5639},{"properties":{"facing":"south","mode":"compare","powered":"true"},"id":5640},{"properties":{"facing":"south","mode":"compare","powered":"false"},"id":5641},{"properties":{"facing":"south","mode":"subtract","powered":"true"},"id":5642},{"properties":{"facing":"south","mode":"subtract","powered":"false"},"id":5643},{"properties":{"facing":"west","mode":"compare","powered":"true"},"id":5644},{"properties":{"facing":"west","mode":"compare","powered":"false"},"id":5645},{"properties":{"facing":"west","mode":"subtract","powered":"true"},"id":5646},{"properties":{"facing":"west","mode":"subtract","powered":"false"},"id":5647},{"properties":{"facing":"east","mode":"compare","powered":"true"},"id":5648},{"properties":{"facing":"east","mode":"compare","powered":"false"},"id":5649},{"properties":{"facing":"east","mode":"subtract","powered":"true"},"id":5650},{"properties":{"facing":"east","mode":"subtract","powered":"false"},"id":5651}]},"daylight_detector":{"properties":{"inverted":["true","false"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"inverted":"true","power":"0"},"id":5652},{"properties":{"inverted":"true","power":"1"},"id":5653},{"properties":{"inverted":"true","power":"2"},"id":5654},{"properties":{"inverted":"true","power":"3"},"id":5655},{"properties":{"inverted":"true","power":"4"},"id":5656},{"properties":{"inverted":"true","power":"5"},"id":5657},{"properties":{"inverted":"true","power":"6"},"id":5658},{"properties":{"inverted":"true","power":"7"},"id":5659},{"properties":{"inverted":"true","power":"8"},"id":5660},{"properties":{"inverted":"true","power":"9"},"id":5661},{"properties":{"inverted":"true","power":"10"},"id":5662},{"properties":{"inverted":"true","power":"11"},"id":5663},{"properties":{"inverted":"true","power":"12"},"id":5664},{"properties":{"inverted":"true","power":"13"},"id":5665},{"properties":{"inverted":"true","power":"14"},"id":5666},{"properties":{"inverted":"true","power":"15"},"id":5667},{"properties":{"inverted":"false","power":"0"},"id":5668},{"properties":{"inverted":"false","power":"1"},"id":5669},{"properties":{"inverted":"false","power":"2"},"id":5670},{"properties":{"inverted":"false","power":"3"},"id":5671},{"properties":{"inverted":"false","power":"4"},"id":5672},{"properties":{"inverted":"false","power":"5"},"id":5673},{"properties":{"inverted":"false","power":"6"},"id":5674},{"properties":{"inverted":"false","power":"7"},"id":5675},{"properties":{"inverted":"false","power":"8"},"id":5676},{"properties":{"inverted":"false","power":"9"},"id":5677},{"properties":{"inverted":"false","power":"10"},"id":5678},{"properties":{"inverted":"false","power":"11"},"id":5679},{"properties":{"inverted":"false","power":"12"},"id":5680},{"properties":{"inverted":"false","power":"13"},"id":5681},{"properties":{"inverted":"false","power":"14"},"id":5682},{"properties":{"inverted":"false","power":"15"},"id":5683}]},"redstone_block":{"states":[{"id":5684}]},"nether_quartz_ore":{"states":[{"id":5685}]},"hopper":{"properties":{"enabled":["true","false"],"facing":["down","north","south","west","east"]},"states":[{"properties":{"enabled":"true","facing":"down"},"id":5686},{"properties":{"enabled":"true","facing":"north"},"id":5687},{"properties":{"enabled":"true","facing":"south"},"id":5688},{"properties":{"enabled":"true","facing":"west"},"id":5689},{"properties":{"enabled":"true","facing":"east"},"id":5690},{"properties":{"enabled":"false","facing":"down"},"id":5691},{"properties":{"enabled":"false","facing":"north"},"id":5692},{"properties":{"enabled":"false","facing":"south"},"id":5693},{"properties":{"enabled":"false","facing":"west"},"id":5694},{"properties":{"enabled":"false","facing":"east"},"id":5695}]},"quartz_block":{"states":[{"id":5696}]},"chiseled_quartz_block":{"states":[{"id":5697}]},"quartz_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":5698},{"properties":{"axis":"y"},"id":5699},{"properties":{"axis":"z"},"id":5700}]},"quartz_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5701},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5702},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5703},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5704},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5705},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5706},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5707},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5708},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5709},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5710},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5711},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5712},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5713},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5714},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5715},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5716},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5717},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5718},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5719},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5720},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5721},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5722},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5723},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5724},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5725},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5726},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5727},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5728},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5729},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5730},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5731},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5732},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5733},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5734},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5735},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5736},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5737},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5738},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5739},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5740},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5741},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5742},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5743},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5744},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5745},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5746},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5747},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5748},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5749},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5750},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5751},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5752},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5753},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5754},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5755},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5756},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5757},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5758},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5759},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5760},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5761},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5762},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5763},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5764},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5765},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5766},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5767},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5768},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5769},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5770},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5771},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5772},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5773},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5774},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5775},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5776},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5777},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5778},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5779},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5780}]},"activator_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":5781},{"properties":{"powered":"true","shape":"east_west"},"id":5782},{"properties":{"powered":"true","shape":"ascending_east"},"id":5783},{"properties":{"powered":"true","shape":"ascending_west"},"id":5784},{"properties":{"powered":"true","shape":"ascending_north"},"id":5785},{"properties":{"powered":"true","shape":"ascending_south"},"id":5786},{"properties":{"powered":"false","shape":"north_south"},"id":5787},{"properties":{"powered":"false","shape":"east_west"},"id":5788},{"properties":{"powered":"false","shape":"ascending_east"},"id":5789},{"properties":{"powered":"false","shape":"ascending_west"},"id":5790},{"properties":{"powered":"false","shape":"ascending_north"},"id":5791},{"properties":{"powered":"false","shape":"ascending_south"},"id":5792}]},"dropper":{"properties":{"facing":["north","east","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":5793},{"properties":{"facing":"north","triggered":"false"},"id":5794},{"properties":{"facing":"east","triggered":"true"},"id":5795},{"properties":{"facing":"east","triggered":"false"},"id":5796},{"properties":{"facing":"south","triggered":"true"},"id":5797},{"properties":{"facing":"south","triggered":"false"},"id":5798},{"properties":{"facing":"west","triggered":"true"},"id":5799},{"properties":{"facing":"west","triggered":"false"},"id":5800},{"properties":{"facing":"up","triggered":"true"},"id":5801},{"properties":{"facing":"up","triggered":"false"},"id":5802},{"properties":{"facing":"down","triggered":"true"},"id":5803},{"properties":{"facing":"down","triggered":"false"},"id":5804}]},"white_terracotta":{"states":[{"id":5805}]},"orange_terracotta":{"states":[{"id":5806}]},"magenta_terracotta":{"states":[{"id":5807}]},"light_blue_terracotta":{"states":[{"id":5808}]},"yellow_terracotta":{"states":[{"id":5809}]},"lime_terracotta":{"states":[{"id":5810}]},"pink_terracotta":{"states":[{"id":5811}]},"gray_terracotta":{"states":[{"id":5812}]},"light_gray_terracotta":{"states":[{"id":5813}]},"cyan_terracotta":{"states":[{"id":5814}]},"purple_terracotta":{"states":[{"id":5815}]},"blue_terracotta":{"states":[{"id":5816}]},"brown_terracotta":{"states":[{"id":5817}]},"green_terracotta":{"states":[{"id":5818}]},"red_terracotta":{"states":[{"id":5819}]},"black_terracotta":{"states":[{"id":5820}]},"white_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5821},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5822},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5823},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5824},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5825},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5826},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5827},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5828},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5829},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5830},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5831},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5832},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5833},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5834},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5835},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5836},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5837},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5838},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5839},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5840},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5841},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5842},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5843},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5844},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5845},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5846},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5847},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5848},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5849},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5850},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5851},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5852}]},"orange_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5853},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5854},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5855},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5856},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5857},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5858},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5859},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5860},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5861},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5862},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5863},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5864},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5865},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5866},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5867},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5868},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5869},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5870},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5871},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5872},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5873},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5874},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5875},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5876},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5877},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5878},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5879},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5880},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5881},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5882},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5883},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5884}]},"magenta_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5885},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5886},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5887},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5888},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5889},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5890},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5891},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5892},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5893},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5894},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5895},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5896},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5897},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5898},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5899},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5900},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5901},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5902},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5903},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5904},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5905},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5906},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5907},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5908},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5909},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5910},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5911},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5912},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5913},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5914},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5915},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5916}]},"light_blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5917},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5918},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5919},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5920},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5921},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5922},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5923},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5924},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5925},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5926},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5927},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5928},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5929},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5930},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5931},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5932},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5933},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5934},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5935},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5936},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5937},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5938},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5939},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5940},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5941},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5942},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5943},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5944},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5945},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5946},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5947},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5948}]},"yellow_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5949},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5950},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5951},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5952},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5953},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5954},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5955},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5956},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5957},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5958},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5959},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5960},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5961},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5962},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5963},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5964},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5965},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5966},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5967},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5968},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5969},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5970},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5971},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5972},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5973},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5974},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5975},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5976},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5977},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5978},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5979},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5980}]},"lime_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5981},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5982},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5983},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5984},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5985},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5986},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5987},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5988},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5989},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5990},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5991},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5992},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5993},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5994},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5995},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5996},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5997},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5998},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5999},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6000},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6001},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6002},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6003},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6004},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6005},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6006},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6007},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6008},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6009},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6010},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6011},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6012}]},"pink_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6013},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6014},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6015},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6016},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6017},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6018},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6019},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6020},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6021},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6022},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6023},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6024},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6025},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6026},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6027},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6028},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6029},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6030},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6031},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6032},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6033},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6034},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6035},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6036},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6037},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6038},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6039},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6040},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6041},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6042},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6043},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6044}]},"gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6045},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6046},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6047},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6048},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6049},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6050},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6051},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6052},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6053},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6054},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6055},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6056},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6057},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6058},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6059},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6060},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6061},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6062},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6063},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6064},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6065},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6066},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6067},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6068},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6069},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6070},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6071},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6072},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6073},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6074},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6075},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6076}]},"light_gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6077},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6078},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6079},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6080},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6081},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6082},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6083},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6084},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6085},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6086},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6087},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6088},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6089},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6090},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6091},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6092},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6093},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6094},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6095},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6096},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6097},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6098},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6099},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6100},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6101},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6102},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6103},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6104},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6105},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6106},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6107},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6108}]},"cyan_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6109},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6110},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6111},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6112},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6113},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6114},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6115},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6116},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6117},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6118},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6119},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6120},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6121},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6122},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6123},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6124},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6125},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6126},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6127},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6128},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6129},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6130},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6131},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6132},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6133},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6134},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6135},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6136},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6137},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6138},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6139},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6140}]},"purple_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6141},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6142},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6143},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6144},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6145},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6146},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6147},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6148},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6149},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6150},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6151},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6152},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6153},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6154},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6155},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6156},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6157},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6158},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6159},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6160},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6161},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6162},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6163},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6164},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6165},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6166},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6167},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6168},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6169},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6170},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6171},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6172}]},"blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6173},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6174},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6175},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6176},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6177},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6178},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6179},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6180},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6181},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6182},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6183},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6184},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6185},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6186},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6187},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6188},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6189},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6190},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6191},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6192},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6193},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6194},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6195},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6196},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6197},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6198},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6199},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6200},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6201},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6202},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6203},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6204}]},"brown_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6205},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6206},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6207},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6208},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6209},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6210},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6211},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6212},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6213},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6214},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6215},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6216},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6217},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6218},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6219},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6220},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6221},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6222},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6223},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6224},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6225},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6226},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6227},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6228},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6229},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6230},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6231},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6232},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6233},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6234},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6235},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6236}]},"green_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6237},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6238},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6239},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6240},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6241},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6242},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6243},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6244},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6245},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6246},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6247},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6248},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6249},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6250},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6251},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6252},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6253},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6254},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6255},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6256},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6257},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6258},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6259},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6260},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6261},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6262},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6263},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6264},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6265},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6266},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6267},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6268}]},"red_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6269},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6270},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6271},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6272},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6273},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6274},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6275},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6276},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6277},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6278},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6279},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6280},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6281},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6282},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6283},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6284},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6285},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6286},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6287},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6288},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6289},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6290},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6291},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6292},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6293},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6294},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6295},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6296},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6297},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6298},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6299},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6300}]},"black_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6301},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6302},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6303},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6304},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6305},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6306},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6307},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6308},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6309},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6310},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6311},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6312},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6313},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6314},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6315},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6316},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6317},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6318},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6319},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6320},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6321},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6322},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6323},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6324},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6325},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6326},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6327},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6328},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6329},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6330},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6331},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6332}]},"acacia_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6333},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6334},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6335},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6336},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6337},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6338},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6339},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6340},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6341},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6342},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6343},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6344},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6345},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6346},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6347},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6348},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6349},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6350},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6351},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6352},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6353},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6354},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6355},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6356},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6357},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6358},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6359},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6360},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6361},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6362},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6363},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6364},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6365},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6366},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6367},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6368},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6369},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6370},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6371},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6372},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6373},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6374},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6375},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6376},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6377},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6378},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6379},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6380},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6381},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6382},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6383},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6384},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6385},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6386},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6387},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6388},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6389},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6390},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6391},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6392},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6393},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6394},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6395},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6396},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6397},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6398},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6399},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6400},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6401},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6402},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6403},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6404},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6405},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6406},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6407},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6408},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6409},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6410},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6411},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6412}]},"dark_oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6413},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6414},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6415},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6416},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6417},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6418},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6419},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6420},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6421},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6422},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6423},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6424},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6425},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6426},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6427},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6428},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6429},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6430},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6431},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6432},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6433},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6434},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6435},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6436},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6437},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6438},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6439},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6440},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6441},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6442},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6443},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6444},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6445},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6446},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6447},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6448},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6449},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6450},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6451},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6452},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6453},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6454},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6455},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6456},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6457},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6458},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6459},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6460},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6461},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6462},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6463},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6464},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6465},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6466},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6467},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6468},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6469},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6470},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6471},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6472},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6473},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6474},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6475},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6476},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6477},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6478},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6479},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6480},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6481},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6482},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6483},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6484},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6485},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6486},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6487},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6488},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6489},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6490},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6491},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6492}]},"slime_block":{"states":[{"id":6493}]},"barrier":{"states":[{"id":6494}]},"iron_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":6495},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":6496},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":6497},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":6498},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":6499},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":6500},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":6501},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":6502},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":6503},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":6504},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":6505},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":6506},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":6507},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":6508},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":6509},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":6510},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":6511},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":6512},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":6513},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":6514},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":6515},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":6516},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":6517},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":6518},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":6519},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":6520},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":6521},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":6522},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":6523},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":6524},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":6525},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":6526},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":6527},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":6528},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":6529},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":6530},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":6531},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":6532},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":6533},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":6534},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":6535},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":6536},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":6537},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":6538},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":6539},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":6540},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":6541},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":6542},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":6543},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":6544},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":6545},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":6546},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":6547},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":6548},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":6549},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":6550},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":6551},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":6552},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":6553},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":6554},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":6555},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":6556},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":6557},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":6558}]},"prismarine":{"states":[{"id":6559}]},"prismarine_bricks":{"states":[{"id":6560}]},"dark_prismarine":{"states":[{"id":6561}]},"prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6562},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6563},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6564},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6565},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6566},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6567},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6568},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6569},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6570},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6571},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6572},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6573},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6574},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6575},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6576},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6577},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6578},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6579},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6580},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6581},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6582},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6583},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6584},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6585},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6586},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6587},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6588},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6589},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6590},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6591},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6592},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6593},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6594},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6595},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6596},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6597},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6598},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6599},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6600},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6601},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6602},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6603},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6604},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6605},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6606},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6607},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6608},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6609},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6610},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6611},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6612},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6613},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6614},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6615},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6616},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6617},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6618},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6619},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6620},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6621},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6622},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6623},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6624},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6625},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6626},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6627},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6628},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6629},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6630},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6631},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6632},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6633},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6634},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6635},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6636},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6637},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6638},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6639},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6640},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6641}]},"prismarine_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6642},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6643},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6644},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6645},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6646},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6647},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6648},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6649},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6650},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6651},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6652},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6653},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6654},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6655},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6656},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6657},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6658},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6659},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6660},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6661},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6662},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6663},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6664},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6665},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6666},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6667},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6668},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6669},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6670},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6671},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6672},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6673},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6674},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6675},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6676},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6677},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6678},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6679},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6680},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6681},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6682},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6683},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6684},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6685},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6686},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6687},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6688},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6689},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6690},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6691},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6692},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6693},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6694},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6695},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6696},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6697},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6698},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6699},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6700},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6701},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6702},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6703},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6704},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6705},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6706},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6707},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6708},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6709},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6710},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6711},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6712},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6713},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6714},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6715},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6716},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6717},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6718},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6719},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6720},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6721}]},"dark_prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6722},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6723},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6724},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6725},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6726},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6727},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6728},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6729},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6730},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6731},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6732},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6733},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6734},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6735},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6736},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6737},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6738},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6739},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6740},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6741},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6742},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6743},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6744},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6745},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6746},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6747},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6748},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6749},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6750},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6751},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6752},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6753},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6754},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6755},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6756},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6757},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6758},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6759},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6760},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6761},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6762},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6763},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6764},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6765},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6766},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6767},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6768},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6769},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6770},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6771},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6772},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6773},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6774},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6775},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6776},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6777},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6778},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6779},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6780},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6781},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6782},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6783},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6784},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6785},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6786},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6787},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6788},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6789},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6790},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6791},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6792},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6793},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6794},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6795},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6796},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6797},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6798},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6799},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6800},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6801}]},"prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":6802},{"properties":{"type":"top","waterlogged":"false"},"id":6803},{"properties":{"type":"bottom","waterlogged":"true"},"id":6804},{"properties":{"type":"bottom","waterlogged":"false"},"id":6805},{"properties":{"type":"double","waterlogged":"true"},"id":6806},{"properties":{"type":"double","waterlogged":"false"},"id":6807}]},"prismarine_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":6808},{"properties":{"type":"top","waterlogged":"false"},"id":6809},{"properties":{"type":"bottom","waterlogged":"true"},"id":6810},{"properties":{"type":"bottom","waterlogged":"false"},"id":6811},{"properties":{"type":"double","waterlogged":"true"},"id":6812},{"properties":{"type":"double","waterlogged":"false"},"id":6813}]},"dark_prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":6814},{"properties":{"type":"top","waterlogged":"false"},"id":6815},{"properties":{"type":"bottom","waterlogged":"true"},"id":6816},{"properties":{"type":"bottom","waterlogged":"false"},"id":6817},{"properties":{"type":"double","waterlogged":"true"},"id":6818},{"properties":{"type":"double","waterlogged":"false"},"id":6819}]},"sea_lantern":{"states":[{"id":6820}]},"hay_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":6821},{"properties":{"axis":"y"},"id":6822},{"properties":{"axis":"z"},"id":6823}]},"white_carpet":{"states":[{"id":6824}]},"orange_carpet":{"states":[{"id":6825}]},"magenta_carpet":{"states":[{"id":6826}]},"light_blue_carpet":{"states":[{"id":6827}]},"yellow_carpet":{"states":[{"id":6828}]},"lime_carpet":{"states":[{"id":6829}]},"pink_carpet":{"states":[{"id":6830}]},"gray_carpet":{"states":[{"id":6831}]},"light_gray_carpet":{"states":[{"id":6832}]},"cyan_carpet":{"states":[{"id":6833}]},"purple_carpet":{"states":[{"id":6834}]},"blue_carpet":{"states":[{"id":6835}]},"brown_carpet":{"states":[{"id":6836}]},"green_carpet":{"states":[{"id":6837}]},"red_carpet":{"states":[{"id":6838}]},"black_carpet":{"states":[{"id":6839}]},"terracotta":{"states":[{"id":6840}]},"coal_block":{"states":[{"id":6841}]},"packed_ice":{"states":[{"id":6842}]},"sunflower":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6843},{"properties":{"half":"lower"},"id":6844}]},"lilac":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6845},{"properties":{"half":"lower"},"id":6846}]},"rose_bush":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6847},{"properties":{"half":"lower"},"id":6848}]},"peony":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6849},{"properties":{"half":"lower"},"id":6850}]},"tall_grass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6851},{"properties":{"half":"lower"},"id":6852}]},"large_fern":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":6853},{"properties":{"half":"lower"},"id":6854}]},"white_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6855},{"properties":{"rotation":"1"},"id":6856},{"properties":{"rotation":"2"},"id":6857},{"properties":{"rotation":"3"},"id":6858},{"properties":{"rotation":"4"},"id":6859},{"properties":{"rotation":"5"},"id":6860},{"properties":{"rotation":"6"},"id":6861},{"properties":{"rotation":"7"},"id":6862},{"properties":{"rotation":"8"},"id":6863},{"properties":{"rotation":"9"},"id":6864},{"properties":{"rotation":"10"},"id":6865},{"properties":{"rotation":"11"},"id":6866},{"properties":{"rotation":"12"},"id":6867},{"properties":{"rotation":"13"},"id":6868},{"properties":{"rotation":"14"},"id":6869},{"properties":{"rotation":"15"},"id":6870}]},"orange_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6871},{"properties":{"rotation":"1"},"id":6872},{"properties":{"rotation":"2"},"id":6873},{"properties":{"rotation":"3"},"id":6874},{"properties":{"rotation":"4"},"id":6875},{"properties":{"rotation":"5"},"id":6876},{"properties":{"rotation":"6"},"id":6877},{"properties":{"rotation":"7"},"id":6878},{"properties":{"rotation":"8"},"id":6879},{"properties":{"rotation":"9"},"id":6880},{"properties":{"rotation":"10"},"id":6881},{"properties":{"rotation":"11"},"id":6882},{"properties":{"rotation":"12"},"id":6883},{"properties":{"rotation":"13"},"id":6884},{"properties":{"rotation":"14"},"id":6885},{"properties":{"rotation":"15"},"id":6886}]},"magenta_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6887},{"properties":{"rotation":"1"},"id":6888},{"properties":{"rotation":"2"},"id":6889},{"properties":{"rotation":"3"},"id":6890},{"properties":{"rotation":"4"},"id":6891},{"properties":{"rotation":"5"},"id":6892},{"properties":{"rotation":"6"},"id":6893},{"properties":{"rotation":"7"},"id":6894},{"properties":{"rotation":"8"},"id":6895},{"properties":{"rotation":"9"},"id":6896},{"properties":{"rotation":"10"},"id":6897},{"properties":{"rotation":"11"},"id":6898},{"properties":{"rotation":"12"},"id":6899},{"properties":{"rotation":"13"},"id":6900},{"properties":{"rotation":"14"},"id":6901},{"properties":{"rotation":"15"},"id":6902}]},"light_blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6903},{"properties":{"rotation":"1"},"id":6904},{"properties":{"rotation":"2"},"id":6905},{"properties":{"rotation":"3"},"id":6906},{"properties":{"rotation":"4"},"id":6907},{"properties":{"rotation":"5"},"id":6908},{"properties":{"rotation":"6"},"id":6909},{"properties":{"rotation":"7"},"id":6910},{"properties":{"rotation":"8"},"id":6911},{"properties":{"rotation":"9"},"id":6912},{"properties":{"rotation":"10"},"id":6913},{"properties":{"rotation":"11"},"id":6914},{"properties":{"rotation":"12"},"id":6915},{"properties":{"rotation":"13"},"id":6916},{"properties":{"rotation":"14"},"id":6917},{"properties":{"rotation":"15"},"id":6918}]},"yellow_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6919},{"properties":{"rotation":"1"},"id":6920},{"properties":{"rotation":"2"},"id":6921},{"properties":{"rotation":"3"},"id":6922},{"properties":{"rotation":"4"},"id":6923},{"properties":{"rotation":"5"},"id":6924},{"properties":{"rotation":"6"},"id":6925},{"properties":{"rotation":"7"},"id":6926},{"properties":{"rotation":"8"},"id":6927},{"properties":{"rotation":"9"},"id":6928},{"properties":{"rotation":"10"},"id":6929},{"properties":{"rotation":"11"},"id":6930},{"properties":{"rotation":"12"},"id":6931},{"properties":{"rotation":"13"},"id":6932},{"properties":{"rotation":"14"},"id":6933},{"properties":{"rotation":"15"},"id":6934}]},"lime_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6935},{"properties":{"rotation":"1"},"id":6936},{"properties":{"rotation":"2"},"id":6937},{"properties":{"rotation":"3"},"id":6938},{"properties":{"rotation":"4"},"id":6939},{"properties":{"rotation":"5"},"id":6940},{"properties":{"rotation":"6"},"id":6941},{"properties":{"rotation":"7"},"id":6942},{"properties":{"rotation":"8"},"id":6943},{"properties":{"rotation":"9"},"id":6944},{"properties":{"rotation":"10"},"id":6945},{"properties":{"rotation":"11"},"id":6946},{"properties":{"rotation":"12"},"id":6947},{"properties":{"rotation":"13"},"id":6948},{"properties":{"rotation":"14"},"id":6949},{"properties":{"rotation":"15"},"id":6950}]},"pink_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6951},{"properties":{"rotation":"1"},"id":6952},{"properties":{"rotation":"2"},"id":6953},{"properties":{"rotation":"3"},"id":6954},{"properties":{"rotation":"4"},"id":6955},{"properties":{"rotation":"5"},"id":6956},{"properties":{"rotation":"6"},"id":6957},{"properties":{"rotation":"7"},"id":6958},{"properties":{"rotation":"8"},"id":6959},{"properties":{"rotation":"9"},"id":6960},{"properties":{"rotation":"10"},"id":6961},{"properties":{"rotation":"11"},"id":6962},{"properties":{"rotation":"12"},"id":6963},{"properties":{"rotation":"13"},"id":6964},{"properties":{"rotation":"14"},"id":6965},{"properties":{"rotation":"15"},"id":6966}]},"gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6967},{"properties":{"rotation":"1"},"id":6968},{"properties":{"rotation":"2"},"id":6969},{"properties":{"rotation":"3"},"id":6970},{"properties":{"rotation":"4"},"id":6971},{"properties":{"rotation":"5"},"id":6972},{"properties":{"rotation":"6"},"id":6973},{"properties":{"rotation":"7"},"id":6974},{"properties":{"rotation":"8"},"id":6975},{"properties":{"rotation":"9"},"id":6976},{"properties":{"rotation":"10"},"id":6977},{"properties":{"rotation":"11"},"id":6978},{"properties":{"rotation":"12"},"id":6979},{"properties":{"rotation":"13"},"id":6980},{"properties":{"rotation":"14"},"id":6981},{"properties":{"rotation":"15"},"id":6982}]},"light_gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6983},{"properties":{"rotation":"1"},"id":6984},{"properties":{"rotation":"2"},"id":6985},{"properties":{"rotation":"3"},"id":6986},{"properties":{"rotation":"4"},"id":6987},{"properties":{"rotation":"5"},"id":6988},{"properties":{"rotation":"6"},"id":6989},{"properties":{"rotation":"7"},"id":6990},{"properties":{"rotation":"8"},"id":6991},{"properties":{"rotation":"9"},"id":6992},{"properties":{"rotation":"10"},"id":6993},{"properties":{"rotation":"11"},"id":6994},{"properties":{"rotation":"12"},"id":6995},{"properties":{"rotation":"13"},"id":6996},{"properties":{"rotation":"14"},"id":6997},{"properties":{"rotation":"15"},"id":6998}]},"cyan_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6999},{"properties":{"rotation":"1"},"id":7000},{"properties":{"rotation":"2"},"id":7001},{"properties":{"rotation":"3"},"id":7002},{"properties":{"rotation":"4"},"id":7003},{"properties":{"rotation":"5"},"id":7004},{"properties":{"rotation":"6"},"id":7005},{"properties":{"rotation":"7"},"id":7006},{"properties":{"rotation":"8"},"id":7007},{"properties":{"rotation":"9"},"id":7008},{"properties":{"rotation":"10"},"id":7009},{"properties":{"rotation":"11"},"id":7010},{"properties":{"rotation":"12"},"id":7011},{"properties":{"rotation":"13"},"id":7012},{"properties":{"rotation":"14"},"id":7013},{"properties":{"rotation":"15"},"id":7014}]},"purple_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7015},{"properties":{"rotation":"1"},"id":7016},{"properties":{"rotation":"2"},"id":7017},{"properties":{"rotation":"3"},"id":7018},{"properties":{"rotation":"4"},"id":7019},{"properties":{"rotation":"5"},"id":7020},{"properties":{"rotation":"6"},"id":7021},{"properties":{"rotation":"7"},"id":7022},{"properties":{"rotation":"8"},"id":7023},{"properties":{"rotation":"9"},"id":7024},{"properties":{"rotation":"10"},"id":7025},{"properties":{"rotation":"11"},"id":7026},{"properties":{"rotation":"12"},"id":7027},{"properties":{"rotation":"13"},"id":7028},{"properties":{"rotation":"14"},"id":7029},{"properties":{"rotation":"15"},"id":7030}]},"blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7031},{"properties":{"rotation":"1"},"id":7032},{"properties":{"rotation":"2"},"id":7033},{"properties":{"rotation":"3"},"id":7034},{"properties":{"rotation":"4"},"id":7035},{"properties":{"rotation":"5"},"id":7036},{"properties":{"rotation":"6"},"id":7037},{"properties":{"rotation":"7"},"id":7038},{"properties":{"rotation":"8"},"id":7039},{"properties":{"rotation":"9"},"id":7040},{"properties":{"rotation":"10"},"id":7041},{"properties":{"rotation":"11"},"id":7042},{"properties":{"rotation":"12"},"id":7043},{"properties":{"rotation":"13"},"id":7044},{"properties":{"rotation":"14"},"id":7045},{"properties":{"rotation":"15"},"id":7046}]},"brown_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7047},{"properties":{"rotation":"1"},"id":7048},{"properties":{"rotation":"2"},"id":7049},{"properties":{"rotation":"3"},"id":7050},{"properties":{"rotation":"4"},"id":7051},{"properties":{"rotation":"5"},"id":7052},{"properties":{"rotation":"6"},"id":7053},{"properties":{"rotation":"7"},"id":7054},{"properties":{"rotation":"8"},"id":7055},{"properties":{"rotation":"9"},"id":7056},{"properties":{"rotation":"10"},"id":7057},{"properties":{"rotation":"11"},"id":7058},{"properties":{"rotation":"12"},"id":7059},{"properties":{"rotation":"13"},"id":7060},{"properties":{"rotation":"14"},"id":7061},{"properties":{"rotation":"15"},"id":7062}]},"green_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7063},{"properties":{"rotation":"1"},"id":7064},{"properties":{"rotation":"2"},"id":7065},{"properties":{"rotation":"3"},"id":7066},{"properties":{"rotation":"4"},"id":7067},{"properties":{"rotation":"5"},"id":7068},{"properties":{"rotation":"6"},"id":7069},{"properties":{"rotation":"7"},"id":7070},{"properties":{"rotation":"8"},"id":7071},{"properties":{"rotation":"9"},"id":7072},{"properties":{"rotation":"10"},"id":7073},{"properties":{"rotation":"11"},"id":7074},{"properties":{"rotation":"12"},"id":7075},{"properties":{"rotation":"13"},"id":7076},{"properties":{"rotation":"14"},"id":7077},{"properties":{"rotation":"15"},"id":7078}]},"red_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7079},{"properties":{"rotation":"1"},"id":7080},{"properties":{"rotation":"2"},"id":7081},{"properties":{"rotation":"3"},"id":7082},{"properties":{"rotation":"4"},"id":7083},{"properties":{"rotation":"5"},"id":7084},{"properties":{"rotation":"6"},"id":7085},{"properties":{"rotation":"7"},"id":7086},{"properties":{"rotation":"8"},"id":7087},{"properties":{"rotation":"9"},"id":7088},{"properties":{"rotation":"10"},"id":7089},{"properties":{"rotation":"11"},"id":7090},{"properties":{"rotation":"12"},"id":7091},{"properties":{"rotation":"13"},"id":7092},{"properties":{"rotation":"14"},"id":7093},{"properties":{"rotation":"15"},"id":7094}]},"black_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7095},{"properties":{"rotation":"1"},"id":7096},{"properties":{"rotation":"2"},"id":7097},{"properties":{"rotation":"3"},"id":7098},{"properties":{"rotation":"4"},"id":7099},{"properties":{"rotation":"5"},"id":7100},{"properties":{"rotation":"6"},"id":7101},{"properties":{"rotation":"7"},"id":7102},{"properties":{"rotation":"8"},"id":7103},{"properties":{"rotation":"9"},"id":7104},{"properties":{"rotation":"10"},"id":7105},{"properties":{"rotation":"11"},"id":7106},{"properties":{"rotation":"12"},"id":7107},{"properties":{"rotation":"13"},"id":7108},{"properties":{"rotation":"14"},"id":7109},{"properties":{"rotation":"15"},"id":7110}]},"white_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7111},{"properties":{"facing":"south"},"id":7112},{"properties":{"facing":"west"},"id":7113},{"properties":{"facing":"east"},"id":7114}]},"orange_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7115},{"properties":{"facing":"south"},"id":7116},{"properties":{"facing":"west"},"id":7117},{"properties":{"facing":"east"},"id":7118}]},"magenta_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7119},{"properties":{"facing":"south"},"id":7120},{"properties":{"facing":"west"},"id":7121},{"properties":{"facing":"east"},"id":7122}]},"light_blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7123},{"properties":{"facing":"south"},"id":7124},{"properties":{"facing":"west"},"id":7125},{"properties":{"facing":"east"},"id":7126}]},"yellow_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7127},{"properties":{"facing":"south"},"id":7128},{"properties":{"facing":"west"},"id":7129},{"properties":{"facing":"east"},"id":7130}]},"lime_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7131},{"properties":{"facing":"south"},"id":7132},{"properties":{"facing":"west"},"id":7133},{"properties":{"facing":"east"},"id":7134}]},"pink_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7135},{"properties":{"facing":"south"},"id":7136},{"properties":{"facing":"west"},"id":7137},{"properties":{"facing":"east"},"id":7138}]},"gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7139},{"properties":{"facing":"south"},"id":7140},{"properties":{"facing":"west"},"id":7141},{"properties":{"facing":"east"},"id":7142}]},"light_gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7143},{"properties":{"facing":"south"},"id":7144},{"properties":{"facing":"west"},"id":7145},{"properties":{"facing":"east"},"id":7146}]},"cyan_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7147},{"properties":{"facing":"south"},"id":7148},{"properties":{"facing":"west"},"id":7149},{"properties":{"facing":"east"},"id":7150}]},"purple_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7151},{"properties":{"facing":"south"},"id":7152},{"properties":{"facing":"west"},"id":7153},{"properties":{"facing":"east"},"id":7154}]},"blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7155},{"properties":{"facing":"south"},"id":7156},{"properties":{"facing":"west"},"id":7157},{"properties":{"facing":"east"},"id":7158}]},"brown_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7159},{"properties":{"facing":"south"},"id":7160},{"properties":{"facing":"west"},"id":7161},{"properties":{"facing":"east"},"id":7162}]},"green_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7163},{"properties":{"facing":"south"},"id":7164},{"properties":{"facing":"west"},"id":7165},{"properties":{"facing":"east"},"id":7166}]},"red_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7167},{"properties":{"facing":"south"},"id":7168},{"properties":{"facing":"west"},"id":7169},{"properties":{"facing":"east"},"id":7170}]},"black_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7171},{"properties":{"facing":"south"},"id":7172},{"properties":{"facing":"west"},"id":7173},{"properties":{"facing":"east"},"id":7174}]},"red_sandstone":{"states":[{"id":7175}]},"chiseled_red_sandstone":{"states":[{"id":7176}]},"cut_red_sandstone":{"states":[{"id":7177}]},"red_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7178},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7179},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7180},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7181},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7182},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7183},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7184},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7185},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7186},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7187},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7188},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7189},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7190},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7191},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7192},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7193},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7194},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7195},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7196},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7197},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7198},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7199},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7200},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7201},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7202},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7203},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7204},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7205},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7206},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7207},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7208},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7209},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7210},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7211},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7212},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7213},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7214},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7215},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7216},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7217},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7218},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7219},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7220},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7221},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7222},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7223},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7224},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7225},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7226},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7227},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7228},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7229},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7230},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7231},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7232},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7233},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7234},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7235},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7236},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7237},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7238},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7239},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7240},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7241},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7242},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7243},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7244},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7245},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7246},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7247},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7248},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7249},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7250},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7251},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7252},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7253},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7254},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7255},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7256},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7257}]},"oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7258},{"properties":{"type":"top","waterlogged":"false"},"id":7259},{"properties":{"type":"bottom","waterlogged":"true"},"id":7260},{"properties":{"type":"bottom","waterlogged":"false"},"id":7261},{"properties":{"type":"double","waterlogged":"true"},"id":7262},{"properties":{"type":"double","waterlogged":"false"},"id":7263}]},"spruce_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7264},{"properties":{"type":"top","waterlogged":"false"},"id":7265},{"properties":{"type":"bottom","waterlogged":"true"},"id":7266},{"properties":{"type":"bottom","waterlogged":"false"},"id":7267},{"properties":{"type":"double","waterlogged":"true"},"id":7268},{"properties":{"type":"double","waterlogged":"false"},"id":7269}]},"birch_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7270},{"properties":{"type":"top","waterlogged":"false"},"id":7271},{"properties":{"type":"bottom","waterlogged":"true"},"id":7272},{"properties":{"type":"bottom","waterlogged":"false"},"id":7273},{"properties":{"type":"double","waterlogged":"true"},"id":7274},{"properties":{"type":"double","waterlogged":"false"},"id":7275}]},"jungle_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7276},{"properties":{"type":"top","waterlogged":"false"},"id":7277},{"properties":{"type":"bottom","waterlogged":"true"},"id":7278},{"properties":{"type":"bottom","waterlogged":"false"},"id":7279},{"properties":{"type":"double","waterlogged":"true"},"id":7280},{"properties":{"type":"double","waterlogged":"false"},"id":7281}]},"acacia_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7282},{"properties":{"type":"top","waterlogged":"false"},"id":7283},{"properties":{"type":"bottom","waterlogged":"true"},"id":7284},{"properties":{"type":"bottom","waterlogged":"false"},"id":7285},{"properties":{"type":"double","waterlogged":"true"},"id":7286},{"properties":{"type":"double","waterlogged":"false"},"id":7287}]},"dark_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7288},{"properties":{"type":"top","waterlogged":"false"},"id":7289},{"properties":{"type":"bottom","waterlogged":"true"},"id":7290},{"properties":{"type":"bottom","waterlogged":"false"},"id":7291},{"properties":{"type":"double","waterlogged":"true"},"id":7292},{"properties":{"type":"double","waterlogged":"false"},"id":7293}]},"stone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7294},{"properties":{"type":"top","waterlogged":"false"},"id":7295},{"properties":{"type":"bottom","waterlogged":"true"},"id":7296},{"properties":{"type":"bottom","waterlogged":"false"},"id":7297},{"properties":{"type":"double","waterlogged":"true"},"id":7298},{"properties":{"type":"double","waterlogged":"false"},"id":7299}]},"sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7300},{"properties":{"type":"top","waterlogged":"false"},"id":7301},{"properties":{"type":"bottom","waterlogged":"true"},"id":7302},{"properties":{"type":"bottom","waterlogged":"false"},"id":7303},{"properties":{"type":"double","waterlogged":"true"},"id":7304},{"properties":{"type":"double","waterlogged":"false"},"id":7305}]},"petrified_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7306},{"properties":{"type":"top","waterlogged":"false"},"id":7307},{"properties":{"type":"bottom","waterlogged":"true"},"id":7308},{"properties":{"type":"bottom","waterlogged":"false"},"id":7309},{"properties":{"type":"double","waterlogged":"true"},"id":7310},{"properties":{"type":"double","waterlogged":"false"},"id":7311}]},"cobblestone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7312},{"properties":{"type":"top","waterlogged":"false"},"id":7313},{"properties":{"type":"bottom","waterlogged":"true"},"id":7314},{"properties":{"type":"bottom","waterlogged":"false"},"id":7315},{"properties":{"type":"double","waterlogged":"true"},"id":7316},{"properties":{"type":"double","waterlogged":"false"},"id":7317}]},"brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7318},{"properties":{"type":"top","waterlogged":"false"},"id":7319},{"properties":{"type":"bottom","waterlogged":"true"},"id":7320},{"properties":{"type":"bottom","waterlogged":"false"},"id":7321},{"properties":{"type":"double","waterlogged":"true"},"id":7322},{"properties":{"type":"double","waterlogged":"false"},"id":7323}]},"stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7324},{"properties":{"type":"top","waterlogged":"false"},"id":7325},{"properties":{"type":"bottom","waterlogged":"true"},"id":7326},{"properties":{"type":"bottom","waterlogged":"false"},"id":7327},{"properties":{"type":"double","waterlogged":"true"},"id":7328},{"properties":{"type":"double","waterlogged":"false"},"id":7329}]},"nether_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7330},{"properties":{"type":"top","waterlogged":"false"},"id":7331},{"properties":{"type":"bottom","waterlogged":"true"},"id":7332},{"properties":{"type":"bottom","waterlogged":"false"},"id":7333},{"properties":{"type":"double","waterlogged":"true"},"id":7334},{"properties":{"type":"double","waterlogged":"false"},"id":7335}]},"quartz_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7336},{"properties":{"type":"top","waterlogged":"false"},"id":7337},{"properties":{"type":"bottom","waterlogged":"true"},"id":7338},{"properties":{"type":"bottom","waterlogged":"false"},"id":7339},{"properties":{"type":"double","waterlogged":"true"},"id":7340},{"properties":{"type":"double","waterlogged":"false"},"id":7341}]},"red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7342},{"properties":{"type":"top","waterlogged":"false"},"id":7343},{"properties":{"type":"bottom","waterlogged":"true"},"id":7344},{"properties":{"type":"bottom","waterlogged":"false"},"id":7345},{"properties":{"type":"double","waterlogged":"true"},"id":7346},{"properties":{"type":"double","waterlogged":"false"},"id":7347}]},"purpur_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7348},{"properties":{"type":"top","waterlogged":"false"},"id":7349},{"properties":{"type":"bottom","waterlogged":"true"},"id":7350},{"properties":{"type":"bottom","waterlogged":"false"},"id":7351},{"properties":{"type":"double","waterlogged":"true"},"id":7352},{"properties":{"type":"double","waterlogged":"false"},"id":7353}]},"smooth_stone":{"states":[{"id":7354}]},"smooth_sandstone":{"states":[{"id":7355}]},"smooth_quartz":{"states":[{"id":7356}]},"smooth_red_sandstone":{"states":[{"id":7357}]},"spruce_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7358},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7359},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7360},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7361},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7362},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7363},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7364},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7365},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7366},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7367},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7368},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7369},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7370},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7371},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7372},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7373},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7374},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7375},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7376},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7377},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7378},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7379},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7380},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7381},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7382},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7383},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7384},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7385},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7386},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7387},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7388},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7389}]},"birch_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7390},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7391},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7392},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7393},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7394},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7395},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7396},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7397},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7398},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7399},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7400},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7401},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7402},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7403},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7404},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7405},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7406},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7407},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7408},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7409},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7410},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7411},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7412},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7413},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7414},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7415},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7416},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7417},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7418},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7419},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7420},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7421}]},"jungle_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7422},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7423},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7424},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7425},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7426},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7427},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7428},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7429},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7430},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7431},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7432},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7433},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7434},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7435},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7436},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7437},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7438},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7439},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7440},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7441},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7442},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7443},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7444},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7445},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7446},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7447},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7448},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7449},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7450},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7451},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7452},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7453}]},"acacia_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7454},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7455},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7456},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7457},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7458},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7459},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7460},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7461},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7462},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7463},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7464},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7465},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7466},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7467},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7468},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7469},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7470},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7471},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7472},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7473},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7474},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7475},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7476},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7477},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7478},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7479},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7480},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7481},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7482},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7483},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7484},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7485}]},"dark_oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7486},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7487},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7488},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7489},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7490},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7491},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7492},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7493},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7494},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7495},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7496},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7497},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7498},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7499},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7500},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7501},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7502},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7503},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7504},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7505},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7506},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7507},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7508},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7509},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7510},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7511},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7512},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7513},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7514},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7515},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7516},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7517}]},"spruce_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7518},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7519},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7520},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7521},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7522},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7523},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7524},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7525},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7526},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7527},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7528},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7529},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7530},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7531},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7532},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7533},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7534},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7535},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7536},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7537},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7538},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7539},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7540},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7541},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7542},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7543},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7544},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7545},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7546},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7547},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7548},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7549}]},"birch_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7550},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7551},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7552},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7553},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7554},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7555},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7556},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7557},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7558},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7559},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7560},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7561},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7562},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7563},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7564},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7565},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7566},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7567},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7568},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7569},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7570},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7571},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7572},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7573},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7574},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7575},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7576},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7577},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7578},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7579},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7580},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7581}]},"jungle_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7582},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7583},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7584},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7585},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7586},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7587},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7588},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7589},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7590},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7591},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7592},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7593},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7594},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7595},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7596},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7597},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7598},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7599},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7600},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7601},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7602},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7603},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7604},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7605},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7606},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7607},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7608},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7609},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7610},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7611},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7612},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7613}]},"acacia_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7614},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7615},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7616},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7617},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7618},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7619},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7620},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7621},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7622},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7623},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7624},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7625},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7626},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7627},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7628},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7629},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7630},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7631},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7632},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7633},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7634},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7635},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7636},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7637},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7638},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7639},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7640},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7641},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7642},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7643},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7644},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7645}]},"dark_oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7646},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7647},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7648},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7649},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7650},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7651},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7652},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7653},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7654},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7655},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7656},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7657},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7658},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7659},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7660},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7661},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":7662},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":7663},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":7664},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":7665},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":7666},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":7667},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":7668},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":7669},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":7670},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":7671},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":7672},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":7673},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":7674},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":7675},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":7676},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":7677}]},"spruce_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7678},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7679},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7680},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7681},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7682},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7683},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7684},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7685},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7686},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7687},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7688},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7689},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7690},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7691},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7692},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7693},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7694},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7695},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7696},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7697},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7698},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7699},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7700},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7701},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7702},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7703},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7704},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7705},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7706},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7707},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7708},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7709},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7710},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7711},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7712},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7713},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7714},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7715},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7716},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7717},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7718},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7719},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7720},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7721},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7722},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7723},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7724},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7725},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7726},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7727},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7728},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7729},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7730},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7731},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7732},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7733},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7734},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7735},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7736},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7737},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7738},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7739},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7740},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7741}]},"birch_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7742},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7743},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7744},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7745},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7746},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7747},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7748},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7749},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7750},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7751},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7752},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7753},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7754},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7755},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7756},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7757},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7758},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7759},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7760},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7761},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7762},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7763},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7764},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7765},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7766},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7767},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7768},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7769},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7770},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7771},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7772},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7773},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7774},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7775},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7776},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7777},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7778},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7779},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7780},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7781},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7782},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7783},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7784},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7785},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7786},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7787},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7788},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7789},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7790},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7791},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7792},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7793},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7794},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7795},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7796},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7797},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7798},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7799},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7800},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7801},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7802},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7803},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7804},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7805}]},"jungle_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7806},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7807},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7808},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7809},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7810},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7811},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7812},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7813},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7814},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7815},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7816},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7817},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7818},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7819},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7820},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7821},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7822},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7823},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7824},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7825},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7826},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7827},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7828},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7829},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7830},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7831},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7832},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7833},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7834},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7835},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7836},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7837},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7838},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7839},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7840},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7841},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7842},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7843},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7844},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7845},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7846},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7847},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7848},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7849},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7850},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7851},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7852},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7853},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7854},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7855},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7856},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7857},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7858},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7859},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7860},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7861},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7862},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7863},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7864},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7865},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7866},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7867},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7868},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7869}]},"acacia_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7870},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7871},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7872},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7873},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7874},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7875},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7876},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7877},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7878},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7879},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7880},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7881},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7882},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7883},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7884},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7885},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7886},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7887},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7888},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7889},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7890},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7891},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7892},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7893},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7894},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7895},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7896},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7897},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7898},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7899},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7900},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7901},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7902},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7903},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7904},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7905},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7906},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7907},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7908},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7909},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7910},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7911},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7912},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7913},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7914},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7915},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7916},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7917},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7918},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7919},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7920},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7921},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7922},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7923},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7924},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7925},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7926},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7927},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7928},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7929},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7930},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7931},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7932},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7933}]},"dark_oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7934},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7935},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7936},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7937},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7938},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7939},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7940},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7941},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7942},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7943},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7944},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7945},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7946},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7947},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7948},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7949},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7950},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7951},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7952},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7953},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7954},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7955},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7956},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7957},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7958},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7959},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7960},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7961},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7962},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7963},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7964},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7965},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7966},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7967},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7968},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7969},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7970},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7971},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7972},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7973},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7974},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7975},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7976},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7977},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7978},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7979},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7980},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7981},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":7982},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":7983},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":7984},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":7985},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":7986},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":7987},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":7988},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":7989},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":7990},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":7991},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":7992},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":7993},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":7994},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":7995},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":7996},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":7997}]},"end_rod":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":7998},{"properties":{"facing":"east"},"id":7999},{"properties":{"facing":"south"},"id":8000},{"properties":{"facing":"west"},"id":8001},{"properties":{"facing":"up"},"id":8002},{"properties":{"facing":"down"},"id":8003}]},"chorus_plant":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8004},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8005},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8006},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8007},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8008},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8009},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8010},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8011},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8012},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8013},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8014},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8015},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8016},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8017},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8018},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8019},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8020},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8021},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8022},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8023},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8024},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8025},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8026},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8027},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8028},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8029},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8030},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8031},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8032},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8033},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8034},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8035},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8036},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8037},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8038},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8039},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8040},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8041},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8042},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8043},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8044},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8045},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8046},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8047},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8048},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8049},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8050},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8051},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8052},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8053},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8054},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8055},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8056},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8057},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8058},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8059},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8060},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8061},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8062},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8063},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8064},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8065},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8066},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8067}]},"chorus_flower":{"properties":{"age":["0","1","2","3","4","5"]},"states":[{"properties":{"age":"0"},"id":8068},{"properties":{"age":"1"},"id":8069},{"properties":{"age":"2"},"id":8070},{"properties":{"age":"3"},"id":8071},{"properties":{"age":"4"},"id":8072},{"properties":{"age":"5"},"id":8073}]},"purpur_block":{"states":[{"id":8074}]},"purpur_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8075},{"properties":{"axis":"y"},"id":8076},{"properties":{"axis":"z"},"id":8077}]},"purpur_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":8078},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":8079},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":8080},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":8081},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":8082},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":8083},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":8084},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":8085},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":8086},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":8087},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":8088},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":8089},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8090},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8091},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8092},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8093},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8094},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8095},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8096},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8097},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":8098},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":8099},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":8100},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":8101},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":8102},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":8103},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":8104},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":8105},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":8106},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":8107},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":8108},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":8109},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8110},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8111},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8112},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8113},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8114},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8115},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8116},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8117},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":8118},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":8119},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":8120},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":8121},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":8122},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":8123},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":8124},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":8125},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":8126},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":8127},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":8128},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":8129},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8130},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8131},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8132},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8133},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8134},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8135},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8136},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8137},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":8138},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":8139},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":8140},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":8141},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":8142},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":8143},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":8144},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":8145},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":8146},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":8147},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":8148},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":8149},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8150},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8151},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8152},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8153},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8154},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8155},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8156},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8157}]},"end_stone_bricks":{"states":[{"id":8158}]},"beetroots":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8159},{"properties":{"age":"1"},"id":8160},{"properties":{"age":"2"},"id":8161},{"properties":{"age":"3"},"id":8162}]},"grass_path":{"states":[{"id":8163}]},"end_gateway":{"states":[{"id":8164}]},"repeating_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8165},{"properties":{"conditional":"true","facing":"east"},"id":8166},{"properties":{"conditional":"true","facing":"south"},"id":8167},{"properties":{"conditional":"true","facing":"west"},"id":8168},{"properties":{"conditional":"true","facing":"up"},"id":8169},{"properties":{"conditional":"true","facing":"down"},"id":8170},{"properties":{"conditional":"false","facing":"north"},"id":8171},{"properties":{"conditional":"false","facing":"east"},"id":8172},{"properties":{"conditional":"false","facing":"south"},"id":8173},{"properties":{"conditional":"false","facing":"west"},"id":8174},{"properties":{"conditional":"false","facing":"up"},"id":8175},{"properties":{"conditional":"false","facing":"down"},"id":8176}]},"chain_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8177},{"properties":{"conditional":"true","facing":"east"},"id":8178},{"properties":{"conditional":"true","facing":"south"},"id":8179},{"properties":{"conditional":"true","facing":"west"},"id":8180},{"properties":{"conditional":"true","facing":"up"},"id":8181},{"properties":{"conditional":"true","facing":"down"},"id":8182},{"properties":{"conditional":"false","facing":"north"},"id":8183},{"properties":{"conditional":"false","facing":"east"},"id":8184},{"properties":{"conditional":"false","facing":"south"},"id":8185},{"properties":{"conditional":"false","facing":"west"},"id":8186},{"properties":{"conditional":"false","facing":"up"},"id":8187},{"properties":{"conditional":"false","facing":"down"},"id":8188}]},"frosted_ice":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8189},{"properties":{"age":"1"},"id":8190},{"properties":{"age":"2"},"id":8191},{"properties":{"age":"3"},"id":8192}]},"magma_block":{"states":[{"id":8193}]},"nether_wart_block":{"states":[{"id":8194}]},"red_nether_bricks":{"states":[{"id":8195}]},"bone_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8196},{"properties":{"axis":"y"},"id":8197},{"properties":{"axis":"z"},"id":8198}]},"structure_void":{"states":[{"id":8199}]},"observer":{"properties":{"facing":["north","east","south","west","up","down"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","powered":"true"},"id":8200},{"properties":{"facing":"north","powered":"false"},"id":8201},{"properties":{"facing":"east","powered":"true"},"id":8202},{"properties":{"facing":"east","powered":"false"},"id":8203},{"properties":{"facing":"south","powered":"true"},"id":8204},{"properties":{"facing":"south","powered":"false"},"id":8205},{"properties":{"facing":"west","powered":"true"},"id":8206},{"properties":{"facing":"west","powered":"false"},"id":8207},{"properties":{"facing":"up","powered":"true"},"id":8208},{"properties":{"facing":"up","powered":"false"},"id":8209},{"properties":{"facing":"down","powered":"true"},"id":8210},{"properties":{"facing":"down","powered":"false"},"id":8211}]},"shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8212},{"properties":{"facing":"east"},"id":8213},{"properties":{"facing":"south"},"id":8214},{"properties":{"facing":"west"},"id":8215},{"properties":{"facing":"up"},"id":8216},{"properties":{"facing":"down"},"id":8217}]},"white_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8218},{"properties":{"facing":"east"},"id":8219},{"properties":{"facing":"south"},"id":8220},{"properties":{"facing":"west"},"id":8221},{"properties":{"facing":"up"},"id":8222},{"properties":{"facing":"down"},"id":8223}]},"orange_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8224},{"properties":{"facing":"east"},"id":8225},{"properties":{"facing":"south"},"id":8226},{"properties":{"facing":"west"},"id":8227},{"properties":{"facing":"up"},"id":8228},{"properties":{"facing":"down"},"id":8229}]},"magenta_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8230},{"properties":{"facing":"east"},"id":8231},{"properties":{"facing":"south"},"id":8232},{"properties":{"facing":"west"},"id":8233},{"properties":{"facing":"up"},"id":8234},{"properties":{"facing":"down"},"id":8235}]},"light_blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8236},{"properties":{"facing":"east"},"id":8237},{"properties":{"facing":"south"},"id":8238},{"properties":{"facing":"west"},"id":8239},{"properties":{"facing":"up"},"id":8240},{"properties":{"facing":"down"},"id":8241}]},"yellow_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8242},{"properties":{"facing":"east"},"id":8243},{"properties":{"facing":"south"},"id":8244},{"properties":{"facing":"west"},"id":8245},{"properties":{"facing":"up"},"id":8246},{"properties":{"facing":"down"},"id":8247}]},"lime_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8248},{"properties":{"facing":"east"},"id":8249},{"properties":{"facing":"south"},"id":8250},{"properties":{"facing":"west"},"id":8251},{"properties":{"facing":"up"},"id":8252},{"properties":{"facing":"down"},"id":8253}]},"pink_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8254},{"properties":{"facing":"east"},"id":8255},{"properties":{"facing":"south"},"id":8256},{"properties":{"facing":"west"},"id":8257},{"properties":{"facing":"up"},"id":8258},{"properties":{"facing":"down"},"id":8259}]},"gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8260},{"properties":{"facing":"east"},"id":8261},{"properties":{"facing":"south"},"id":8262},{"properties":{"facing":"west"},"id":8263},{"properties":{"facing":"up"},"id":8264},{"properties":{"facing":"down"},"id":8265}]},"light_gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8266},{"properties":{"facing":"east"},"id":8267},{"properties":{"facing":"south"},"id":8268},{"properties":{"facing":"west"},"id":8269},{"properties":{"facing":"up"},"id":8270},{"properties":{"facing":"down"},"id":8271}]},"cyan_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8272},{"properties":{"facing":"east"},"id":8273},{"properties":{"facing":"south"},"id":8274},{"properties":{"facing":"west"},"id":8275},{"properties":{"facing":"up"},"id":8276},{"properties":{"facing":"down"},"id":8277}]},"purple_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8278},{"properties":{"facing":"east"},"id":8279},{"properties":{"facing":"south"},"id":8280},{"properties":{"facing":"west"},"id":8281},{"properties":{"facing":"up"},"id":8282},{"properties":{"facing":"down"},"id":8283}]},"blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8284},{"properties":{"facing":"east"},"id":8285},{"properties":{"facing":"south"},"id":8286},{"properties":{"facing":"west"},"id":8287},{"properties":{"facing":"up"},"id":8288},{"properties":{"facing":"down"},"id":8289}]},"brown_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8290},{"properties":{"facing":"east"},"id":8291},{"properties":{"facing":"south"},"id":8292},{"properties":{"facing":"west"},"id":8293},{"properties":{"facing":"up"},"id":8294},{"properties":{"facing":"down"},"id":8295}]},"green_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8296},{"properties":{"facing":"east"},"id":8297},{"properties":{"facing":"south"},"id":8298},{"properties":{"facing":"west"},"id":8299},{"properties":{"facing":"up"},"id":8300},{"properties":{"facing":"down"},"id":8301}]},"red_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8302},{"properties":{"facing":"east"},"id":8303},{"properties":{"facing":"south"},"id":8304},{"properties":{"facing":"west"},"id":8305},{"properties":{"facing":"up"},"id":8306},{"properties":{"facing":"down"},"id":8307}]},"black_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8308},{"properties":{"facing":"east"},"id":8309},{"properties":{"facing":"south"},"id":8310},{"properties":{"facing":"west"},"id":8311},{"properties":{"facing":"up"},"id":8312},{"properties":{"facing":"down"},"id":8313}]},"white_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8314},{"properties":{"facing":"south"},"id":8315},{"properties":{"facing":"west"},"id":8316},{"properties":{"facing":"east"},"id":8317}]},"orange_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8318},{"properties":{"facing":"south"},"id":8319},{"properties":{"facing":"west"},"id":8320},{"properties":{"facing":"east"},"id":8321}]},"magenta_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8322},{"properties":{"facing":"south"},"id":8323},{"properties":{"facing":"west"},"id":8324},{"properties":{"facing":"east"},"id":8325}]},"light_blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8326},{"properties":{"facing":"south"},"id":8327},{"properties":{"facing":"west"},"id":8328},{"properties":{"facing":"east"},"id":8329}]},"yellow_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8330},{"properties":{"facing":"south"},"id":8331},{"properties":{"facing":"west"},"id":8332},{"properties":{"facing":"east"},"id":8333}]},"lime_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8334},{"properties":{"facing":"south"},"id":8335},{"properties":{"facing":"west"},"id":8336},{"properties":{"facing":"east"},"id":8337}]},"pink_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8338},{"properties":{"facing":"south"},"id":8339},{"properties":{"facing":"west"},"id":8340},{"properties":{"facing":"east"},"id":8341}]},"gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8342},{"properties":{"facing":"south"},"id":8343},{"properties":{"facing":"west"},"id":8344},{"properties":{"facing":"east"},"id":8345}]},"light_gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8346},{"properties":{"facing":"south"},"id":8347},{"properties":{"facing":"west"},"id":8348},{"properties":{"facing":"east"},"id":8349}]},"cyan_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8350},{"properties":{"facing":"south"},"id":8351},{"properties":{"facing":"west"},"id":8352},{"properties":{"facing":"east"},"id":8353}]},"purple_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8354},{"properties":{"facing":"south"},"id":8355},{"properties":{"facing":"west"},"id":8356},{"properties":{"facing":"east"},"id":8357}]},"blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8358},{"properties":{"facing":"south"},"id":8359},{"properties":{"facing":"west"},"id":8360},{"properties":{"facing":"east"},"id":8361}]},"brown_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8362},{"properties":{"facing":"south"},"id":8363},{"properties":{"facing":"west"},"id":8364},{"properties":{"facing":"east"},"id":8365}]},"green_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8366},{"properties":{"facing":"south"},"id":8367},{"properties":{"facing":"west"},"id":8368},{"properties":{"facing":"east"},"id":8369}]},"red_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8370},{"properties":{"facing":"south"},"id":8371},{"properties":{"facing":"west"},"id":8372},{"properties":{"facing":"east"},"id":8373}]},"black_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8374},{"properties":{"facing":"south"},"id":8375},{"properties":{"facing":"west"},"id":8376},{"properties":{"facing":"east"},"id":8377}]},"white_concrete":{"states":[{"id":8378}]},"orange_concrete":{"states":[{"id":8379}]},"magenta_concrete":{"states":[{"id":8380}]},"light_blue_concrete":{"states":[{"id":8381}]},"yellow_concrete":{"states":[{"id":8382}]},"lime_concrete":{"states":[{"id":8383}]},"pink_concrete":{"states":[{"id":8384}]},"gray_concrete":{"states":[{"id":8385}]},"light_gray_concrete":{"states":[{"id":8386}]},"cyan_concrete":{"states":[{"id":8387}]},"purple_concrete":{"states":[{"id":8388}]},"blue_concrete":{"states":[{"id":8389}]},"brown_concrete":{"states":[{"id":8390}]},"green_concrete":{"states":[{"id":8391}]},"red_concrete":{"states":[{"id":8392}]},"black_concrete":{"states":[{"id":8393}]},"white_concrete_powder":{"states":[{"id":8394}]},"orange_concrete_powder":{"states":[{"id":8395}]},"magenta_concrete_powder":{"states":[{"id":8396}]},"light_blue_concrete_powder":{"states":[{"id":8397}]},"yellow_concrete_powder":{"states":[{"id":8398}]},"lime_concrete_powder":{"states":[{"id":8399}]},"pink_concrete_powder":{"states":[{"id":8400}]},"gray_concrete_powder":{"states":[{"id":8401}]},"light_gray_concrete_powder":{"states":[{"id":8402}]},"cyan_concrete_powder":{"states":[{"id":8403}]},"purple_concrete_powder":{"states":[{"id":8404}]},"blue_concrete_powder":{"states":[{"id":8405}]},"brown_concrete_powder":{"states":[{"id":8406}]},"green_concrete_powder":{"states":[{"id":8407}]},"red_concrete_powder":{"states":[{"id":8408}]},"black_concrete_powder":{"states":[{"id":8409}]},"kelp":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25"]},"states":[{"properties":{"age":"0"},"id":8410},{"properties":{"age":"1"},"id":8411},{"properties":{"age":"2"},"id":8412},{"properties":{"age":"3"},"id":8413},{"properties":{"age":"4"},"id":8414},{"properties":{"age":"5"},"id":8415},{"properties":{"age":"6"},"id":8416},{"properties":{"age":"7"},"id":8417},{"properties":{"age":"8"},"id":8418},{"properties":{"age":"9"},"id":8419},{"properties":{"age":"10"},"id":8420},{"properties":{"age":"11"},"id":8421},{"properties":{"age":"12"},"id":8422},{"properties":{"age":"13"},"id":8423},{"properties":{"age":"14"},"id":8424},{"properties":{"age":"15"},"id":8425},{"properties":{"age":"16"},"id":8426},{"properties":{"age":"17"},"id":8427},{"properties":{"age":"18"},"id":8428},{"properties":{"age":"19"},"id":8429},{"properties":{"age":"20"},"id":8430},{"properties":{"age":"21"},"id":8431},{"properties":{"age":"22"},"id":8432},{"properties":{"age":"23"},"id":8433},{"properties":{"age":"24"},"id":8434},{"properties":{"age":"25"},"id":8435}]},"kelp_plant":{"states":[{"id":8436}]},"dried_kelp_block":{"states":[{"id":8437}]},"turtle_egg":{"properties":{"eggs":["1","2","3","4"],"hatch":["0","1","2"]},"states":[{"properties":{"eggs":"1","hatch":"0"},"id":8438},{"properties":{"eggs":"1","hatch":"1"},"id":8439},{"properties":{"eggs":"1","hatch":"2"},"id":8440},{"properties":{"eggs":"2","hatch":"0"},"id":8441},{"properties":{"eggs":"2","hatch":"1"},"id":8442},{"properties":{"eggs":"2","hatch":"2"},"id":8443},{"properties":{"eggs":"3","hatch":"0"},"id":8444},{"properties":{"eggs":"3","hatch":"1"},"id":8445},{"properties":{"eggs":"3","hatch":"2"},"id":8446},{"properties":{"eggs":"4","hatch":"0"},"id":8447},{"properties":{"eggs":"4","hatch":"1"},"id":8448},{"properties":{"eggs":"4","hatch":"2"},"id":8449}]},"dead_tube_coral_block":{"states":[{"id":8450}]},"dead_brain_coral_block":{"states":[{"id":8451}]},"dead_bubble_coral_block":{"states":[{"id":8452}]},"dead_fire_coral_block":{"states":[{"id":8453}]},"dead_horn_coral_block":{"states":[{"id":8454}]},"tube_coral_block":{"states":[{"id":8455}]},"brain_coral_block":{"states":[{"id":8456}]},"bubble_coral_block":{"states":[{"id":8457}]},"fire_coral_block":{"states":[{"id":8458}]},"horn_coral_block":{"states":[{"id":8459}]},"dead_tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8460},{"properties":{"waterlogged":"false"},"id":8461}]},"dead_brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8462},{"properties":{"waterlogged":"false"},"id":8463}]},"dead_bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8464},{"properties":{"waterlogged":"false"},"id":8465}]},"dead_fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8466},{"properties":{"waterlogged":"false"},"id":8467}]},"dead_horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8468},{"properties":{"waterlogged":"false"},"id":8469}]},"tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8470},{"properties":{"waterlogged":"false"},"id":8471}]},"brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8472},{"properties":{"waterlogged":"false"},"id":8473}]},"bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8474},{"properties":{"waterlogged":"false"},"id":8475}]},"fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8476},{"properties":{"waterlogged":"false"},"id":8477}]},"horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8478},{"properties":{"waterlogged":"false"},"id":8479}]},"dead_tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8480},{"properties":{"facing":"north","waterlogged":"false"},"id":8481},{"properties":{"facing":"south","waterlogged":"true"},"id":8482},{"properties":{"facing":"south","waterlogged":"false"},"id":8483},{"properties":{"facing":"west","waterlogged":"true"},"id":8484},{"properties":{"facing":"west","waterlogged":"false"},"id":8485},{"properties":{"facing":"east","waterlogged":"true"},"id":8486},{"properties":{"facing":"east","waterlogged":"false"},"id":8487}]},"dead_brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8488},{"properties":{"facing":"north","waterlogged":"false"},"id":8489},{"properties":{"facing":"south","waterlogged":"true"},"id":8490},{"properties":{"facing":"south","waterlogged":"false"},"id":8491},{"properties":{"facing":"west","waterlogged":"true"},"id":8492},{"properties":{"facing":"west","waterlogged":"false"},"id":8493},{"properties":{"facing":"east","waterlogged":"true"},"id":8494},{"properties":{"facing":"east","waterlogged":"false"},"id":8495}]},"dead_bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8496},{"properties":{"facing":"north","waterlogged":"false"},"id":8497},{"properties":{"facing":"south","waterlogged":"true"},"id":8498},{"properties":{"facing":"south","waterlogged":"false"},"id":8499},{"properties":{"facing":"west","waterlogged":"true"},"id":8500},{"properties":{"facing":"west","waterlogged":"false"},"id":8501},{"properties":{"facing":"east","waterlogged":"true"},"id":8502},{"properties":{"facing":"east","waterlogged":"false"},"id":8503}]},"dead_fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8504},{"properties":{"facing":"north","waterlogged":"false"},"id":8505},{"properties":{"facing":"south","waterlogged":"true"},"id":8506},{"properties":{"facing":"south","waterlogged":"false"},"id":8507},{"properties":{"facing":"west","waterlogged":"true"},"id":8508},{"properties":{"facing":"west","waterlogged":"false"},"id":8509},{"properties":{"facing":"east","waterlogged":"true"},"id":8510},{"properties":{"facing":"east","waterlogged":"false"},"id":8511}]},"dead_horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8512},{"properties":{"facing":"north","waterlogged":"false"},"id":8513},{"properties":{"facing":"south","waterlogged":"true"},"id":8514},{"properties":{"facing":"south","waterlogged":"false"},"id":8515},{"properties":{"facing":"west","waterlogged":"true"},"id":8516},{"properties":{"facing":"west","waterlogged":"false"},"id":8517},{"properties":{"facing":"east","waterlogged":"true"},"id":8518},{"properties":{"facing":"east","waterlogged":"false"},"id":8519}]},"tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8520},{"properties":{"facing":"north","waterlogged":"false"},"id":8521},{"properties":{"facing":"south","waterlogged":"true"},"id":8522},{"properties":{"facing":"south","waterlogged":"false"},"id":8523},{"properties":{"facing":"west","waterlogged":"true"},"id":8524},{"properties":{"facing":"west","waterlogged":"false"},"id":8525},{"properties":{"facing":"east","waterlogged":"true"},"id":8526},{"properties":{"facing":"east","waterlogged":"false"},"id":8527}]},"brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8528},{"properties":{"facing":"north","waterlogged":"false"},"id":8529},{"properties":{"facing":"south","waterlogged":"true"},"id":8530},{"properties":{"facing":"south","waterlogged":"false"},"id":8531},{"properties":{"facing":"west","waterlogged":"true"},"id":8532},{"properties":{"facing":"west","waterlogged":"false"},"id":8533},{"properties":{"facing":"east","waterlogged":"true"},"id":8534},{"properties":{"facing":"east","waterlogged":"false"},"id":8535}]},"bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8536},{"properties":{"facing":"north","waterlogged":"false"},"id":8537},{"properties":{"facing":"south","waterlogged":"true"},"id":8538},{"properties":{"facing":"south","waterlogged":"false"},"id":8539},{"properties":{"facing":"west","waterlogged":"true"},"id":8540},{"properties":{"facing":"west","waterlogged":"false"},"id":8541},{"properties":{"facing":"east","waterlogged":"true"},"id":8542},{"properties":{"facing":"east","waterlogged":"false"},"id":8543}]},"fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8544},{"properties":{"facing":"north","waterlogged":"false"},"id":8545},{"properties":{"facing":"south","waterlogged":"true"},"id":8546},{"properties":{"facing":"south","waterlogged":"false"},"id":8547},{"properties":{"facing":"west","waterlogged":"true"},"id":8548},{"properties":{"facing":"west","waterlogged":"false"},"id":8549},{"properties":{"facing":"east","waterlogged":"true"},"id":8550},{"properties":{"facing":"east","waterlogged":"false"},"id":8551}]},"horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":8552},{"properties":{"facing":"north","waterlogged":"false"},"id":8553},{"properties":{"facing":"south","waterlogged":"true"},"id":8554},{"properties":{"facing":"south","waterlogged":"false"},"id":8555},{"properties":{"facing":"west","waterlogged":"true"},"id":8556},{"properties":{"facing":"west","waterlogged":"false"},"id":8557},{"properties":{"facing":"east","waterlogged":"true"},"id":8558},{"properties":{"facing":"east","waterlogged":"false"},"id":8559}]},"dead_tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8560},{"properties":{"waterlogged":"false"},"id":8561}]},"dead_brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8562},{"properties":{"waterlogged":"false"},"id":8563}]},"dead_bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8564},{"properties":{"waterlogged":"false"},"id":8565}]},"dead_fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8566},{"properties":{"waterlogged":"false"},"id":8567}]},"dead_horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8568},{"properties":{"waterlogged":"false"},"id":8569}]},"tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8570},{"properties":{"waterlogged":"false"},"id":8571}]},"brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8572},{"properties":{"waterlogged":"false"},"id":8573}]},"bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8574},{"properties":{"waterlogged":"false"},"id":8575}]},"fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8576},{"properties":{"waterlogged":"false"},"id":8577}]},"horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8578},{"properties":{"waterlogged":"false"},"id":8579}]},"sea_pickle":{"properties":{"pickles":["1","2","3","4"],"waterlogged":["true","false"]},"states":[{"properties":{"pickles":"1","waterlogged":"true"},"id":8580},{"properties":{"pickles":"1","waterlogged":"false"},"id":8581},{"properties":{"pickles":"2","waterlogged":"true"},"id":8582},{"properties":{"pickles":"2","waterlogged":"false"},"id":8583},{"properties":{"pickles":"3","waterlogged":"true"},"id":8584},{"properties":{"pickles":"3","waterlogged":"false"},"id":8585},{"properties":{"pickles":"4","waterlogged":"true"},"id":8586},{"properties":{"pickles":"4","waterlogged":"false"},"id":8587}]},"blue_ice":{"states":[{"id":8588}]},"conduit":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8589},{"properties":{"waterlogged":"false"},"id":8590}]},"void_air":{"states":[{"id":8591}]},"cave_air":{"states":[{"id":8592}]},"bubble_column":{"properties":{"drag":["true","false"]},"states":[{"properties":{"drag":"true"},"id":8593},{"properties":{"drag":"false"},"id":8594}]},"structure_block":{"properties":{"mode":["save","load","corner","data"]},"states":[{"properties":{"mode":"save"},"id":8595},{"properties":{"mode":"load"},"id":8596},{"properties":{"mode":"corner"},"id":8597},{"properties":{"mode":"data"},"id":8598}]}}} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/1.13.2/items.json b/src/main/resources/assets/mapping/1.13.2/items.json deleted file mode 100644 index 8c2fbce40..000000000 --- a/src/main/resources/assets/mapping/1.13.2/items.json +++ /dev/null @@ -1 +0,0 @@ -{"minecraft":{"air":{"protocol_id":0},"stone":{"protocol_id":1},"granite":{"protocol_id":2},"polished_granite":{"protocol_id":3},"diorite":{"protocol_id":4},"polished_diorite":{"protocol_id":5},"andesite":{"protocol_id":6},"polished_andesite":{"protocol_id":7},"grass_block":{"protocol_id":8},"dirt":{"protocol_id":9},"coarse_dirt":{"protocol_id":10},"podzol":{"protocol_id":11},"cobblestone":{"protocol_id":12},"oak_planks":{"protocol_id":13},"spruce_planks":{"protocol_id":14},"birch_planks":{"protocol_id":15},"jungle_planks":{"protocol_id":16},"acacia_planks":{"protocol_id":17},"dark_oak_planks":{"protocol_id":18},"oak_sapling":{"protocol_id":19},"spruce_sapling":{"protocol_id":20},"birch_sapling":{"protocol_id":21},"jungle_sapling":{"protocol_id":22},"acacia_sapling":{"protocol_id":23},"dark_oak_sapling":{"protocol_id":24},"bedrock":{"protocol_id":25},"sand":{"protocol_id":26},"red_sand":{"protocol_id":27},"gravel":{"protocol_id":28},"gold_ore":{"protocol_id":29},"iron_ore":{"protocol_id":30},"coal_ore":{"protocol_id":31},"oak_log":{"protocol_id":32},"spruce_log":{"protocol_id":33},"birch_log":{"protocol_id":34},"jungle_log":{"protocol_id":35},"acacia_log":{"protocol_id":36},"dark_oak_log":{"protocol_id":37},"stripped_oak_log":{"protocol_id":38},"stripped_spruce_log":{"protocol_id":39},"stripped_birch_log":{"protocol_id":40},"stripped_jungle_log":{"protocol_id":41},"stripped_acacia_log":{"protocol_id":42},"stripped_dark_oak_log":{"protocol_id":43},"stripped_oak_wood":{"protocol_id":44},"stripped_spruce_wood":{"protocol_id":45},"stripped_birch_wood":{"protocol_id":46},"stripped_jungle_wood":{"protocol_id":47},"stripped_acacia_wood":{"protocol_id":48},"stripped_dark_oak_wood":{"protocol_id":49},"oak_wood":{"protocol_id":50},"spruce_wood":{"protocol_id":51},"birch_wood":{"protocol_id":52},"jungle_wood":{"protocol_id":53},"acacia_wood":{"protocol_id":54},"dark_oak_wood":{"protocol_id":55},"oak_leaves":{"protocol_id":56},"spruce_leaves":{"protocol_id":57},"birch_leaves":{"protocol_id":58},"jungle_leaves":{"protocol_id":59},"acacia_leaves":{"protocol_id":60},"dark_oak_leaves":{"protocol_id":61},"sponge":{"protocol_id":62},"wet_sponge":{"protocol_id":63},"glass":{"protocol_id":64},"lapis_ore":{"protocol_id":65},"lapis_block":{"protocol_id":66},"dispenser":{"protocol_id":67},"sandstone":{"protocol_id":68},"chiseled_sandstone":{"protocol_id":69},"cut_sandstone":{"protocol_id":70},"note_block":{"protocol_id":71},"powered_rail":{"protocol_id":72},"detector_rail":{"protocol_id":73},"sticky_piston":{"protocol_id":74},"cobweb":{"protocol_id":75},"grass":{"protocol_id":76},"fern":{"protocol_id":77},"dead_bush":{"protocol_id":78},"seagrass":{"protocol_id":79},"sea_pickle":{"protocol_id":80},"piston":{"protocol_id":81},"white_wool":{"protocol_id":82},"orange_wool":{"protocol_id":83},"magenta_wool":{"protocol_id":84},"light_blue_wool":{"protocol_id":85},"yellow_wool":{"protocol_id":86},"lime_wool":{"protocol_id":87},"pink_wool":{"protocol_id":88},"gray_wool":{"protocol_id":89},"light_gray_wool":{"protocol_id":90},"cyan_wool":{"protocol_id":91},"purple_wool":{"protocol_id":92},"blue_wool":{"protocol_id":93},"brown_wool":{"protocol_id":94},"green_wool":{"protocol_id":95},"red_wool":{"protocol_id":96},"black_wool":{"protocol_id":97},"dandelion":{"protocol_id":98},"poppy":{"protocol_id":99},"blue_orchid":{"protocol_id":100},"allium":{"protocol_id":101},"azure_bluet":{"protocol_id":102},"red_tulip":{"protocol_id":103},"orange_tulip":{"protocol_id":104},"white_tulip":{"protocol_id":105},"pink_tulip":{"protocol_id":106},"oxeye_daisy":{"protocol_id":107},"brown_mushroom":{"protocol_id":108},"red_mushroom":{"protocol_id":109},"gold_block":{"protocol_id":110},"iron_block":{"protocol_id":111},"oak_slab":{"protocol_id":112},"spruce_slab":{"protocol_id":113},"birch_slab":{"protocol_id":114},"jungle_slab":{"protocol_id":115},"acacia_slab":{"protocol_id":116},"dark_oak_slab":{"protocol_id":117},"stone_slab":{"protocol_id":118},"sandstone_slab":{"protocol_id":119},"petrified_oak_slab":{"protocol_id":120},"cobblestone_slab":{"protocol_id":121},"brick_slab":{"protocol_id":122},"stone_brick_slab":{"protocol_id":123},"nether_brick_slab":{"protocol_id":124},"quartz_slab":{"protocol_id":125},"red_sandstone_slab":{"protocol_id":126},"purpur_slab":{"protocol_id":127},"prismarine_slab":{"protocol_id":128},"prismarine_brick_slab":{"protocol_id":129},"dark_prismarine_slab":{"protocol_id":130},"smooth_quartz":{"protocol_id":131},"smooth_red_sandstone":{"protocol_id":132},"smooth_sandstone":{"protocol_id":133},"smooth_stone":{"protocol_id":134},"bricks":{"protocol_id":135},"tnt":{"protocol_id":136},"bookshelf":{"protocol_id":137},"mossy_cobblestone":{"protocol_id":138},"obsidian":{"protocol_id":139},"torch":{"protocol_id":140},"end_rod":{"protocol_id":141},"chorus_plant":{"protocol_id":142},"chorus_flower":{"protocol_id":143},"purpur_block":{"protocol_id":144},"purpur_pillar":{"protocol_id":145},"purpur_stairs":{"protocol_id":146},"spawner":{"protocol_id":147},"oak_stairs":{"protocol_id":148},"chest":{"protocol_id":149},"diamond_ore":{"protocol_id":150},"diamond_block":{"protocol_id":151},"crafting_table":{"protocol_id":152},"farmland":{"protocol_id":153},"furnace":{"protocol_id":154},"ladder":{"protocol_id":155},"rail":{"protocol_id":156},"cobblestone_stairs":{"protocol_id":157},"lever":{"protocol_id":158},"stone_pressure_plate":{"protocol_id":159},"oak_pressure_plate":{"protocol_id":160},"spruce_pressure_plate":{"protocol_id":161},"birch_pressure_plate":{"protocol_id":162},"jungle_pressure_plate":{"protocol_id":163},"acacia_pressure_plate":{"protocol_id":164},"dark_oak_pressure_plate":{"protocol_id":165},"redstone_ore":{"protocol_id":166},"redstone_torch":{"protocol_id":167},"stone_button":{"protocol_id":168},"snow":{"protocol_id":169},"ice":{"protocol_id":170},"snow_block":{"protocol_id":171},"cactus":{"protocol_id":172},"clay":{"protocol_id":173},"jukebox":{"protocol_id":174},"oak_fence":{"protocol_id":175},"spruce_fence":{"protocol_id":176},"birch_fence":{"protocol_id":177},"jungle_fence":{"protocol_id":178},"acacia_fence":{"protocol_id":179},"dark_oak_fence":{"protocol_id":180},"pumpkin":{"protocol_id":181},"carved_pumpkin":{"protocol_id":182},"netherrack":{"protocol_id":183},"soul_sand":{"protocol_id":184},"glowstone":{"protocol_id":185},"jack_o_lantern":{"protocol_id":186},"oak_trapdoor":{"protocol_id":187},"spruce_trapdoor":{"protocol_id":188},"birch_trapdoor":{"protocol_id":189},"jungle_trapdoor":{"protocol_id":190},"acacia_trapdoor":{"protocol_id":191},"dark_oak_trapdoor":{"protocol_id":192},"infested_stone":{"protocol_id":193},"infested_cobblestone":{"protocol_id":194},"infested_stone_bricks":{"protocol_id":195},"infested_mossy_stone_bricks":{"protocol_id":196},"infested_cracked_stone_bricks":{"protocol_id":197},"infested_chiseled_stone_bricks":{"protocol_id":198},"stone_bricks":{"protocol_id":199},"mossy_stone_bricks":{"protocol_id":200},"cracked_stone_bricks":{"protocol_id":201},"chiseled_stone_bricks":{"protocol_id":202},"brown_mushroom_block":{"protocol_id":203},"red_mushroom_block":{"protocol_id":204},"mushroom_stem":{"protocol_id":205},"iron_bars":{"protocol_id":206},"glass_pane":{"protocol_id":207},"melon":{"protocol_id":208},"vine":{"protocol_id":209},"oak_fence_gate":{"protocol_id":210},"spruce_fence_gate":{"protocol_id":211},"birch_fence_gate":{"protocol_id":212},"jungle_fence_gate":{"protocol_id":213},"acacia_fence_gate":{"protocol_id":214},"dark_oak_fence_gate":{"protocol_id":215},"brick_stairs":{"protocol_id":216},"stone_brick_stairs":{"protocol_id":217},"mycelium":{"protocol_id":218},"lily_pad":{"protocol_id":219},"nether_bricks":{"protocol_id":220},"nether_brick_fence":{"protocol_id":221},"nether_brick_stairs":{"protocol_id":222},"enchanting_table":{"protocol_id":223},"end_portal_frame":{"protocol_id":224},"end_stone":{"protocol_id":225},"end_stone_bricks":{"protocol_id":226},"dragon_egg":{"protocol_id":227},"redstone_lamp":{"protocol_id":228},"sandstone_stairs":{"protocol_id":229},"emerald_ore":{"protocol_id":230},"ender_chest":{"protocol_id":231},"tripwire_hook":{"protocol_id":232},"emerald_block":{"protocol_id":233},"spruce_stairs":{"protocol_id":234},"birch_stairs":{"protocol_id":235},"jungle_stairs":{"protocol_id":236},"command_block":{"protocol_id":237},"beacon":{"protocol_id":238},"cobblestone_wall":{"protocol_id":239},"mossy_cobblestone_wall":{"protocol_id":240},"oak_button":{"protocol_id":241},"spruce_button":{"protocol_id":242},"birch_button":{"protocol_id":243},"jungle_button":{"protocol_id":244},"acacia_button":{"protocol_id":245},"dark_oak_button":{"protocol_id":246},"anvil":{"protocol_id":247},"chipped_anvil":{"protocol_id":248},"damaged_anvil":{"protocol_id":249},"trapped_chest":{"protocol_id":250},"light_weighted_pressure_plate":{"protocol_id":251},"heavy_weighted_pressure_plate":{"protocol_id":252},"daylight_detector":{"protocol_id":253},"redstone_block":{"protocol_id":254},"nether_quartz_ore":{"protocol_id":255},"hopper":{"protocol_id":256},"chiseled_quartz_block":{"protocol_id":257},"quartz_block":{"protocol_id":258},"quartz_pillar":{"protocol_id":259},"quartz_stairs":{"protocol_id":260},"activator_rail":{"protocol_id":261},"dropper":{"protocol_id":262},"white_terracotta":{"protocol_id":263},"orange_terracotta":{"protocol_id":264},"magenta_terracotta":{"protocol_id":265},"light_blue_terracotta":{"protocol_id":266},"yellow_terracotta":{"protocol_id":267},"lime_terracotta":{"protocol_id":268},"pink_terracotta":{"protocol_id":269},"gray_terracotta":{"protocol_id":270},"light_gray_terracotta":{"protocol_id":271},"cyan_terracotta":{"protocol_id":272},"purple_terracotta":{"protocol_id":273},"blue_terracotta":{"protocol_id":274},"brown_terracotta":{"protocol_id":275},"green_terracotta":{"protocol_id":276},"red_terracotta":{"protocol_id":277},"black_terracotta":{"protocol_id":278},"barrier":{"protocol_id":279},"iron_trapdoor":{"protocol_id":280},"hay_block":{"protocol_id":281},"white_carpet":{"protocol_id":282},"orange_carpet":{"protocol_id":283},"magenta_carpet":{"protocol_id":284},"light_blue_carpet":{"protocol_id":285},"yellow_carpet":{"protocol_id":286},"lime_carpet":{"protocol_id":287},"pink_carpet":{"protocol_id":288},"gray_carpet":{"protocol_id":289},"light_gray_carpet":{"protocol_id":290},"cyan_carpet":{"protocol_id":291},"purple_carpet":{"protocol_id":292},"blue_carpet":{"protocol_id":293},"brown_carpet":{"protocol_id":294},"green_carpet":{"protocol_id":295},"red_carpet":{"protocol_id":296},"black_carpet":{"protocol_id":297},"terracotta":{"protocol_id":298},"coal_block":{"protocol_id":299},"packed_ice":{"protocol_id":300},"acacia_stairs":{"protocol_id":301},"dark_oak_stairs":{"protocol_id":302},"slime_block":{"protocol_id":303},"grass_path":{"protocol_id":304},"sunflower":{"protocol_id":305},"lilac":{"protocol_id":306},"rose_bush":{"protocol_id":307},"peony":{"protocol_id":308},"tall_grass":{"protocol_id":309},"large_fern":{"protocol_id":310},"white_stained_glass":{"protocol_id":311},"orange_stained_glass":{"protocol_id":312},"magenta_stained_glass":{"protocol_id":313},"light_blue_stained_glass":{"protocol_id":314},"yellow_stained_glass":{"protocol_id":315},"lime_stained_glass":{"protocol_id":316},"pink_stained_glass":{"protocol_id":317},"gray_stained_glass":{"protocol_id":318},"light_gray_stained_glass":{"protocol_id":319},"cyan_stained_glass":{"protocol_id":320},"purple_stained_glass":{"protocol_id":321},"blue_stained_glass":{"protocol_id":322},"brown_stained_glass":{"protocol_id":323},"green_stained_glass":{"protocol_id":324},"red_stained_glass":{"protocol_id":325},"black_stained_glass":{"protocol_id":326},"white_stained_glass_pane":{"protocol_id":327},"orange_stained_glass_pane":{"protocol_id":328},"magenta_stained_glass_pane":{"protocol_id":329},"light_blue_stained_glass_pane":{"protocol_id":330},"yellow_stained_glass_pane":{"protocol_id":331},"lime_stained_glass_pane":{"protocol_id":332},"pink_stained_glass_pane":{"protocol_id":333},"gray_stained_glass_pane":{"protocol_id":334},"light_gray_stained_glass_pane":{"protocol_id":335},"cyan_stained_glass_pane":{"protocol_id":336},"purple_stained_glass_pane":{"protocol_id":337},"blue_stained_glass_pane":{"protocol_id":338},"brown_stained_glass_pane":{"protocol_id":339},"green_stained_glass_pane":{"protocol_id":340},"red_stained_glass_pane":{"protocol_id":341},"black_stained_glass_pane":{"protocol_id":342},"prismarine":{"protocol_id":343},"prismarine_bricks":{"protocol_id":344},"dark_prismarine":{"protocol_id":345},"prismarine_stairs":{"protocol_id":346},"prismarine_brick_stairs":{"protocol_id":347},"dark_prismarine_stairs":{"protocol_id":348},"sea_lantern":{"protocol_id":349},"red_sandstone":{"protocol_id":350},"chiseled_red_sandstone":{"protocol_id":351},"cut_red_sandstone":{"protocol_id":352},"red_sandstone_stairs":{"protocol_id":353},"repeating_command_block":{"protocol_id":354},"chain_command_block":{"protocol_id":355},"magma_block":{"protocol_id":356},"nether_wart_block":{"protocol_id":357},"red_nether_bricks":{"protocol_id":358},"bone_block":{"protocol_id":359},"structure_void":{"protocol_id":360},"observer":{"protocol_id":361},"shulker_box":{"protocol_id":362},"white_shulker_box":{"protocol_id":363},"orange_shulker_box":{"protocol_id":364},"magenta_shulker_box":{"protocol_id":365},"light_blue_shulker_box":{"protocol_id":366},"yellow_shulker_box":{"protocol_id":367},"lime_shulker_box":{"protocol_id":368},"pink_shulker_box":{"protocol_id":369},"gray_shulker_box":{"protocol_id":370},"light_gray_shulker_box":{"protocol_id":371},"cyan_shulker_box":{"protocol_id":372},"purple_shulker_box":{"protocol_id":373},"blue_shulker_box":{"protocol_id":374},"brown_shulker_box":{"protocol_id":375},"green_shulker_box":{"protocol_id":376},"red_shulker_box":{"protocol_id":377},"black_shulker_box":{"protocol_id":378},"white_glazed_terracotta":{"protocol_id":379},"orange_glazed_terracotta":{"protocol_id":380},"magenta_glazed_terracotta":{"protocol_id":381},"light_blue_glazed_terracotta":{"protocol_id":382},"yellow_glazed_terracotta":{"protocol_id":383},"lime_glazed_terracotta":{"protocol_id":384},"pink_glazed_terracotta":{"protocol_id":385},"gray_glazed_terracotta":{"protocol_id":386},"light_gray_glazed_terracotta":{"protocol_id":387},"cyan_glazed_terracotta":{"protocol_id":388},"purple_glazed_terracotta":{"protocol_id":389},"blue_glazed_terracotta":{"protocol_id":390},"brown_glazed_terracotta":{"protocol_id":391},"green_glazed_terracotta":{"protocol_id":392},"red_glazed_terracotta":{"protocol_id":393},"black_glazed_terracotta":{"protocol_id":394},"white_concrete":{"protocol_id":395},"orange_concrete":{"protocol_id":396},"magenta_concrete":{"protocol_id":397},"light_blue_concrete":{"protocol_id":398},"yellow_concrete":{"protocol_id":399},"lime_concrete":{"protocol_id":400},"pink_concrete":{"protocol_id":401},"gray_concrete":{"protocol_id":402},"light_gray_concrete":{"protocol_id":403},"cyan_concrete":{"protocol_id":404},"purple_concrete":{"protocol_id":405},"blue_concrete":{"protocol_id":406},"brown_concrete":{"protocol_id":407},"green_concrete":{"protocol_id":408},"red_concrete":{"protocol_id":409},"black_concrete":{"protocol_id":410},"white_concrete_powder":{"protocol_id":411},"orange_concrete_powder":{"protocol_id":412},"magenta_concrete_powder":{"protocol_id":413},"light_blue_concrete_powder":{"protocol_id":414},"yellow_concrete_powder":{"protocol_id":415},"lime_concrete_powder":{"protocol_id":416},"pink_concrete_powder":{"protocol_id":417},"gray_concrete_powder":{"protocol_id":418},"light_gray_concrete_powder":{"protocol_id":419},"cyan_concrete_powder":{"protocol_id":420},"purple_concrete_powder":{"protocol_id":421},"blue_concrete_powder":{"protocol_id":422},"brown_concrete_powder":{"protocol_id":423},"green_concrete_powder":{"protocol_id":424},"red_concrete_powder":{"protocol_id":425},"black_concrete_powder":{"protocol_id":426},"turtle_egg":{"protocol_id":427},"dead_tube_coral_block":{"protocol_id":428},"dead_brain_coral_block":{"protocol_id":429},"dead_bubble_coral_block":{"protocol_id":430},"dead_fire_coral_block":{"protocol_id":431},"dead_horn_coral_block":{"protocol_id":432},"tube_coral_block":{"protocol_id":433},"brain_coral_block":{"protocol_id":434},"bubble_coral_block":{"protocol_id":435},"fire_coral_block":{"protocol_id":436},"horn_coral_block":{"protocol_id":437},"tube_coral":{"protocol_id":438},"brain_coral":{"protocol_id":439},"bubble_coral":{"protocol_id":440},"fire_coral":{"protocol_id":441},"horn_coral":{"protocol_id":442},"dead_brain_coral":{"protocol_id":443},"dead_bubble_coral":{"protocol_id":444},"dead_fire_coral":{"protocol_id":445},"dead_horn_coral":{"protocol_id":446},"dead_tube_coral":{"protocol_id":447},"tube_coral_fan":{"protocol_id":448},"brain_coral_fan":{"protocol_id":449},"bubble_coral_fan":{"protocol_id":450},"fire_coral_fan":{"protocol_id":451},"horn_coral_fan":{"protocol_id":452},"dead_tube_coral_fan":{"protocol_id":453},"dead_brain_coral_fan":{"protocol_id":454},"dead_bubble_coral_fan":{"protocol_id":455},"dead_fire_coral_fan":{"protocol_id":456},"dead_horn_coral_fan":{"protocol_id":457},"blue_ice":{"protocol_id":458},"conduit":{"protocol_id":459},"iron_door":{"protocol_id":460},"oak_door":{"protocol_id":461},"spruce_door":{"protocol_id":462},"birch_door":{"protocol_id":463},"jungle_door":{"protocol_id":464},"acacia_door":{"protocol_id":465},"dark_oak_door":{"protocol_id":466},"repeater":{"protocol_id":467},"comparator":{"protocol_id":468},"structure_block":{"protocol_id":469},"turtle_helmet":{"protocol_id":470},"scute":{"protocol_id":471},"iron_shovel":{"protocol_id":472},"iron_pickaxe":{"protocol_id":473},"iron_axe":{"protocol_id":474},"flint_and_steel":{"protocol_id":475},"apple":{"protocol_id":476},"bow":{"protocol_id":477},"arrow":{"protocol_id":478},"coal":{"protocol_id":479},"charcoal":{"protocol_id":480},"diamond":{"protocol_id":481},"iron_ingot":{"protocol_id":482},"gold_ingot":{"protocol_id":483},"iron_sword":{"protocol_id":484},"wooden_sword":{"protocol_id":485},"wooden_shovel":{"protocol_id":486},"wooden_pickaxe":{"protocol_id":487},"wooden_axe":{"protocol_id":488},"stone_sword":{"protocol_id":489},"stone_shovel":{"protocol_id":490},"stone_pickaxe":{"protocol_id":491},"stone_axe":{"protocol_id":492},"diamond_sword":{"protocol_id":493},"diamond_shovel":{"protocol_id":494},"diamond_pickaxe":{"protocol_id":495},"diamond_axe":{"protocol_id":496},"stick":{"protocol_id":497},"bowl":{"protocol_id":498},"mushroom_stew":{"protocol_id":499},"golden_sword":{"protocol_id":500},"golden_shovel":{"protocol_id":501},"golden_pickaxe":{"protocol_id":502},"golden_axe":{"protocol_id":503},"string":{"protocol_id":504},"feather":{"protocol_id":505},"gunpowder":{"protocol_id":506},"wooden_hoe":{"protocol_id":507},"stone_hoe":{"protocol_id":508},"iron_hoe":{"protocol_id":509},"diamond_hoe":{"protocol_id":510},"golden_hoe":{"protocol_id":511},"wheat_seeds":{"protocol_id":512},"wheat":{"protocol_id":513},"bread":{"protocol_id":514},"leather_helmet":{"protocol_id":515},"leather_chestplate":{"protocol_id":516},"leather_leggings":{"protocol_id":517},"leather_boots":{"protocol_id":518},"chainmail_helmet":{"protocol_id":519},"chainmail_chestplate":{"protocol_id":520},"chainmail_leggings":{"protocol_id":521},"chainmail_boots":{"protocol_id":522},"iron_helmet":{"protocol_id":523},"iron_chestplate":{"protocol_id":524},"iron_leggings":{"protocol_id":525},"iron_boots":{"protocol_id":526},"diamond_helmet":{"protocol_id":527},"diamond_chestplate":{"protocol_id":528},"diamond_leggings":{"protocol_id":529},"diamond_boots":{"protocol_id":530},"golden_helmet":{"protocol_id":531},"golden_chestplate":{"protocol_id":532},"golden_leggings":{"protocol_id":533},"golden_boots":{"protocol_id":534},"flint":{"protocol_id":535},"porkchop":{"protocol_id":536},"cooked_porkchop":{"protocol_id":537},"painting":{"protocol_id":538},"golden_apple":{"protocol_id":539},"enchanted_golden_apple":{"protocol_id":540},"sign":{"protocol_id":541},"bucket":{"protocol_id":542},"water_bucket":{"protocol_id":543},"lava_bucket":{"protocol_id":544},"minecart":{"protocol_id":545},"saddle":{"protocol_id":546},"redstone":{"protocol_id":547},"snowball":{"protocol_id":548},"oak_boat":{"protocol_id":549},"leather":{"protocol_id":550},"milk_bucket":{"protocol_id":551},"pufferfish_bucket":{"protocol_id":552},"salmon_bucket":{"protocol_id":553},"cod_bucket":{"protocol_id":554},"tropical_fish_bucket":{"protocol_id":555},"brick":{"protocol_id":556},"clay_ball":{"protocol_id":557},"sugar_cane":{"protocol_id":558},"kelp":{"protocol_id":559},"dried_kelp_block":{"protocol_id":560},"paper":{"protocol_id":561},"book":{"protocol_id":562},"slime_ball":{"protocol_id":563},"chest_minecart":{"protocol_id":564},"furnace_minecart":{"protocol_id":565},"egg":{"protocol_id":566},"compass":{"protocol_id":567},"fishing_rod":{"protocol_id":568},"clock":{"protocol_id":569},"glowstone_dust":{"protocol_id":570},"cod":{"protocol_id":571},"salmon":{"protocol_id":572},"tropical_fish":{"protocol_id":573},"pufferfish":{"protocol_id":574},"cooked_cod":{"protocol_id":575},"cooked_salmon":{"protocol_id":576},"ink_sac":{"protocol_id":577},"rose_red":{"protocol_id":578},"cactus_green":{"protocol_id":579},"cocoa_beans":{"protocol_id":580},"lapis_lazuli":{"protocol_id":581},"purple_dye":{"protocol_id":582},"cyan_dye":{"protocol_id":583},"light_gray_dye":{"protocol_id":584},"gray_dye":{"protocol_id":585},"pink_dye":{"protocol_id":586},"lime_dye":{"protocol_id":587},"dandelion_yellow":{"protocol_id":588},"light_blue_dye":{"protocol_id":589},"magenta_dye":{"protocol_id":590},"orange_dye":{"protocol_id":591},"bone_meal":{"protocol_id":592},"bone":{"protocol_id":593},"sugar":{"protocol_id":594},"cake":{"protocol_id":595},"white_bed":{"protocol_id":596},"orange_bed":{"protocol_id":597},"magenta_bed":{"protocol_id":598},"light_blue_bed":{"protocol_id":599},"yellow_bed":{"protocol_id":600},"lime_bed":{"protocol_id":601},"pink_bed":{"protocol_id":602},"gray_bed":{"protocol_id":603},"light_gray_bed":{"protocol_id":604},"cyan_bed":{"protocol_id":605},"purple_bed":{"protocol_id":606},"blue_bed":{"protocol_id":607},"brown_bed":{"protocol_id":608},"green_bed":{"protocol_id":609},"red_bed":{"protocol_id":610},"black_bed":{"protocol_id":611},"cookie":{"protocol_id":612},"filled_map":{"protocol_id":613},"shears":{"protocol_id":614},"melon_slice":{"protocol_id":615},"dried_kelp":{"protocol_id":616},"pumpkin_seeds":{"protocol_id":617},"melon_seeds":{"protocol_id":618},"beef":{"protocol_id":619},"cooked_beef":{"protocol_id":620},"chicken":{"protocol_id":621},"cooked_chicken":{"protocol_id":622},"rotten_flesh":{"protocol_id":623},"ender_pearl":{"protocol_id":624},"blaze_rod":{"protocol_id":625},"ghast_tear":{"protocol_id":626},"gold_nugget":{"protocol_id":627},"nether_wart":{"protocol_id":628},"potion":{"protocol_id":629},"glass_bottle":{"protocol_id":630},"spider_eye":{"protocol_id":631},"fermented_spider_eye":{"protocol_id":632},"blaze_powder":{"protocol_id":633},"magma_cream":{"protocol_id":634},"brewing_stand":{"protocol_id":635},"cauldron":{"protocol_id":636},"ender_eye":{"protocol_id":637},"glistering_melon_slice":{"protocol_id":638},"bat_spawn_egg":{"protocol_id":639},"blaze_spawn_egg":{"protocol_id":640},"cave_spider_spawn_egg":{"protocol_id":641},"chicken_spawn_egg":{"protocol_id":642},"cod_spawn_egg":{"protocol_id":643},"cow_spawn_egg":{"protocol_id":644},"creeper_spawn_egg":{"protocol_id":645},"dolphin_spawn_egg":{"protocol_id":646},"donkey_spawn_egg":{"protocol_id":647},"drowned_spawn_egg":{"protocol_id":648},"elder_guardian_spawn_egg":{"protocol_id":649},"enderman_spawn_egg":{"protocol_id":650},"endermite_spawn_egg":{"protocol_id":651},"evoker_spawn_egg":{"protocol_id":652},"ghast_spawn_egg":{"protocol_id":653},"guardian_spawn_egg":{"protocol_id":654},"horse_spawn_egg":{"protocol_id":655},"husk_spawn_egg":{"protocol_id":656},"llama_spawn_egg":{"protocol_id":657},"magma_cube_spawn_egg":{"protocol_id":658},"mooshroom_spawn_egg":{"protocol_id":659},"mule_spawn_egg":{"protocol_id":660},"ocelot_spawn_egg":{"protocol_id":661},"parrot_spawn_egg":{"protocol_id":662},"phantom_spawn_egg":{"protocol_id":663},"pig_spawn_egg":{"protocol_id":664},"polar_bear_spawn_egg":{"protocol_id":665},"pufferfish_spawn_egg":{"protocol_id":666},"rabbit_spawn_egg":{"protocol_id":667},"salmon_spawn_egg":{"protocol_id":668},"sheep_spawn_egg":{"protocol_id":669},"shulker_spawn_egg":{"protocol_id":670},"silverfish_spawn_egg":{"protocol_id":671},"skeleton_spawn_egg":{"protocol_id":672},"skeleton_horse_spawn_egg":{"protocol_id":673},"slime_spawn_egg":{"protocol_id":674},"spider_spawn_egg":{"protocol_id":675},"squid_spawn_egg":{"protocol_id":676},"stray_spawn_egg":{"protocol_id":677},"tropical_fish_spawn_egg":{"protocol_id":678},"turtle_spawn_egg":{"protocol_id":679},"vex_spawn_egg":{"protocol_id":680},"villager_spawn_egg":{"protocol_id":681},"vindicator_spawn_egg":{"protocol_id":682},"witch_spawn_egg":{"protocol_id":683},"wither_skeleton_spawn_egg":{"protocol_id":684},"wolf_spawn_egg":{"protocol_id":685},"zombie_spawn_egg":{"protocol_id":686},"zombie_horse_spawn_egg":{"protocol_id":687},"zombie_pigman_spawn_egg":{"protocol_id":688},"zombie_villager_spawn_egg":{"protocol_id":689},"experience_bottle":{"protocol_id":690},"fire_charge":{"protocol_id":691},"writable_book":{"protocol_id":692},"written_book":{"protocol_id":693},"emerald":{"protocol_id":694},"item_frame":{"protocol_id":695},"flower_pot":{"protocol_id":696},"carrot":{"protocol_id":697},"potato":{"protocol_id":698},"baked_potato":{"protocol_id":699},"poisonous_potato":{"protocol_id":700},"map":{"protocol_id":701},"golden_carrot":{"protocol_id":702},"skeleton_skull":{"protocol_id":703},"wither_skeleton_skull":{"protocol_id":704},"player_head":{"protocol_id":705},"zombie_head":{"protocol_id":706},"creeper_head":{"protocol_id":707},"dragon_head":{"protocol_id":708},"carrot_on_a_stick":{"protocol_id":709},"nether_star":{"protocol_id":710},"pumpkin_pie":{"protocol_id":711},"firework_rocket":{"protocol_id":712},"firework_star":{"protocol_id":713},"enchanted_book":{"protocol_id":714},"nether_brick":{"protocol_id":715},"quartz":{"protocol_id":716},"tnt_minecart":{"protocol_id":717},"hopper_minecart":{"protocol_id":718},"prismarine_shard":{"protocol_id":719},"prismarine_crystals":{"protocol_id":720},"rabbit":{"protocol_id":721},"cooked_rabbit":{"protocol_id":722},"rabbit_stew":{"protocol_id":723},"rabbit_foot":{"protocol_id":724},"rabbit_hide":{"protocol_id":725},"armor_stand":{"protocol_id":726},"iron_horse_armor":{"protocol_id":727},"golden_horse_armor":{"protocol_id":728},"diamond_horse_armor":{"protocol_id":729},"lead":{"protocol_id":730},"name_tag":{"protocol_id":731},"command_block_minecart":{"protocol_id":732},"mutton":{"protocol_id":733},"cooked_mutton":{"protocol_id":734},"white_banner":{"protocol_id":735},"orange_banner":{"protocol_id":736},"magenta_banner":{"protocol_id":737},"light_blue_banner":{"protocol_id":738},"yellow_banner":{"protocol_id":739},"lime_banner":{"protocol_id":740},"pink_banner":{"protocol_id":741},"gray_banner":{"protocol_id":742},"light_gray_banner":{"protocol_id":743},"cyan_banner":{"protocol_id":744},"purple_banner":{"protocol_id":745},"blue_banner":{"protocol_id":746},"brown_banner":{"protocol_id":747},"green_banner":{"protocol_id":748},"red_banner":{"protocol_id":749},"black_banner":{"protocol_id":750},"end_crystal":{"protocol_id":751},"chorus_fruit":{"protocol_id":752},"popped_chorus_fruit":{"protocol_id":753},"beetroot":{"protocol_id":754},"beetroot_seeds":{"protocol_id":755},"beetroot_soup":{"protocol_id":756},"dragon_breath":{"protocol_id":757},"splash_potion":{"protocol_id":758},"spectral_arrow":{"protocol_id":759},"tipped_arrow":{"protocol_id":760},"lingering_potion":{"protocol_id":761},"shield":{"protocol_id":762},"elytra":{"protocol_id":763},"spruce_boat":{"protocol_id":764},"birch_boat":{"protocol_id":765},"jungle_boat":{"protocol_id":766},"acacia_boat":{"protocol_id":767},"dark_oak_boat":{"protocol_id":768},"totem_of_undying":{"protocol_id":769},"shulker_shell":{"protocol_id":770},"iron_nugget":{"protocol_id":771},"knowledge_book":{"protocol_id":772},"debug_stick":{"protocol_id":773},"music_disc_13":{"protocol_id":774},"music_disc_cat":{"protocol_id":775},"music_disc_blocks":{"protocol_id":776},"music_disc_chirp":{"protocol_id":777},"music_disc_far":{"protocol_id":778},"music_disc_mall":{"protocol_id":779},"music_disc_mellohi":{"protocol_id":780},"music_disc_stal":{"protocol_id":781},"music_disc_strad":{"protocol_id":782},"music_disc_ward":{"protocol_id":783},"music_disc_11":{"protocol_id":784},"music_disc_wait":{"protocol_id":785},"trident":{"protocol_id":786},"phantom_membrane":{"protocol_id":787},"nautilus_shell":{"protocol_id":788},"heart_of_the_sea":{"protocol_id":789}}} \ 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 new file mode 100644 index 000000000..09f989e8f --- /dev/null +++ b/src/main/resources/assets/mapping/1.13.2/registries.json @@ -0,0 +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}}}}} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/1.14.4/blocks.json b/src/main/resources/assets/mapping/1.14.4/blocks.json new file mode 100644 index 000000000..f2a8d4834 --- /dev/null +++ b/src/main/resources/assets/mapping/1.14.4/blocks.json @@ -0,0 +1 @@ +{"minecraft":{"air":{"states":[{"id":0}]},"stone":{"states":[{"id":1}]},"granite":{"states":[{"id":2}]},"polished_granite":{"states":[{"id":3}]},"diorite":{"states":[{"id":4}]},"polished_diorite":{"states":[{"id":5}]},"andesite":{"states":[{"id":6}]},"polished_andesite":{"states":[{"id":7}]},"grass_block":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":8},{"properties":{"snowy":"false"},"id":9}]},"dirt":{"states":[{"id":10}]},"coarse_dirt":{"states":[{"id":11}]},"podzol":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":12},{"properties":{"snowy":"false"},"id":13}]},"cobblestone":{"states":[{"id":14}]},"oak_planks":{"states":[{"id":15}]},"spruce_planks":{"states":[{"id":16}]},"birch_planks":{"states":[{"id":17}]},"jungle_planks":{"states":[{"id":18}]},"acacia_planks":{"states":[{"id":19}]},"dark_oak_planks":{"states":[{"id":20}]},"oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":21},{"properties":{"stage":"1"},"id":22}]},"spruce_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":23},{"properties":{"stage":"1"},"id":24}]},"birch_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":25},{"properties":{"stage":"1"},"id":26}]},"jungle_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":27},{"properties":{"stage":"1"},"id":28}]},"acacia_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":29},{"properties":{"stage":"1"},"id":30}]},"dark_oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":31},{"properties":{"stage":"1"},"id":32}]},"bedrock":{"states":[{"id":33}]},"water":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":34},{"properties":{"level":"1"},"id":35},{"properties":{"level":"2"},"id":36},{"properties":{"level":"3"},"id":37},{"properties":{"level":"4"},"id":38},{"properties":{"level":"5"},"id":39},{"properties":{"level":"6"},"id":40},{"properties":{"level":"7"},"id":41},{"properties":{"level":"8"},"id":42},{"properties":{"level":"9"},"id":43},{"properties":{"level":"10"},"id":44},{"properties":{"level":"11"},"id":45},{"properties":{"level":"12"},"id":46},{"properties":{"level":"13"},"id":47},{"properties":{"level":"14"},"id":48},{"properties":{"level":"15"},"id":49}]},"lava":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":50},{"properties":{"level":"1"},"id":51},{"properties":{"level":"2"},"id":52},{"properties":{"level":"3"},"id":53},{"properties":{"level":"4"},"id":54},{"properties":{"level":"5"},"id":55},{"properties":{"level":"6"},"id":56},{"properties":{"level":"7"},"id":57},{"properties":{"level":"8"},"id":58},{"properties":{"level":"9"},"id":59},{"properties":{"level":"10"},"id":60},{"properties":{"level":"11"},"id":61},{"properties":{"level":"12"},"id":62},{"properties":{"level":"13"},"id":63},{"properties":{"level":"14"},"id":64},{"properties":{"level":"15"},"id":65}]},"sand":{"states":[{"id":66}]},"red_sand":{"states":[{"id":67}]},"gravel":{"states":[{"id":68}]},"gold_ore":{"states":[{"id":69}]},"iron_ore":{"states":[{"id":70}]},"coal_ore":{"states":[{"id":71}]},"oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":72},{"properties":{"axis":"y"},"id":73},{"properties":{"axis":"z"},"id":74}]},"spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":75},{"properties":{"axis":"y"},"id":76},{"properties":{"axis":"z"},"id":77}]},"birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":78},{"properties":{"axis":"y"},"id":79},{"properties":{"axis":"z"},"id":80}]},"jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":81},{"properties":{"axis":"y"},"id":82},{"properties":{"axis":"z"},"id":83}]},"acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":84},{"properties":{"axis":"y"},"id":85},{"properties":{"axis":"z"},"id":86}]},"dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":87},{"properties":{"axis":"y"},"id":88},{"properties":{"axis":"z"},"id":89}]},"stripped_spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":90},{"properties":{"axis":"y"},"id":91},{"properties":{"axis":"z"},"id":92}]},"stripped_birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":93},{"properties":{"axis":"y"},"id":94},{"properties":{"axis":"z"},"id":95}]},"stripped_jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":96},{"properties":{"axis":"y"},"id":97},{"properties":{"axis":"z"},"id":98}]},"stripped_acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":99},{"properties":{"axis":"y"},"id":100},{"properties":{"axis":"z"},"id":101}]},"stripped_dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":102},{"properties":{"axis":"y"},"id":103},{"properties":{"axis":"z"},"id":104}]},"stripped_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":105},{"properties":{"axis":"y"},"id":106},{"properties":{"axis":"z"},"id":107}]},"oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":108},{"properties":{"axis":"y"},"id":109},{"properties":{"axis":"z"},"id":110}]},"spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":111},{"properties":{"axis":"y"},"id":112},{"properties":{"axis":"z"},"id":113}]},"birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":114},{"properties":{"axis":"y"},"id":115},{"properties":{"axis":"z"},"id":116}]},"jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":117},{"properties":{"axis":"y"},"id":118},{"properties":{"axis":"z"},"id":119}]},"acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":120},{"properties":{"axis":"y"},"id":121},{"properties":{"axis":"z"},"id":122}]},"dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":123},{"properties":{"axis":"y"},"id":124},{"properties":{"axis":"z"},"id":125}]},"stripped_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":126},{"properties":{"axis":"y"},"id":127},{"properties":{"axis":"z"},"id":128}]},"stripped_spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":129},{"properties":{"axis":"y"},"id":130},{"properties":{"axis":"z"},"id":131}]},"stripped_birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":132},{"properties":{"axis":"y"},"id":133},{"properties":{"axis":"z"},"id":134}]},"stripped_jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":135},{"properties":{"axis":"y"},"id":136},{"properties":{"axis":"z"},"id":137}]},"stripped_acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":138},{"properties":{"axis":"y"},"id":139},{"properties":{"axis":"z"},"id":140}]},"stripped_dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":141},{"properties":{"axis":"y"},"id":142},{"properties":{"axis":"z"},"id":143}]},"oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":144},{"properties":{"distance":"1","persistent":"false"},"id":145},{"properties":{"distance":"2","persistent":"true"},"id":146},{"properties":{"distance":"2","persistent":"false"},"id":147},{"properties":{"distance":"3","persistent":"true"},"id":148},{"properties":{"distance":"3","persistent":"false"},"id":149},{"properties":{"distance":"4","persistent":"true"},"id":150},{"properties":{"distance":"4","persistent":"false"},"id":151},{"properties":{"distance":"5","persistent":"true"},"id":152},{"properties":{"distance":"5","persistent":"false"},"id":153},{"properties":{"distance":"6","persistent":"true"},"id":154},{"properties":{"distance":"6","persistent":"false"},"id":155},{"properties":{"distance":"7","persistent":"true"},"id":156},{"properties":{"distance":"7","persistent":"false"},"id":157}]},"spruce_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":158},{"properties":{"distance":"1","persistent":"false"},"id":159},{"properties":{"distance":"2","persistent":"true"},"id":160},{"properties":{"distance":"2","persistent":"false"},"id":161},{"properties":{"distance":"3","persistent":"true"},"id":162},{"properties":{"distance":"3","persistent":"false"},"id":163},{"properties":{"distance":"4","persistent":"true"},"id":164},{"properties":{"distance":"4","persistent":"false"},"id":165},{"properties":{"distance":"5","persistent":"true"},"id":166},{"properties":{"distance":"5","persistent":"false"},"id":167},{"properties":{"distance":"6","persistent":"true"},"id":168},{"properties":{"distance":"6","persistent":"false"},"id":169},{"properties":{"distance":"7","persistent":"true"},"id":170},{"properties":{"distance":"7","persistent":"false"},"id":171}]},"birch_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":172},{"properties":{"distance":"1","persistent":"false"},"id":173},{"properties":{"distance":"2","persistent":"true"},"id":174},{"properties":{"distance":"2","persistent":"false"},"id":175},{"properties":{"distance":"3","persistent":"true"},"id":176},{"properties":{"distance":"3","persistent":"false"},"id":177},{"properties":{"distance":"4","persistent":"true"},"id":178},{"properties":{"distance":"4","persistent":"false"},"id":179},{"properties":{"distance":"5","persistent":"true"},"id":180},{"properties":{"distance":"5","persistent":"false"},"id":181},{"properties":{"distance":"6","persistent":"true"},"id":182},{"properties":{"distance":"6","persistent":"false"},"id":183},{"properties":{"distance":"7","persistent":"true"},"id":184},{"properties":{"distance":"7","persistent":"false"},"id":185}]},"jungle_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":186},{"properties":{"distance":"1","persistent":"false"},"id":187},{"properties":{"distance":"2","persistent":"true"},"id":188},{"properties":{"distance":"2","persistent":"false"},"id":189},{"properties":{"distance":"3","persistent":"true"},"id":190},{"properties":{"distance":"3","persistent":"false"},"id":191},{"properties":{"distance":"4","persistent":"true"},"id":192},{"properties":{"distance":"4","persistent":"false"},"id":193},{"properties":{"distance":"5","persistent":"true"},"id":194},{"properties":{"distance":"5","persistent":"false"},"id":195},{"properties":{"distance":"6","persistent":"true"},"id":196},{"properties":{"distance":"6","persistent":"false"},"id":197},{"properties":{"distance":"7","persistent":"true"},"id":198},{"properties":{"distance":"7","persistent":"false"},"id":199}]},"acacia_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":200},{"properties":{"distance":"1","persistent":"false"},"id":201},{"properties":{"distance":"2","persistent":"true"},"id":202},{"properties":{"distance":"2","persistent":"false"},"id":203},{"properties":{"distance":"3","persistent":"true"},"id":204},{"properties":{"distance":"3","persistent":"false"},"id":205},{"properties":{"distance":"4","persistent":"true"},"id":206},{"properties":{"distance":"4","persistent":"false"},"id":207},{"properties":{"distance":"5","persistent":"true"},"id":208},{"properties":{"distance":"5","persistent":"false"},"id":209},{"properties":{"distance":"6","persistent":"true"},"id":210},{"properties":{"distance":"6","persistent":"false"},"id":211},{"properties":{"distance":"7","persistent":"true"},"id":212},{"properties":{"distance":"7","persistent":"false"},"id":213}]},"dark_oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":214},{"properties":{"distance":"1","persistent":"false"},"id":215},{"properties":{"distance":"2","persistent":"true"},"id":216},{"properties":{"distance":"2","persistent":"false"},"id":217},{"properties":{"distance":"3","persistent":"true"},"id":218},{"properties":{"distance":"3","persistent":"false"},"id":219},{"properties":{"distance":"4","persistent":"true"},"id":220},{"properties":{"distance":"4","persistent":"false"},"id":221},{"properties":{"distance":"5","persistent":"true"},"id":222},{"properties":{"distance":"5","persistent":"false"},"id":223},{"properties":{"distance":"6","persistent":"true"},"id":224},{"properties":{"distance":"6","persistent":"false"},"id":225},{"properties":{"distance":"7","persistent":"true"},"id":226},{"properties":{"distance":"7","persistent":"false"},"id":227}]},"sponge":{"states":[{"id":228}]},"wet_sponge":{"states":[{"id":229}]},"glass":{"states":[{"id":230}]},"lapis_ore":{"states":[{"id":231}]},"lapis_block":{"states":[{"id":232}]},"dispenser":{"properties":{"facing":["north","east","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":233},{"properties":{"facing":"north","triggered":"false"},"id":234},{"properties":{"facing":"east","triggered":"true"},"id":235},{"properties":{"facing":"east","triggered":"false"},"id":236},{"properties":{"facing":"south","triggered":"true"},"id":237},{"properties":{"facing":"south","triggered":"false"},"id":238},{"properties":{"facing":"west","triggered":"true"},"id":239},{"properties":{"facing":"west","triggered":"false"},"id":240},{"properties":{"facing":"up","triggered":"true"},"id":241},{"properties":{"facing":"up","triggered":"false"},"id":242},{"properties":{"facing":"down","triggered":"true"},"id":243},{"properties":{"facing":"down","triggered":"false"},"id":244}]},"sandstone":{"states":[{"id":245}]},"chiseled_sandstone":{"states":[{"id":246}]},"cut_sandstone":{"states":[{"id":247}]},"note_block":{"properties":{"instrument":["harp","basedrum","snare","hat","bass","flute","bell","guitar","chime","xylophone","iron_xylophone","cow_bell","didgeridoo","bit","banjo","pling"],"note":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24"],"powered":["true","false"]},"states":[{"properties":{"instrument":"harp","note":"0","powered":"true"},"id":248},{"properties":{"instrument":"harp","note":"0","powered":"false"},"id":249},{"properties":{"instrument":"harp","note":"1","powered":"true"},"id":250},{"properties":{"instrument":"harp","note":"1","powered":"false"},"id":251},{"properties":{"instrument":"harp","note":"2","powered":"true"},"id":252},{"properties":{"instrument":"harp","note":"2","powered":"false"},"id":253},{"properties":{"instrument":"harp","note":"3","powered":"true"},"id":254},{"properties":{"instrument":"harp","note":"3","powered":"false"},"id":255},{"properties":{"instrument":"harp","note":"4","powered":"true"},"id":256},{"properties":{"instrument":"harp","note":"4","powered":"false"},"id":257},{"properties":{"instrument":"harp","note":"5","powered":"true"},"id":258},{"properties":{"instrument":"harp","note":"5","powered":"false"},"id":259},{"properties":{"instrument":"harp","note":"6","powered":"true"},"id":260},{"properties":{"instrument":"harp","note":"6","powered":"false"},"id":261},{"properties":{"instrument":"harp","note":"7","powered":"true"},"id":262},{"properties":{"instrument":"harp","note":"7","powered":"false"},"id":263},{"properties":{"instrument":"harp","note":"8","powered":"true"},"id":264},{"properties":{"instrument":"harp","note":"8","powered":"false"},"id":265},{"properties":{"instrument":"harp","note":"9","powered":"true"},"id":266},{"properties":{"instrument":"harp","note":"9","powered":"false"},"id":267},{"properties":{"instrument":"harp","note":"10","powered":"true"},"id":268},{"properties":{"instrument":"harp","note":"10","powered":"false"},"id":269},{"properties":{"instrument":"harp","note":"11","powered":"true"},"id":270},{"properties":{"instrument":"harp","note":"11","powered":"false"},"id":271},{"properties":{"instrument":"harp","note":"12","powered":"true"},"id":272},{"properties":{"instrument":"harp","note":"12","powered":"false"},"id":273},{"properties":{"instrument":"harp","note":"13","powered":"true"},"id":274},{"properties":{"instrument":"harp","note":"13","powered":"false"},"id":275},{"properties":{"instrument":"harp","note":"14","powered":"true"},"id":276},{"properties":{"instrument":"harp","note":"14","powered":"false"},"id":277},{"properties":{"instrument":"harp","note":"15","powered":"true"},"id":278},{"properties":{"instrument":"harp","note":"15","powered":"false"},"id":279},{"properties":{"instrument":"harp","note":"16","powered":"true"},"id":280},{"properties":{"instrument":"harp","note":"16","powered":"false"},"id":281},{"properties":{"instrument":"harp","note":"17","powered":"true"},"id":282},{"properties":{"instrument":"harp","note":"17","powered":"false"},"id":283},{"properties":{"instrument":"harp","note":"18","powered":"true"},"id":284},{"properties":{"instrument":"harp","note":"18","powered":"false"},"id":285},{"properties":{"instrument":"harp","note":"19","powered":"true"},"id":286},{"properties":{"instrument":"harp","note":"19","powered":"false"},"id":287},{"properties":{"instrument":"harp","note":"20","powered":"true"},"id":288},{"properties":{"instrument":"harp","note":"20","powered":"false"},"id":289},{"properties":{"instrument":"harp","note":"21","powered":"true"},"id":290},{"properties":{"instrument":"harp","note":"21","powered":"false"},"id":291},{"properties":{"instrument":"harp","note":"22","powered":"true"},"id":292},{"properties":{"instrument":"harp","note":"22","powered":"false"},"id":293},{"properties":{"instrument":"harp","note":"23","powered":"true"},"id":294},{"properties":{"instrument":"harp","note":"23","powered":"false"},"id":295},{"properties":{"instrument":"harp","note":"24","powered":"true"},"id":296},{"properties":{"instrument":"harp","note":"24","powered":"false"},"id":297},{"properties":{"instrument":"basedrum","note":"0","powered":"true"},"id":298},{"properties":{"instrument":"basedrum","note":"0","powered":"false"},"id":299},{"properties":{"instrument":"basedrum","note":"1","powered":"true"},"id":300},{"properties":{"instrument":"basedrum","note":"1","powered":"false"},"id":301},{"properties":{"instrument":"basedrum","note":"2","powered":"true"},"id":302},{"properties":{"instrument":"basedrum","note":"2","powered":"false"},"id":303},{"properties":{"instrument":"basedrum","note":"3","powered":"true"},"id":304},{"properties":{"instrument":"basedrum","note":"3","powered":"false"},"id":305},{"properties":{"instrument":"basedrum","note":"4","powered":"true"},"id":306},{"properties":{"instrument":"basedrum","note":"4","powered":"false"},"id":307},{"properties":{"instrument":"basedrum","note":"5","powered":"true"},"id":308},{"properties":{"instrument":"basedrum","note":"5","powered":"false"},"id":309},{"properties":{"instrument":"basedrum","note":"6","powered":"true"},"id":310},{"properties":{"instrument":"basedrum","note":"6","powered":"false"},"id":311},{"properties":{"instrument":"basedrum","note":"7","powered":"true"},"id":312},{"properties":{"instrument":"basedrum","note":"7","powered":"false"},"id":313},{"properties":{"instrument":"basedrum","note":"8","powered":"true"},"id":314},{"properties":{"instrument":"basedrum","note":"8","powered":"false"},"id":315},{"properties":{"instrument":"basedrum","note":"9","powered":"true"},"id":316},{"properties":{"instrument":"basedrum","note":"9","powered":"false"},"id":317},{"properties":{"instrument":"basedrum","note":"10","powered":"true"},"id":318},{"properties":{"instrument":"basedrum","note":"10","powered":"false"},"id":319},{"properties":{"instrument":"basedrum","note":"11","powered":"true"},"id":320},{"properties":{"instrument":"basedrum","note":"11","powered":"false"},"id":321},{"properties":{"instrument":"basedrum","note":"12","powered":"true"},"id":322},{"properties":{"instrument":"basedrum","note":"12","powered":"false"},"id":323},{"properties":{"instrument":"basedrum","note":"13","powered":"true"},"id":324},{"properties":{"instrument":"basedrum","note":"13","powered":"false"},"id":325},{"properties":{"instrument":"basedrum","note":"14","powered":"true"},"id":326},{"properties":{"instrument":"basedrum","note":"14","powered":"false"},"id":327},{"properties":{"instrument":"basedrum","note":"15","powered":"true"},"id":328},{"properties":{"instrument":"basedrum","note":"15","powered":"false"},"id":329},{"properties":{"instrument":"basedrum","note":"16","powered":"true"},"id":330},{"properties":{"instrument":"basedrum","note":"16","powered":"false"},"id":331},{"properties":{"instrument":"basedrum","note":"17","powered":"true"},"id":332},{"properties":{"instrument":"basedrum","note":"17","powered":"false"},"id":333},{"properties":{"instrument":"basedrum","note":"18","powered":"true"},"id":334},{"properties":{"instrument":"basedrum","note":"18","powered":"false"},"id":335},{"properties":{"instrument":"basedrum","note":"19","powered":"true"},"id":336},{"properties":{"instrument":"basedrum","note":"19","powered":"false"},"id":337},{"properties":{"instrument":"basedrum","note":"20","powered":"true"},"id":338},{"properties":{"instrument":"basedrum","note":"20","powered":"false"},"id":339},{"properties":{"instrument":"basedrum","note":"21","powered":"true"},"id":340},{"properties":{"instrument":"basedrum","note":"21","powered":"false"},"id":341},{"properties":{"instrument":"basedrum","note":"22","powered":"true"},"id":342},{"properties":{"instrument":"basedrum","note":"22","powered":"false"},"id":343},{"properties":{"instrument":"basedrum","note":"23","powered":"true"},"id":344},{"properties":{"instrument":"basedrum","note":"23","powered":"false"},"id":345},{"properties":{"instrument":"basedrum","note":"24","powered":"true"},"id":346},{"properties":{"instrument":"basedrum","note":"24","powered":"false"},"id":347},{"properties":{"instrument":"snare","note":"0","powered":"true"},"id":348},{"properties":{"instrument":"snare","note":"0","powered":"false"},"id":349},{"properties":{"instrument":"snare","note":"1","powered":"true"},"id":350},{"properties":{"instrument":"snare","note":"1","powered":"false"},"id":351},{"properties":{"instrument":"snare","note":"2","powered":"true"},"id":352},{"properties":{"instrument":"snare","note":"2","powered":"false"},"id":353},{"properties":{"instrument":"snare","note":"3","powered":"true"},"id":354},{"properties":{"instrument":"snare","note":"3","powered":"false"},"id":355},{"properties":{"instrument":"snare","note":"4","powered":"true"},"id":356},{"properties":{"instrument":"snare","note":"4","powered":"false"},"id":357},{"properties":{"instrument":"snare","note":"5","powered":"true"},"id":358},{"properties":{"instrument":"snare","note":"5","powered":"false"},"id":359},{"properties":{"instrument":"snare","note":"6","powered":"true"},"id":360},{"properties":{"instrument":"snare","note":"6","powered":"false"},"id":361},{"properties":{"instrument":"snare","note":"7","powered":"true"},"id":362},{"properties":{"instrument":"snare","note":"7","powered":"false"},"id":363},{"properties":{"instrument":"snare","note":"8","powered":"true"},"id":364},{"properties":{"instrument":"snare","note":"8","powered":"false"},"id":365},{"properties":{"instrument":"snare","note":"9","powered":"true"},"id":366},{"properties":{"instrument":"snare","note":"9","powered":"false"},"id":367},{"properties":{"instrument":"snare","note":"10","powered":"true"},"id":368},{"properties":{"instrument":"snare","note":"10","powered":"false"},"id":369},{"properties":{"instrument":"snare","note":"11","powered":"true"},"id":370},{"properties":{"instrument":"snare","note":"11","powered":"false"},"id":371},{"properties":{"instrument":"snare","note":"12","powered":"true"},"id":372},{"properties":{"instrument":"snare","note":"12","powered":"false"},"id":373},{"properties":{"instrument":"snare","note":"13","powered":"true"},"id":374},{"properties":{"instrument":"snare","note":"13","powered":"false"},"id":375},{"properties":{"instrument":"snare","note":"14","powered":"true"},"id":376},{"properties":{"instrument":"snare","note":"14","powered":"false"},"id":377},{"properties":{"instrument":"snare","note":"15","powered":"true"},"id":378},{"properties":{"instrument":"snare","note":"15","powered":"false"},"id":379},{"properties":{"instrument":"snare","note":"16","powered":"true"},"id":380},{"properties":{"instrument":"snare","note":"16","powered":"false"},"id":381},{"properties":{"instrument":"snare","note":"17","powered":"true"},"id":382},{"properties":{"instrument":"snare","note":"17","powered":"false"},"id":383},{"properties":{"instrument":"snare","note":"18","powered":"true"},"id":384},{"properties":{"instrument":"snare","note":"18","powered":"false"},"id":385},{"properties":{"instrument":"snare","note":"19","powered":"true"},"id":386},{"properties":{"instrument":"snare","note":"19","powered":"false"},"id":387},{"properties":{"instrument":"snare","note":"20","powered":"true"},"id":388},{"properties":{"instrument":"snare","note":"20","powered":"false"},"id":389},{"properties":{"instrument":"snare","note":"21","powered":"true"},"id":390},{"properties":{"instrument":"snare","note":"21","powered":"false"},"id":391},{"properties":{"instrument":"snare","note":"22","powered":"true"},"id":392},{"properties":{"instrument":"snare","note":"22","powered":"false"},"id":393},{"properties":{"instrument":"snare","note":"23","powered":"true"},"id":394},{"properties":{"instrument":"snare","note":"23","powered":"false"},"id":395},{"properties":{"instrument":"snare","note":"24","powered":"true"},"id":396},{"properties":{"instrument":"snare","note":"24","powered":"false"},"id":397},{"properties":{"instrument":"hat","note":"0","powered":"true"},"id":398},{"properties":{"instrument":"hat","note":"0","powered":"false"},"id":399},{"properties":{"instrument":"hat","note":"1","powered":"true"},"id":400},{"properties":{"instrument":"hat","note":"1","powered":"false"},"id":401},{"properties":{"instrument":"hat","note":"2","powered":"true"},"id":402},{"properties":{"instrument":"hat","note":"2","powered":"false"},"id":403},{"properties":{"instrument":"hat","note":"3","powered":"true"},"id":404},{"properties":{"instrument":"hat","note":"3","powered":"false"},"id":405},{"properties":{"instrument":"hat","note":"4","powered":"true"},"id":406},{"properties":{"instrument":"hat","note":"4","powered":"false"},"id":407},{"properties":{"instrument":"hat","note":"5","powered":"true"},"id":408},{"properties":{"instrument":"hat","note":"5","powered":"false"},"id":409},{"properties":{"instrument":"hat","note":"6","powered":"true"},"id":410},{"properties":{"instrument":"hat","note":"6","powered":"false"},"id":411},{"properties":{"instrument":"hat","note":"7","powered":"true"},"id":412},{"properties":{"instrument":"hat","note":"7","powered":"false"},"id":413},{"properties":{"instrument":"hat","note":"8","powered":"true"},"id":414},{"properties":{"instrument":"hat","note":"8","powered":"false"},"id":415},{"properties":{"instrument":"hat","note":"9","powered":"true"},"id":416},{"properties":{"instrument":"hat","note":"9","powered":"false"},"id":417},{"properties":{"instrument":"hat","note":"10","powered":"true"},"id":418},{"properties":{"instrument":"hat","note":"10","powered":"false"},"id":419},{"properties":{"instrument":"hat","note":"11","powered":"true"},"id":420},{"properties":{"instrument":"hat","note":"11","powered":"false"},"id":421},{"properties":{"instrument":"hat","note":"12","powered":"true"},"id":422},{"properties":{"instrument":"hat","note":"12","powered":"false"},"id":423},{"properties":{"instrument":"hat","note":"13","powered":"true"},"id":424},{"properties":{"instrument":"hat","note":"13","powered":"false"},"id":425},{"properties":{"instrument":"hat","note":"14","powered":"true"},"id":426},{"properties":{"instrument":"hat","note":"14","powered":"false"},"id":427},{"properties":{"instrument":"hat","note":"15","powered":"true"},"id":428},{"properties":{"instrument":"hat","note":"15","powered":"false"},"id":429},{"properties":{"instrument":"hat","note":"16","powered":"true"},"id":430},{"properties":{"instrument":"hat","note":"16","powered":"false"},"id":431},{"properties":{"instrument":"hat","note":"17","powered":"true"},"id":432},{"properties":{"instrument":"hat","note":"17","powered":"false"},"id":433},{"properties":{"instrument":"hat","note":"18","powered":"true"},"id":434},{"properties":{"instrument":"hat","note":"18","powered":"false"},"id":435},{"properties":{"instrument":"hat","note":"19","powered":"true"},"id":436},{"properties":{"instrument":"hat","note":"19","powered":"false"},"id":437},{"properties":{"instrument":"hat","note":"20","powered":"true"},"id":438},{"properties":{"instrument":"hat","note":"20","powered":"false"},"id":439},{"properties":{"instrument":"hat","note":"21","powered":"true"},"id":440},{"properties":{"instrument":"hat","note":"21","powered":"false"},"id":441},{"properties":{"instrument":"hat","note":"22","powered":"true"},"id":442},{"properties":{"instrument":"hat","note":"22","powered":"false"},"id":443},{"properties":{"instrument":"hat","note":"23","powered":"true"},"id":444},{"properties":{"instrument":"hat","note":"23","powered":"false"},"id":445},{"properties":{"instrument":"hat","note":"24","powered":"true"},"id":446},{"properties":{"instrument":"hat","note":"24","powered":"false"},"id":447},{"properties":{"instrument":"bass","note":"0","powered":"true"},"id":448},{"properties":{"instrument":"bass","note":"0","powered":"false"},"id":449},{"properties":{"instrument":"bass","note":"1","powered":"true"},"id":450},{"properties":{"instrument":"bass","note":"1","powered":"false"},"id":451},{"properties":{"instrument":"bass","note":"2","powered":"true"},"id":452},{"properties":{"instrument":"bass","note":"2","powered":"false"},"id":453},{"properties":{"instrument":"bass","note":"3","powered":"true"},"id":454},{"properties":{"instrument":"bass","note":"3","powered":"false"},"id":455},{"properties":{"instrument":"bass","note":"4","powered":"true"},"id":456},{"properties":{"instrument":"bass","note":"4","powered":"false"},"id":457},{"properties":{"instrument":"bass","note":"5","powered":"true"},"id":458},{"properties":{"instrument":"bass","note":"5","powered":"false"},"id":459},{"properties":{"instrument":"bass","note":"6","powered":"true"},"id":460},{"properties":{"instrument":"bass","note":"6","powered":"false"},"id":461},{"properties":{"instrument":"bass","note":"7","powered":"true"},"id":462},{"properties":{"instrument":"bass","note":"7","powered":"false"},"id":463},{"properties":{"instrument":"bass","note":"8","powered":"true"},"id":464},{"properties":{"instrument":"bass","note":"8","powered":"false"},"id":465},{"properties":{"instrument":"bass","note":"9","powered":"true"},"id":466},{"properties":{"instrument":"bass","note":"9","powered":"false"},"id":467},{"properties":{"instrument":"bass","note":"10","powered":"true"},"id":468},{"properties":{"instrument":"bass","note":"10","powered":"false"},"id":469},{"properties":{"instrument":"bass","note":"11","powered":"true"},"id":470},{"properties":{"instrument":"bass","note":"11","powered":"false"},"id":471},{"properties":{"instrument":"bass","note":"12","powered":"true"},"id":472},{"properties":{"instrument":"bass","note":"12","powered":"false"},"id":473},{"properties":{"instrument":"bass","note":"13","powered":"true"},"id":474},{"properties":{"instrument":"bass","note":"13","powered":"false"},"id":475},{"properties":{"instrument":"bass","note":"14","powered":"true"},"id":476},{"properties":{"instrument":"bass","note":"14","powered":"false"},"id":477},{"properties":{"instrument":"bass","note":"15","powered":"true"},"id":478},{"properties":{"instrument":"bass","note":"15","powered":"false"},"id":479},{"properties":{"instrument":"bass","note":"16","powered":"true"},"id":480},{"properties":{"instrument":"bass","note":"16","powered":"false"},"id":481},{"properties":{"instrument":"bass","note":"17","powered":"true"},"id":482},{"properties":{"instrument":"bass","note":"17","powered":"false"},"id":483},{"properties":{"instrument":"bass","note":"18","powered":"true"},"id":484},{"properties":{"instrument":"bass","note":"18","powered":"false"},"id":485},{"properties":{"instrument":"bass","note":"19","powered":"true"},"id":486},{"properties":{"instrument":"bass","note":"19","powered":"false"},"id":487},{"properties":{"instrument":"bass","note":"20","powered":"true"},"id":488},{"properties":{"instrument":"bass","note":"20","powered":"false"},"id":489},{"properties":{"instrument":"bass","note":"21","powered":"true"},"id":490},{"properties":{"instrument":"bass","note":"21","powered":"false"},"id":491},{"properties":{"instrument":"bass","note":"22","powered":"true"},"id":492},{"properties":{"instrument":"bass","note":"22","powered":"false"},"id":493},{"properties":{"instrument":"bass","note":"23","powered":"true"},"id":494},{"properties":{"instrument":"bass","note":"23","powered":"false"},"id":495},{"properties":{"instrument":"bass","note":"24","powered":"true"},"id":496},{"properties":{"instrument":"bass","note":"24","powered":"false"},"id":497},{"properties":{"instrument":"flute","note":"0","powered":"true"},"id":498},{"properties":{"instrument":"flute","note":"0","powered":"false"},"id":499},{"properties":{"instrument":"flute","note":"1","powered":"true"},"id":500},{"properties":{"instrument":"flute","note":"1","powered":"false"},"id":501},{"properties":{"instrument":"flute","note":"2","powered":"true"},"id":502},{"properties":{"instrument":"flute","note":"2","powered":"false"},"id":503},{"properties":{"instrument":"flute","note":"3","powered":"true"},"id":504},{"properties":{"instrument":"flute","note":"3","powered":"false"},"id":505},{"properties":{"instrument":"flute","note":"4","powered":"true"},"id":506},{"properties":{"instrument":"flute","note":"4","powered":"false"},"id":507},{"properties":{"instrument":"flute","note":"5","powered":"true"},"id":508},{"properties":{"instrument":"flute","note":"5","powered":"false"},"id":509},{"properties":{"instrument":"flute","note":"6","powered":"true"},"id":510},{"properties":{"instrument":"flute","note":"6","powered":"false"},"id":511},{"properties":{"instrument":"flute","note":"7","powered":"true"},"id":512},{"properties":{"instrument":"flute","note":"7","powered":"false"},"id":513},{"properties":{"instrument":"flute","note":"8","powered":"true"},"id":514},{"properties":{"instrument":"flute","note":"8","powered":"false"},"id":515},{"properties":{"instrument":"flute","note":"9","powered":"true"},"id":516},{"properties":{"instrument":"flute","note":"9","powered":"false"},"id":517},{"properties":{"instrument":"flute","note":"10","powered":"true"},"id":518},{"properties":{"instrument":"flute","note":"10","powered":"false"},"id":519},{"properties":{"instrument":"flute","note":"11","powered":"true"},"id":520},{"properties":{"instrument":"flute","note":"11","powered":"false"},"id":521},{"properties":{"instrument":"flute","note":"12","powered":"true"},"id":522},{"properties":{"instrument":"flute","note":"12","powered":"false"},"id":523},{"properties":{"instrument":"flute","note":"13","powered":"true"},"id":524},{"properties":{"instrument":"flute","note":"13","powered":"false"},"id":525},{"properties":{"instrument":"flute","note":"14","powered":"true"},"id":526},{"properties":{"instrument":"flute","note":"14","powered":"false"},"id":527},{"properties":{"instrument":"flute","note":"15","powered":"true"},"id":528},{"properties":{"instrument":"flute","note":"15","powered":"false"},"id":529},{"properties":{"instrument":"flute","note":"16","powered":"true"},"id":530},{"properties":{"instrument":"flute","note":"16","powered":"false"},"id":531},{"properties":{"instrument":"flute","note":"17","powered":"true"},"id":532},{"properties":{"instrument":"flute","note":"17","powered":"false"},"id":533},{"properties":{"instrument":"flute","note":"18","powered":"true"},"id":534},{"properties":{"instrument":"flute","note":"18","powered":"false"},"id":535},{"properties":{"instrument":"flute","note":"19","powered":"true"},"id":536},{"properties":{"instrument":"flute","note":"19","powered":"false"},"id":537},{"properties":{"instrument":"flute","note":"20","powered":"true"},"id":538},{"properties":{"instrument":"flute","note":"20","powered":"false"},"id":539},{"properties":{"instrument":"flute","note":"21","powered":"true"},"id":540},{"properties":{"instrument":"flute","note":"21","powered":"false"},"id":541},{"properties":{"instrument":"flute","note":"22","powered":"true"},"id":542},{"properties":{"instrument":"flute","note":"22","powered":"false"},"id":543},{"properties":{"instrument":"flute","note":"23","powered":"true"},"id":544},{"properties":{"instrument":"flute","note":"23","powered":"false"},"id":545},{"properties":{"instrument":"flute","note":"24","powered":"true"},"id":546},{"properties":{"instrument":"flute","note":"24","powered":"false"},"id":547},{"properties":{"instrument":"bell","note":"0","powered":"true"},"id":548},{"properties":{"instrument":"bell","note":"0","powered":"false"},"id":549},{"properties":{"instrument":"bell","note":"1","powered":"true"},"id":550},{"properties":{"instrument":"bell","note":"1","powered":"false"},"id":551},{"properties":{"instrument":"bell","note":"2","powered":"true"},"id":552},{"properties":{"instrument":"bell","note":"2","powered":"false"},"id":553},{"properties":{"instrument":"bell","note":"3","powered":"true"},"id":554},{"properties":{"instrument":"bell","note":"3","powered":"false"},"id":555},{"properties":{"instrument":"bell","note":"4","powered":"true"},"id":556},{"properties":{"instrument":"bell","note":"4","powered":"false"},"id":557},{"properties":{"instrument":"bell","note":"5","powered":"true"},"id":558},{"properties":{"instrument":"bell","note":"5","powered":"false"},"id":559},{"properties":{"instrument":"bell","note":"6","powered":"true"},"id":560},{"properties":{"instrument":"bell","note":"6","powered":"false"},"id":561},{"properties":{"instrument":"bell","note":"7","powered":"true"},"id":562},{"properties":{"instrument":"bell","note":"7","powered":"false"},"id":563},{"properties":{"instrument":"bell","note":"8","powered":"true"},"id":564},{"properties":{"instrument":"bell","note":"8","powered":"false"},"id":565},{"properties":{"instrument":"bell","note":"9","powered":"true"},"id":566},{"properties":{"instrument":"bell","note":"9","powered":"false"},"id":567},{"properties":{"instrument":"bell","note":"10","powered":"true"},"id":568},{"properties":{"instrument":"bell","note":"10","powered":"false"},"id":569},{"properties":{"instrument":"bell","note":"11","powered":"true"},"id":570},{"properties":{"instrument":"bell","note":"11","powered":"false"},"id":571},{"properties":{"instrument":"bell","note":"12","powered":"true"},"id":572},{"properties":{"instrument":"bell","note":"12","powered":"false"},"id":573},{"properties":{"instrument":"bell","note":"13","powered":"true"},"id":574},{"properties":{"instrument":"bell","note":"13","powered":"false"},"id":575},{"properties":{"instrument":"bell","note":"14","powered":"true"},"id":576},{"properties":{"instrument":"bell","note":"14","powered":"false"},"id":577},{"properties":{"instrument":"bell","note":"15","powered":"true"},"id":578},{"properties":{"instrument":"bell","note":"15","powered":"false"},"id":579},{"properties":{"instrument":"bell","note":"16","powered":"true"},"id":580},{"properties":{"instrument":"bell","note":"16","powered":"false"},"id":581},{"properties":{"instrument":"bell","note":"17","powered":"true"},"id":582},{"properties":{"instrument":"bell","note":"17","powered":"false"},"id":583},{"properties":{"instrument":"bell","note":"18","powered":"true"},"id":584},{"properties":{"instrument":"bell","note":"18","powered":"false"},"id":585},{"properties":{"instrument":"bell","note":"19","powered":"true"},"id":586},{"properties":{"instrument":"bell","note":"19","powered":"false"},"id":587},{"properties":{"instrument":"bell","note":"20","powered":"true"},"id":588},{"properties":{"instrument":"bell","note":"20","powered":"false"},"id":589},{"properties":{"instrument":"bell","note":"21","powered":"true"},"id":590},{"properties":{"instrument":"bell","note":"21","powered":"false"},"id":591},{"properties":{"instrument":"bell","note":"22","powered":"true"},"id":592},{"properties":{"instrument":"bell","note":"22","powered":"false"},"id":593},{"properties":{"instrument":"bell","note":"23","powered":"true"},"id":594},{"properties":{"instrument":"bell","note":"23","powered":"false"},"id":595},{"properties":{"instrument":"bell","note":"24","powered":"true"},"id":596},{"properties":{"instrument":"bell","note":"24","powered":"false"},"id":597},{"properties":{"instrument":"guitar","note":"0","powered":"true"},"id":598},{"properties":{"instrument":"guitar","note":"0","powered":"false"},"id":599},{"properties":{"instrument":"guitar","note":"1","powered":"true"},"id":600},{"properties":{"instrument":"guitar","note":"1","powered":"false"},"id":601},{"properties":{"instrument":"guitar","note":"2","powered":"true"},"id":602},{"properties":{"instrument":"guitar","note":"2","powered":"false"},"id":603},{"properties":{"instrument":"guitar","note":"3","powered":"true"},"id":604},{"properties":{"instrument":"guitar","note":"3","powered":"false"},"id":605},{"properties":{"instrument":"guitar","note":"4","powered":"true"},"id":606},{"properties":{"instrument":"guitar","note":"4","powered":"false"},"id":607},{"properties":{"instrument":"guitar","note":"5","powered":"true"},"id":608},{"properties":{"instrument":"guitar","note":"5","powered":"false"},"id":609},{"properties":{"instrument":"guitar","note":"6","powered":"true"},"id":610},{"properties":{"instrument":"guitar","note":"6","powered":"false"},"id":611},{"properties":{"instrument":"guitar","note":"7","powered":"true"},"id":612},{"properties":{"instrument":"guitar","note":"7","powered":"false"},"id":613},{"properties":{"instrument":"guitar","note":"8","powered":"true"},"id":614},{"properties":{"instrument":"guitar","note":"8","powered":"false"},"id":615},{"properties":{"instrument":"guitar","note":"9","powered":"true"},"id":616},{"properties":{"instrument":"guitar","note":"9","powered":"false"},"id":617},{"properties":{"instrument":"guitar","note":"10","powered":"true"},"id":618},{"properties":{"instrument":"guitar","note":"10","powered":"false"},"id":619},{"properties":{"instrument":"guitar","note":"11","powered":"true"},"id":620},{"properties":{"instrument":"guitar","note":"11","powered":"false"},"id":621},{"properties":{"instrument":"guitar","note":"12","powered":"true"},"id":622},{"properties":{"instrument":"guitar","note":"12","powered":"false"},"id":623},{"properties":{"instrument":"guitar","note":"13","powered":"true"},"id":624},{"properties":{"instrument":"guitar","note":"13","powered":"false"},"id":625},{"properties":{"instrument":"guitar","note":"14","powered":"true"},"id":626},{"properties":{"instrument":"guitar","note":"14","powered":"false"},"id":627},{"properties":{"instrument":"guitar","note":"15","powered":"true"},"id":628},{"properties":{"instrument":"guitar","note":"15","powered":"false"},"id":629},{"properties":{"instrument":"guitar","note":"16","powered":"true"},"id":630},{"properties":{"instrument":"guitar","note":"16","powered":"false"},"id":631},{"properties":{"instrument":"guitar","note":"17","powered":"true"},"id":632},{"properties":{"instrument":"guitar","note":"17","powered":"false"},"id":633},{"properties":{"instrument":"guitar","note":"18","powered":"true"},"id":634},{"properties":{"instrument":"guitar","note":"18","powered":"false"},"id":635},{"properties":{"instrument":"guitar","note":"19","powered":"true"},"id":636},{"properties":{"instrument":"guitar","note":"19","powered":"false"},"id":637},{"properties":{"instrument":"guitar","note":"20","powered":"true"},"id":638},{"properties":{"instrument":"guitar","note":"20","powered":"false"},"id":639},{"properties":{"instrument":"guitar","note":"21","powered":"true"},"id":640},{"properties":{"instrument":"guitar","note":"21","powered":"false"},"id":641},{"properties":{"instrument":"guitar","note":"22","powered":"true"},"id":642},{"properties":{"instrument":"guitar","note":"22","powered":"false"},"id":643},{"properties":{"instrument":"guitar","note":"23","powered":"true"},"id":644},{"properties":{"instrument":"guitar","note":"23","powered":"false"},"id":645},{"properties":{"instrument":"guitar","note":"24","powered":"true"},"id":646},{"properties":{"instrument":"guitar","note":"24","powered":"false"},"id":647},{"properties":{"instrument":"chime","note":"0","powered":"true"},"id":648},{"properties":{"instrument":"chime","note":"0","powered":"false"},"id":649},{"properties":{"instrument":"chime","note":"1","powered":"true"},"id":650},{"properties":{"instrument":"chime","note":"1","powered":"false"},"id":651},{"properties":{"instrument":"chime","note":"2","powered":"true"},"id":652},{"properties":{"instrument":"chime","note":"2","powered":"false"},"id":653},{"properties":{"instrument":"chime","note":"3","powered":"true"},"id":654},{"properties":{"instrument":"chime","note":"3","powered":"false"},"id":655},{"properties":{"instrument":"chime","note":"4","powered":"true"},"id":656},{"properties":{"instrument":"chime","note":"4","powered":"false"},"id":657},{"properties":{"instrument":"chime","note":"5","powered":"true"},"id":658},{"properties":{"instrument":"chime","note":"5","powered":"false"},"id":659},{"properties":{"instrument":"chime","note":"6","powered":"true"},"id":660},{"properties":{"instrument":"chime","note":"6","powered":"false"},"id":661},{"properties":{"instrument":"chime","note":"7","powered":"true"},"id":662},{"properties":{"instrument":"chime","note":"7","powered":"false"},"id":663},{"properties":{"instrument":"chime","note":"8","powered":"true"},"id":664},{"properties":{"instrument":"chime","note":"8","powered":"false"},"id":665},{"properties":{"instrument":"chime","note":"9","powered":"true"},"id":666},{"properties":{"instrument":"chime","note":"9","powered":"false"},"id":667},{"properties":{"instrument":"chime","note":"10","powered":"true"},"id":668},{"properties":{"instrument":"chime","note":"10","powered":"false"},"id":669},{"properties":{"instrument":"chime","note":"11","powered":"true"},"id":670},{"properties":{"instrument":"chime","note":"11","powered":"false"},"id":671},{"properties":{"instrument":"chime","note":"12","powered":"true"},"id":672},{"properties":{"instrument":"chime","note":"12","powered":"false"},"id":673},{"properties":{"instrument":"chime","note":"13","powered":"true"},"id":674},{"properties":{"instrument":"chime","note":"13","powered":"false"},"id":675},{"properties":{"instrument":"chime","note":"14","powered":"true"},"id":676},{"properties":{"instrument":"chime","note":"14","powered":"false"},"id":677},{"properties":{"instrument":"chime","note":"15","powered":"true"},"id":678},{"properties":{"instrument":"chime","note":"15","powered":"false"},"id":679},{"properties":{"instrument":"chime","note":"16","powered":"true"},"id":680},{"properties":{"instrument":"chime","note":"16","powered":"false"},"id":681},{"properties":{"instrument":"chime","note":"17","powered":"true"},"id":682},{"properties":{"instrument":"chime","note":"17","powered":"false"},"id":683},{"properties":{"instrument":"chime","note":"18","powered":"true"},"id":684},{"properties":{"instrument":"chime","note":"18","powered":"false"},"id":685},{"properties":{"instrument":"chime","note":"19","powered":"true"},"id":686},{"properties":{"instrument":"chime","note":"19","powered":"false"},"id":687},{"properties":{"instrument":"chime","note":"20","powered":"true"},"id":688},{"properties":{"instrument":"chime","note":"20","powered":"false"},"id":689},{"properties":{"instrument":"chime","note":"21","powered":"true"},"id":690},{"properties":{"instrument":"chime","note":"21","powered":"false"},"id":691},{"properties":{"instrument":"chime","note":"22","powered":"true"},"id":692},{"properties":{"instrument":"chime","note":"22","powered":"false"},"id":693},{"properties":{"instrument":"chime","note":"23","powered":"true"},"id":694},{"properties":{"instrument":"chime","note":"23","powered":"false"},"id":695},{"properties":{"instrument":"chime","note":"24","powered":"true"},"id":696},{"properties":{"instrument":"chime","note":"24","powered":"false"},"id":697},{"properties":{"instrument":"xylophone","note":"0","powered":"true"},"id":698},{"properties":{"instrument":"xylophone","note":"0","powered":"false"},"id":699},{"properties":{"instrument":"xylophone","note":"1","powered":"true"},"id":700},{"properties":{"instrument":"xylophone","note":"1","powered":"false"},"id":701},{"properties":{"instrument":"xylophone","note":"2","powered":"true"},"id":702},{"properties":{"instrument":"xylophone","note":"2","powered":"false"},"id":703},{"properties":{"instrument":"xylophone","note":"3","powered":"true"},"id":704},{"properties":{"instrument":"xylophone","note":"3","powered":"false"},"id":705},{"properties":{"instrument":"xylophone","note":"4","powered":"true"},"id":706},{"properties":{"instrument":"xylophone","note":"4","powered":"false"},"id":707},{"properties":{"instrument":"xylophone","note":"5","powered":"true"},"id":708},{"properties":{"instrument":"xylophone","note":"5","powered":"false"},"id":709},{"properties":{"instrument":"xylophone","note":"6","powered":"true"},"id":710},{"properties":{"instrument":"xylophone","note":"6","powered":"false"},"id":711},{"properties":{"instrument":"xylophone","note":"7","powered":"true"},"id":712},{"properties":{"instrument":"xylophone","note":"7","powered":"false"},"id":713},{"properties":{"instrument":"xylophone","note":"8","powered":"true"},"id":714},{"properties":{"instrument":"xylophone","note":"8","powered":"false"},"id":715},{"properties":{"instrument":"xylophone","note":"9","powered":"true"},"id":716},{"properties":{"instrument":"xylophone","note":"9","powered":"false"},"id":717},{"properties":{"instrument":"xylophone","note":"10","powered":"true"},"id":718},{"properties":{"instrument":"xylophone","note":"10","powered":"false"},"id":719},{"properties":{"instrument":"xylophone","note":"11","powered":"true"},"id":720},{"properties":{"instrument":"xylophone","note":"11","powered":"false"},"id":721},{"properties":{"instrument":"xylophone","note":"12","powered":"true"},"id":722},{"properties":{"instrument":"xylophone","note":"12","powered":"false"},"id":723},{"properties":{"instrument":"xylophone","note":"13","powered":"true"},"id":724},{"properties":{"instrument":"xylophone","note":"13","powered":"false"},"id":725},{"properties":{"instrument":"xylophone","note":"14","powered":"true"},"id":726},{"properties":{"instrument":"xylophone","note":"14","powered":"false"},"id":727},{"properties":{"instrument":"xylophone","note":"15","powered":"true"},"id":728},{"properties":{"instrument":"xylophone","note":"15","powered":"false"},"id":729},{"properties":{"instrument":"xylophone","note":"16","powered":"true"},"id":730},{"properties":{"instrument":"xylophone","note":"16","powered":"false"},"id":731},{"properties":{"instrument":"xylophone","note":"17","powered":"true"},"id":732},{"properties":{"instrument":"xylophone","note":"17","powered":"false"},"id":733},{"properties":{"instrument":"xylophone","note":"18","powered":"true"},"id":734},{"properties":{"instrument":"xylophone","note":"18","powered":"false"},"id":735},{"properties":{"instrument":"xylophone","note":"19","powered":"true"},"id":736},{"properties":{"instrument":"xylophone","note":"19","powered":"false"},"id":737},{"properties":{"instrument":"xylophone","note":"20","powered":"true"},"id":738},{"properties":{"instrument":"xylophone","note":"20","powered":"false"},"id":739},{"properties":{"instrument":"xylophone","note":"21","powered":"true"},"id":740},{"properties":{"instrument":"xylophone","note":"21","powered":"false"},"id":741},{"properties":{"instrument":"xylophone","note":"22","powered":"true"},"id":742},{"properties":{"instrument":"xylophone","note":"22","powered":"false"},"id":743},{"properties":{"instrument":"xylophone","note":"23","powered":"true"},"id":744},{"properties":{"instrument":"xylophone","note":"23","powered":"false"},"id":745},{"properties":{"instrument":"xylophone","note":"24","powered":"true"},"id":746},{"properties":{"instrument":"xylophone","note":"24","powered":"false"},"id":747},{"properties":{"instrument":"iron_xylophone","note":"0","powered":"true"},"id":748},{"properties":{"instrument":"iron_xylophone","note":"0","powered":"false"},"id":749},{"properties":{"instrument":"iron_xylophone","note":"1","powered":"true"},"id":750},{"properties":{"instrument":"iron_xylophone","note":"1","powered":"false"},"id":751},{"properties":{"instrument":"iron_xylophone","note":"2","powered":"true"},"id":752},{"properties":{"instrument":"iron_xylophone","note":"2","powered":"false"},"id":753},{"properties":{"instrument":"iron_xylophone","note":"3","powered":"true"},"id":754},{"properties":{"instrument":"iron_xylophone","note":"3","powered":"false"},"id":755},{"properties":{"instrument":"iron_xylophone","note":"4","powered":"true"},"id":756},{"properties":{"instrument":"iron_xylophone","note":"4","powered":"false"},"id":757},{"properties":{"instrument":"iron_xylophone","note":"5","powered":"true"},"id":758},{"properties":{"instrument":"iron_xylophone","note":"5","powered":"false"},"id":759},{"properties":{"instrument":"iron_xylophone","note":"6","powered":"true"},"id":760},{"properties":{"instrument":"iron_xylophone","note":"6","powered":"false"},"id":761},{"properties":{"instrument":"iron_xylophone","note":"7","powered":"true"},"id":762},{"properties":{"instrument":"iron_xylophone","note":"7","powered":"false"},"id":763},{"properties":{"instrument":"iron_xylophone","note":"8","powered":"true"},"id":764},{"properties":{"instrument":"iron_xylophone","note":"8","powered":"false"},"id":765},{"properties":{"instrument":"iron_xylophone","note":"9","powered":"true"},"id":766},{"properties":{"instrument":"iron_xylophone","note":"9","powered":"false"},"id":767},{"properties":{"instrument":"iron_xylophone","note":"10","powered":"true"},"id":768},{"properties":{"instrument":"iron_xylophone","note":"10","powered":"false"},"id":769},{"properties":{"instrument":"iron_xylophone","note":"11","powered":"true"},"id":770},{"properties":{"instrument":"iron_xylophone","note":"11","powered":"false"},"id":771},{"properties":{"instrument":"iron_xylophone","note":"12","powered":"true"},"id":772},{"properties":{"instrument":"iron_xylophone","note":"12","powered":"false"},"id":773},{"properties":{"instrument":"iron_xylophone","note":"13","powered":"true"},"id":774},{"properties":{"instrument":"iron_xylophone","note":"13","powered":"false"},"id":775},{"properties":{"instrument":"iron_xylophone","note":"14","powered":"true"},"id":776},{"properties":{"instrument":"iron_xylophone","note":"14","powered":"false"},"id":777},{"properties":{"instrument":"iron_xylophone","note":"15","powered":"true"},"id":778},{"properties":{"instrument":"iron_xylophone","note":"15","powered":"false"},"id":779},{"properties":{"instrument":"iron_xylophone","note":"16","powered":"true"},"id":780},{"properties":{"instrument":"iron_xylophone","note":"16","powered":"false"},"id":781},{"properties":{"instrument":"iron_xylophone","note":"17","powered":"true"},"id":782},{"properties":{"instrument":"iron_xylophone","note":"17","powered":"false"},"id":783},{"properties":{"instrument":"iron_xylophone","note":"18","powered":"true"},"id":784},{"properties":{"instrument":"iron_xylophone","note":"18","powered":"false"},"id":785},{"properties":{"instrument":"iron_xylophone","note":"19","powered":"true"},"id":786},{"properties":{"instrument":"iron_xylophone","note":"19","powered":"false"},"id":787},{"properties":{"instrument":"iron_xylophone","note":"20","powered":"true"},"id":788},{"properties":{"instrument":"iron_xylophone","note":"20","powered":"false"},"id":789},{"properties":{"instrument":"iron_xylophone","note":"21","powered":"true"},"id":790},{"properties":{"instrument":"iron_xylophone","note":"21","powered":"false"},"id":791},{"properties":{"instrument":"iron_xylophone","note":"22","powered":"true"},"id":792},{"properties":{"instrument":"iron_xylophone","note":"22","powered":"false"},"id":793},{"properties":{"instrument":"iron_xylophone","note":"23","powered":"true"},"id":794},{"properties":{"instrument":"iron_xylophone","note":"23","powered":"false"},"id":795},{"properties":{"instrument":"iron_xylophone","note":"24","powered":"true"},"id":796},{"properties":{"instrument":"iron_xylophone","note":"24","powered":"false"},"id":797},{"properties":{"instrument":"cow_bell","note":"0","powered":"true"},"id":798},{"properties":{"instrument":"cow_bell","note":"0","powered":"false"},"id":799},{"properties":{"instrument":"cow_bell","note":"1","powered":"true"},"id":800},{"properties":{"instrument":"cow_bell","note":"1","powered":"false"},"id":801},{"properties":{"instrument":"cow_bell","note":"2","powered":"true"},"id":802},{"properties":{"instrument":"cow_bell","note":"2","powered":"false"},"id":803},{"properties":{"instrument":"cow_bell","note":"3","powered":"true"},"id":804},{"properties":{"instrument":"cow_bell","note":"3","powered":"false"},"id":805},{"properties":{"instrument":"cow_bell","note":"4","powered":"true"},"id":806},{"properties":{"instrument":"cow_bell","note":"4","powered":"false"},"id":807},{"properties":{"instrument":"cow_bell","note":"5","powered":"true"},"id":808},{"properties":{"instrument":"cow_bell","note":"5","powered":"false"},"id":809},{"properties":{"instrument":"cow_bell","note":"6","powered":"true"},"id":810},{"properties":{"instrument":"cow_bell","note":"6","powered":"false"},"id":811},{"properties":{"instrument":"cow_bell","note":"7","powered":"true"},"id":812},{"properties":{"instrument":"cow_bell","note":"7","powered":"false"},"id":813},{"properties":{"instrument":"cow_bell","note":"8","powered":"true"},"id":814},{"properties":{"instrument":"cow_bell","note":"8","powered":"false"},"id":815},{"properties":{"instrument":"cow_bell","note":"9","powered":"true"},"id":816},{"properties":{"instrument":"cow_bell","note":"9","powered":"false"},"id":817},{"properties":{"instrument":"cow_bell","note":"10","powered":"true"},"id":818},{"properties":{"instrument":"cow_bell","note":"10","powered":"false"},"id":819},{"properties":{"instrument":"cow_bell","note":"11","powered":"true"},"id":820},{"properties":{"instrument":"cow_bell","note":"11","powered":"false"},"id":821},{"properties":{"instrument":"cow_bell","note":"12","powered":"true"},"id":822},{"properties":{"instrument":"cow_bell","note":"12","powered":"false"},"id":823},{"properties":{"instrument":"cow_bell","note":"13","powered":"true"},"id":824},{"properties":{"instrument":"cow_bell","note":"13","powered":"false"},"id":825},{"properties":{"instrument":"cow_bell","note":"14","powered":"true"},"id":826},{"properties":{"instrument":"cow_bell","note":"14","powered":"false"},"id":827},{"properties":{"instrument":"cow_bell","note":"15","powered":"true"},"id":828},{"properties":{"instrument":"cow_bell","note":"15","powered":"false"},"id":829},{"properties":{"instrument":"cow_bell","note":"16","powered":"true"},"id":830},{"properties":{"instrument":"cow_bell","note":"16","powered":"false"},"id":831},{"properties":{"instrument":"cow_bell","note":"17","powered":"true"},"id":832},{"properties":{"instrument":"cow_bell","note":"17","powered":"false"},"id":833},{"properties":{"instrument":"cow_bell","note":"18","powered":"true"},"id":834},{"properties":{"instrument":"cow_bell","note":"18","powered":"false"},"id":835},{"properties":{"instrument":"cow_bell","note":"19","powered":"true"},"id":836},{"properties":{"instrument":"cow_bell","note":"19","powered":"false"},"id":837},{"properties":{"instrument":"cow_bell","note":"20","powered":"true"},"id":838},{"properties":{"instrument":"cow_bell","note":"20","powered":"false"},"id":839},{"properties":{"instrument":"cow_bell","note":"21","powered":"true"},"id":840},{"properties":{"instrument":"cow_bell","note":"21","powered":"false"},"id":841},{"properties":{"instrument":"cow_bell","note":"22","powered":"true"},"id":842},{"properties":{"instrument":"cow_bell","note":"22","powered":"false"},"id":843},{"properties":{"instrument":"cow_bell","note":"23","powered":"true"},"id":844},{"properties":{"instrument":"cow_bell","note":"23","powered":"false"},"id":845},{"properties":{"instrument":"cow_bell","note":"24","powered":"true"},"id":846},{"properties":{"instrument":"cow_bell","note":"24","powered":"false"},"id":847},{"properties":{"instrument":"didgeridoo","note":"0","powered":"true"},"id":848},{"properties":{"instrument":"didgeridoo","note":"0","powered":"false"},"id":849},{"properties":{"instrument":"didgeridoo","note":"1","powered":"true"},"id":850},{"properties":{"instrument":"didgeridoo","note":"1","powered":"false"},"id":851},{"properties":{"instrument":"didgeridoo","note":"2","powered":"true"},"id":852},{"properties":{"instrument":"didgeridoo","note":"2","powered":"false"},"id":853},{"properties":{"instrument":"didgeridoo","note":"3","powered":"true"},"id":854},{"properties":{"instrument":"didgeridoo","note":"3","powered":"false"},"id":855},{"properties":{"instrument":"didgeridoo","note":"4","powered":"true"},"id":856},{"properties":{"instrument":"didgeridoo","note":"4","powered":"false"},"id":857},{"properties":{"instrument":"didgeridoo","note":"5","powered":"true"},"id":858},{"properties":{"instrument":"didgeridoo","note":"5","powered":"false"},"id":859},{"properties":{"instrument":"didgeridoo","note":"6","powered":"true"},"id":860},{"properties":{"instrument":"didgeridoo","note":"6","powered":"false"},"id":861},{"properties":{"instrument":"didgeridoo","note":"7","powered":"true"},"id":862},{"properties":{"instrument":"didgeridoo","note":"7","powered":"false"},"id":863},{"properties":{"instrument":"didgeridoo","note":"8","powered":"true"},"id":864},{"properties":{"instrument":"didgeridoo","note":"8","powered":"false"},"id":865},{"properties":{"instrument":"didgeridoo","note":"9","powered":"true"},"id":866},{"properties":{"instrument":"didgeridoo","note":"9","powered":"false"},"id":867},{"properties":{"instrument":"didgeridoo","note":"10","powered":"true"},"id":868},{"properties":{"instrument":"didgeridoo","note":"10","powered":"false"},"id":869},{"properties":{"instrument":"didgeridoo","note":"11","powered":"true"},"id":870},{"properties":{"instrument":"didgeridoo","note":"11","powered":"false"},"id":871},{"properties":{"instrument":"didgeridoo","note":"12","powered":"true"},"id":872},{"properties":{"instrument":"didgeridoo","note":"12","powered":"false"},"id":873},{"properties":{"instrument":"didgeridoo","note":"13","powered":"true"},"id":874},{"properties":{"instrument":"didgeridoo","note":"13","powered":"false"},"id":875},{"properties":{"instrument":"didgeridoo","note":"14","powered":"true"},"id":876},{"properties":{"instrument":"didgeridoo","note":"14","powered":"false"},"id":877},{"properties":{"instrument":"didgeridoo","note":"15","powered":"true"},"id":878},{"properties":{"instrument":"didgeridoo","note":"15","powered":"false"},"id":879},{"properties":{"instrument":"didgeridoo","note":"16","powered":"true"},"id":880},{"properties":{"instrument":"didgeridoo","note":"16","powered":"false"},"id":881},{"properties":{"instrument":"didgeridoo","note":"17","powered":"true"},"id":882},{"properties":{"instrument":"didgeridoo","note":"17","powered":"false"},"id":883},{"properties":{"instrument":"didgeridoo","note":"18","powered":"true"},"id":884},{"properties":{"instrument":"didgeridoo","note":"18","powered":"false"},"id":885},{"properties":{"instrument":"didgeridoo","note":"19","powered":"true"},"id":886},{"properties":{"instrument":"didgeridoo","note":"19","powered":"false"},"id":887},{"properties":{"instrument":"didgeridoo","note":"20","powered":"true"},"id":888},{"properties":{"instrument":"didgeridoo","note":"20","powered":"false"},"id":889},{"properties":{"instrument":"didgeridoo","note":"21","powered":"true"},"id":890},{"properties":{"instrument":"didgeridoo","note":"21","powered":"false"},"id":891},{"properties":{"instrument":"didgeridoo","note":"22","powered":"true"},"id":892},{"properties":{"instrument":"didgeridoo","note":"22","powered":"false"},"id":893},{"properties":{"instrument":"didgeridoo","note":"23","powered":"true"},"id":894},{"properties":{"instrument":"didgeridoo","note":"23","powered":"false"},"id":895},{"properties":{"instrument":"didgeridoo","note":"24","powered":"true"},"id":896},{"properties":{"instrument":"didgeridoo","note":"24","powered":"false"},"id":897},{"properties":{"instrument":"bit","note":"0","powered":"true"},"id":898},{"properties":{"instrument":"bit","note":"0","powered":"false"},"id":899},{"properties":{"instrument":"bit","note":"1","powered":"true"},"id":900},{"properties":{"instrument":"bit","note":"1","powered":"false"},"id":901},{"properties":{"instrument":"bit","note":"2","powered":"true"},"id":902},{"properties":{"instrument":"bit","note":"2","powered":"false"},"id":903},{"properties":{"instrument":"bit","note":"3","powered":"true"},"id":904},{"properties":{"instrument":"bit","note":"3","powered":"false"},"id":905},{"properties":{"instrument":"bit","note":"4","powered":"true"},"id":906},{"properties":{"instrument":"bit","note":"4","powered":"false"},"id":907},{"properties":{"instrument":"bit","note":"5","powered":"true"},"id":908},{"properties":{"instrument":"bit","note":"5","powered":"false"},"id":909},{"properties":{"instrument":"bit","note":"6","powered":"true"},"id":910},{"properties":{"instrument":"bit","note":"6","powered":"false"},"id":911},{"properties":{"instrument":"bit","note":"7","powered":"true"},"id":912},{"properties":{"instrument":"bit","note":"7","powered":"false"},"id":913},{"properties":{"instrument":"bit","note":"8","powered":"true"},"id":914},{"properties":{"instrument":"bit","note":"8","powered":"false"},"id":915},{"properties":{"instrument":"bit","note":"9","powered":"true"},"id":916},{"properties":{"instrument":"bit","note":"9","powered":"false"},"id":917},{"properties":{"instrument":"bit","note":"10","powered":"true"},"id":918},{"properties":{"instrument":"bit","note":"10","powered":"false"},"id":919},{"properties":{"instrument":"bit","note":"11","powered":"true"},"id":920},{"properties":{"instrument":"bit","note":"11","powered":"false"},"id":921},{"properties":{"instrument":"bit","note":"12","powered":"true"},"id":922},{"properties":{"instrument":"bit","note":"12","powered":"false"},"id":923},{"properties":{"instrument":"bit","note":"13","powered":"true"},"id":924},{"properties":{"instrument":"bit","note":"13","powered":"false"},"id":925},{"properties":{"instrument":"bit","note":"14","powered":"true"},"id":926},{"properties":{"instrument":"bit","note":"14","powered":"false"},"id":927},{"properties":{"instrument":"bit","note":"15","powered":"true"},"id":928},{"properties":{"instrument":"bit","note":"15","powered":"false"},"id":929},{"properties":{"instrument":"bit","note":"16","powered":"true"},"id":930},{"properties":{"instrument":"bit","note":"16","powered":"false"},"id":931},{"properties":{"instrument":"bit","note":"17","powered":"true"},"id":932},{"properties":{"instrument":"bit","note":"17","powered":"false"},"id":933},{"properties":{"instrument":"bit","note":"18","powered":"true"},"id":934},{"properties":{"instrument":"bit","note":"18","powered":"false"},"id":935},{"properties":{"instrument":"bit","note":"19","powered":"true"},"id":936},{"properties":{"instrument":"bit","note":"19","powered":"false"},"id":937},{"properties":{"instrument":"bit","note":"20","powered":"true"},"id":938},{"properties":{"instrument":"bit","note":"20","powered":"false"},"id":939},{"properties":{"instrument":"bit","note":"21","powered":"true"},"id":940},{"properties":{"instrument":"bit","note":"21","powered":"false"},"id":941},{"properties":{"instrument":"bit","note":"22","powered":"true"},"id":942},{"properties":{"instrument":"bit","note":"22","powered":"false"},"id":943},{"properties":{"instrument":"bit","note":"23","powered":"true"},"id":944},{"properties":{"instrument":"bit","note":"23","powered":"false"},"id":945},{"properties":{"instrument":"bit","note":"24","powered":"true"},"id":946},{"properties":{"instrument":"bit","note":"24","powered":"false"},"id":947},{"properties":{"instrument":"banjo","note":"0","powered":"true"},"id":948},{"properties":{"instrument":"banjo","note":"0","powered":"false"},"id":949},{"properties":{"instrument":"banjo","note":"1","powered":"true"},"id":950},{"properties":{"instrument":"banjo","note":"1","powered":"false"},"id":951},{"properties":{"instrument":"banjo","note":"2","powered":"true"},"id":952},{"properties":{"instrument":"banjo","note":"2","powered":"false"},"id":953},{"properties":{"instrument":"banjo","note":"3","powered":"true"},"id":954},{"properties":{"instrument":"banjo","note":"3","powered":"false"},"id":955},{"properties":{"instrument":"banjo","note":"4","powered":"true"},"id":956},{"properties":{"instrument":"banjo","note":"4","powered":"false"},"id":957},{"properties":{"instrument":"banjo","note":"5","powered":"true"},"id":958},{"properties":{"instrument":"banjo","note":"5","powered":"false"},"id":959},{"properties":{"instrument":"banjo","note":"6","powered":"true"},"id":960},{"properties":{"instrument":"banjo","note":"6","powered":"false"},"id":961},{"properties":{"instrument":"banjo","note":"7","powered":"true"},"id":962},{"properties":{"instrument":"banjo","note":"7","powered":"false"},"id":963},{"properties":{"instrument":"banjo","note":"8","powered":"true"},"id":964},{"properties":{"instrument":"banjo","note":"8","powered":"false"},"id":965},{"properties":{"instrument":"banjo","note":"9","powered":"true"},"id":966},{"properties":{"instrument":"banjo","note":"9","powered":"false"},"id":967},{"properties":{"instrument":"banjo","note":"10","powered":"true"},"id":968},{"properties":{"instrument":"banjo","note":"10","powered":"false"},"id":969},{"properties":{"instrument":"banjo","note":"11","powered":"true"},"id":970},{"properties":{"instrument":"banjo","note":"11","powered":"false"},"id":971},{"properties":{"instrument":"banjo","note":"12","powered":"true"},"id":972},{"properties":{"instrument":"banjo","note":"12","powered":"false"},"id":973},{"properties":{"instrument":"banjo","note":"13","powered":"true"},"id":974},{"properties":{"instrument":"banjo","note":"13","powered":"false"},"id":975},{"properties":{"instrument":"banjo","note":"14","powered":"true"},"id":976},{"properties":{"instrument":"banjo","note":"14","powered":"false"},"id":977},{"properties":{"instrument":"banjo","note":"15","powered":"true"},"id":978},{"properties":{"instrument":"banjo","note":"15","powered":"false"},"id":979},{"properties":{"instrument":"banjo","note":"16","powered":"true"},"id":980},{"properties":{"instrument":"banjo","note":"16","powered":"false"},"id":981},{"properties":{"instrument":"banjo","note":"17","powered":"true"},"id":982},{"properties":{"instrument":"banjo","note":"17","powered":"false"},"id":983},{"properties":{"instrument":"banjo","note":"18","powered":"true"},"id":984},{"properties":{"instrument":"banjo","note":"18","powered":"false"},"id":985},{"properties":{"instrument":"banjo","note":"19","powered":"true"},"id":986},{"properties":{"instrument":"banjo","note":"19","powered":"false"},"id":987},{"properties":{"instrument":"banjo","note":"20","powered":"true"},"id":988},{"properties":{"instrument":"banjo","note":"20","powered":"false"},"id":989},{"properties":{"instrument":"banjo","note":"21","powered":"true"},"id":990},{"properties":{"instrument":"banjo","note":"21","powered":"false"},"id":991},{"properties":{"instrument":"banjo","note":"22","powered":"true"},"id":992},{"properties":{"instrument":"banjo","note":"22","powered":"false"},"id":993},{"properties":{"instrument":"banjo","note":"23","powered":"true"},"id":994},{"properties":{"instrument":"banjo","note":"23","powered":"false"},"id":995},{"properties":{"instrument":"banjo","note":"24","powered":"true"},"id":996},{"properties":{"instrument":"banjo","note":"24","powered":"false"},"id":997},{"properties":{"instrument":"pling","note":"0","powered":"true"},"id":998},{"properties":{"instrument":"pling","note":"0","powered":"false"},"id":999},{"properties":{"instrument":"pling","note":"1","powered":"true"},"id":1000},{"properties":{"instrument":"pling","note":"1","powered":"false"},"id":1001},{"properties":{"instrument":"pling","note":"2","powered":"true"},"id":1002},{"properties":{"instrument":"pling","note":"2","powered":"false"},"id":1003},{"properties":{"instrument":"pling","note":"3","powered":"true"},"id":1004},{"properties":{"instrument":"pling","note":"3","powered":"false"},"id":1005},{"properties":{"instrument":"pling","note":"4","powered":"true"},"id":1006},{"properties":{"instrument":"pling","note":"4","powered":"false"},"id":1007},{"properties":{"instrument":"pling","note":"5","powered":"true"},"id":1008},{"properties":{"instrument":"pling","note":"5","powered":"false"},"id":1009},{"properties":{"instrument":"pling","note":"6","powered":"true"},"id":1010},{"properties":{"instrument":"pling","note":"6","powered":"false"},"id":1011},{"properties":{"instrument":"pling","note":"7","powered":"true"},"id":1012},{"properties":{"instrument":"pling","note":"7","powered":"false"},"id":1013},{"properties":{"instrument":"pling","note":"8","powered":"true"},"id":1014},{"properties":{"instrument":"pling","note":"8","powered":"false"},"id":1015},{"properties":{"instrument":"pling","note":"9","powered":"true"},"id":1016},{"properties":{"instrument":"pling","note":"9","powered":"false"},"id":1017},{"properties":{"instrument":"pling","note":"10","powered":"true"},"id":1018},{"properties":{"instrument":"pling","note":"10","powered":"false"},"id":1019},{"properties":{"instrument":"pling","note":"11","powered":"true"},"id":1020},{"properties":{"instrument":"pling","note":"11","powered":"false"},"id":1021},{"properties":{"instrument":"pling","note":"12","powered":"true"},"id":1022},{"properties":{"instrument":"pling","note":"12","powered":"false"},"id":1023},{"properties":{"instrument":"pling","note":"13","powered":"true"},"id":1024},{"properties":{"instrument":"pling","note":"13","powered":"false"},"id":1025},{"properties":{"instrument":"pling","note":"14","powered":"true"},"id":1026},{"properties":{"instrument":"pling","note":"14","powered":"false"},"id":1027},{"properties":{"instrument":"pling","note":"15","powered":"true"},"id":1028},{"properties":{"instrument":"pling","note":"15","powered":"false"},"id":1029},{"properties":{"instrument":"pling","note":"16","powered":"true"},"id":1030},{"properties":{"instrument":"pling","note":"16","powered":"false"},"id":1031},{"properties":{"instrument":"pling","note":"17","powered":"true"},"id":1032},{"properties":{"instrument":"pling","note":"17","powered":"false"},"id":1033},{"properties":{"instrument":"pling","note":"18","powered":"true"},"id":1034},{"properties":{"instrument":"pling","note":"18","powered":"false"},"id":1035},{"properties":{"instrument":"pling","note":"19","powered":"true"},"id":1036},{"properties":{"instrument":"pling","note":"19","powered":"false"},"id":1037},{"properties":{"instrument":"pling","note":"20","powered":"true"},"id":1038},{"properties":{"instrument":"pling","note":"20","powered":"false"},"id":1039},{"properties":{"instrument":"pling","note":"21","powered":"true"},"id":1040},{"properties":{"instrument":"pling","note":"21","powered":"false"},"id":1041},{"properties":{"instrument":"pling","note":"22","powered":"true"},"id":1042},{"properties":{"instrument":"pling","note":"22","powered":"false"},"id":1043},{"properties":{"instrument":"pling","note":"23","powered":"true"},"id":1044},{"properties":{"instrument":"pling","note":"23","powered":"false"},"id":1045},{"properties":{"instrument":"pling","note":"24","powered":"true"},"id":1046},{"properties":{"instrument":"pling","note":"24","powered":"false"},"id":1047}]},"white_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1048},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1049},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1050},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1051},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1052},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1053},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1054},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1055},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1056},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1057},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1058},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1059},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1060},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1061},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1062},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1063}]},"orange_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1064},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1065},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1066},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1067},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1068},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1069},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1070},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1071},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1072},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1073},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1074},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1075},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1076},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1077},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1078},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1079}]},"magenta_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1080},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1081},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1082},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1083},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1084},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1085},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1086},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1087},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1088},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1089},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1090},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1091},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1092},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1093},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1094},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1095}]},"light_blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1096},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1097},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1098},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1099},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1100},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1101},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1102},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1103},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1104},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1105},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1106},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1107},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1108},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1109},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1110},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1111}]},"yellow_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1112},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1113},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1114},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1115},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1116},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1117},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1118},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1119},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1120},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1121},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1122},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1123},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1124},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1125},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1126},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1127}]},"lime_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1128},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1129},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1130},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1131},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1132},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1133},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1134},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1135},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1136},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1137},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1138},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1139},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1140},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1141},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1142},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1143}]},"pink_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1144},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1145},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1146},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1147},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1148},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1149},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1150},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1151},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1152},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1153},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1154},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1155},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1156},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1157},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1158},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1159}]},"gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1160},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1161},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1162},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1163},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1164},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1165},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1166},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1167},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1168},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1169},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1170},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1171},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1172},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1173},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1174},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1175}]},"light_gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1176},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1177},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1178},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1179},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1180},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1181},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1182},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1183},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1184},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1185},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1186},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1187},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1188},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1189},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1190},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1191}]},"cyan_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1192},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1193},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1194},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1195},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1196},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1197},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1198},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1199},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1200},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1201},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1202},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1203},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1204},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1205},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1206},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1207}]},"purple_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1208},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1209},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1210},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1211},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1212},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1213},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1214},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1215},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1216},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1217},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1218},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1219},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1220},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1221},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1222},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1223}]},"blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1224},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1225},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1226},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1227},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1228},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1229},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1230},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1231},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1232},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1233},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1234},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1235},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1236},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1237},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1238},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1239}]},"brown_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1240},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1241},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1242},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1243},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1244},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1245},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1246},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1247},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1248},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1249},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1250},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1251},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1252},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1253},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1254},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1255}]},"green_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1256},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1257},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1258},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1259},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1260},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1261},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1262},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1263},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1264},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1265},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1266},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1267},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1268},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1269},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1270},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1271}]},"red_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1272},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1273},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1274},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1275},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1276},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1277},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1278},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1279},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1280},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1281},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1282},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1283},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1284},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1285},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1286},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1287}]},"black_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1288},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1289},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1290},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1291},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1292},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1293},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1294},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1295},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1296},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1297},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1298},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1299},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1300},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1301},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1302},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1303}]},"powered_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1304},{"properties":{"powered":"true","shape":"east_west"},"id":1305},{"properties":{"powered":"true","shape":"ascending_east"},"id":1306},{"properties":{"powered":"true","shape":"ascending_west"},"id":1307},{"properties":{"powered":"true","shape":"ascending_north"},"id":1308},{"properties":{"powered":"true","shape":"ascending_south"},"id":1309},{"properties":{"powered":"false","shape":"north_south"},"id":1310},{"properties":{"powered":"false","shape":"east_west"},"id":1311},{"properties":{"powered":"false","shape":"ascending_east"},"id":1312},{"properties":{"powered":"false","shape":"ascending_west"},"id":1313},{"properties":{"powered":"false","shape":"ascending_north"},"id":1314},{"properties":{"powered":"false","shape":"ascending_south"},"id":1315}]},"detector_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1316},{"properties":{"powered":"true","shape":"east_west"},"id":1317},{"properties":{"powered":"true","shape":"ascending_east"},"id":1318},{"properties":{"powered":"true","shape":"ascending_west"},"id":1319},{"properties":{"powered":"true","shape":"ascending_north"},"id":1320},{"properties":{"powered":"true","shape":"ascending_south"},"id":1321},{"properties":{"powered":"false","shape":"north_south"},"id":1322},{"properties":{"powered":"false","shape":"east_west"},"id":1323},{"properties":{"powered":"false","shape":"ascending_east"},"id":1324},{"properties":{"powered":"false","shape":"ascending_west"},"id":1325},{"properties":{"powered":"false","shape":"ascending_north"},"id":1326},{"properties":{"powered":"false","shape":"ascending_south"},"id":1327}]},"sticky_piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1328},{"properties":{"extended":"true","facing":"east"},"id":1329},{"properties":{"extended":"true","facing":"south"},"id":1330},{"properties":{"extended":"true","facing":"west"},"id":1331},{"properties":{"extended":"true","facing":"up"},"id":1332},{"properties":{"extended":"true","facing":"down"},"id":1333},{"properties":{"extended":"false","facing":"north"},"id":1334},{"properties":{"extended":"false","facing":"east"},"id":1335},{"properties":{"extended":"false","facing":"south"},"id":1336},{"properties":{"extended":"false","facing":"west"},"id":1337},{"properties":{"extended":"false","facing":"up"},"id":1338},{"properties":{"extended":"false","facing":"down"},"id":1339}]},"cobweb":{"states":[{"id":1340}]},"grass":{"states":[{"id":1341}]},"fern":{"states":[{"id":1342}]},"dead_bush":{"states":[{"id":1343}]},"seagrass":{"states":[{"id":1344}]},"tall_seagrass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":1345},{"properties":{"half":"lower"},"id":1346}]},"piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1347},{"properties":{"extended":"true","facing":"east"},"id":1348},{"properties":{"extended":"true","facing":"south"},"id":1349},{"properties":{"extended":"true","facing":"west"},"id":1350},{"properties":{"extended":"true","facing":"up"},"id":1351},{"properties":{"extended":"true","facing":"down"},"id":1352},{"properties":{"extended":"false","facing":"north"},"id":1353},{"properties":{"extended":"false","facing":"east"},"id":1354},{"properties":{"extended":"false","facing":"south"},"id":1355},{"properties":{"extended":"false","facing":"west"},"id":1356},{"properties":{"extended":"false","facing":"up"},"id":1357},{"properties":{"extended":"false","facing":"down"},"id":1358}]},"piston_head":{"properties":{"facing":["north","east","south","west","up","down"],"short":["true","false"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","short":"true","type":"normal"},"id":1359},{"properties":{"facing":"north","short":"true","type":"sticky"},"id":1360},{"properties":{"facing":"north","short":"false","type":"normal"},"id":1361},{"properties":{"facing":"north","short":"false","type":"sticky"},"id":1362},{"properties":{"facing":"east","short":"true","type":"normal"},"id":1363},{"properties":{"facing":"east","short":"true","type":"sticky"},"id":1364},{"properties":{"facing":"east","short":"false","type":"normal"},"id":1365},{"properties":{"facing":"east","short":"false","type":"sticky"},"id":1366},{"properties":{"facing":"south","short":"true","type":"normal"},"id":1367},{"properties":{"facing":"south","short":"true","type":"sticky"},"id":1368},{"properties":{"facing":"south","short":"false","type":"normal"},"id":1369},{"properties":{"facing":"south","short":"false","type":"sticky"},"id":1370},{"properties":{"facing":"west","short":"true","type":"normal"},"id":1371},{"properties":{"facing":"west","short":"true","type":"sticky"},"id":1372},{"properties":{"facing":"west","short":"false","type":"normal"},"id":1373},{"properties":{"facing":"west","short":"false","type":"sticky"},"id":1374},{"properties":{"facing":"up","short":"true","type":"normal"},"id":1375},{"properties":{"facing":"up","short":"true","type":"sticky"},"id":1376},{"properties":{"facing":"up","short":"false","type":"normal"},"id":1377},{"properties":{"facing":"up","short":"false","type":"sticky"},"id":1378},{"properties":{"facing":"down","short":"true","type":"normal"},"id":1379},{"properties":{"facing":"down","short":"true","type":"sticky"},"id":1380},{"properties":{"facing":"down","short":"false","type":"normal"},"id":1381},{"properties":{"facing":"down","short":"false","type":"sticky"},"id":1382}]},"white_wool":{"states":[{"id":1383}]},"orange_wool":{"states":[{"id":1384}]},"magenta_wool":{"states":[{"id":1385}]},"light_blue_wool":{"states":[{"id":1386}]},"yellow_wool":{"states":[{"id":1387}]},"lime_wool":{"states":[{"id":1388}]},"pink_wool":{"states":[{"id":1389}]},"gray_wool":{"states":[{"id":1390}]},"light_gray_wool":{"states":[{"id":1391}]},"cyan_wool":{"states":[{"id":1392}]},"purple_wool":{"states":[{"id":1393}]},"blue_wool":{"states":[{"id":1394}]},"brown_wool":{"states":[{"id":1395}]},"green_wool":{"states":[{"id":1396}]},"red_wool":{"states":[{"id":1397}]},"black_wool":{"states":[{"id":1398}]},"moving_piston":{"properties":{"facing":["north","east","south","west","up","down"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","type":"normal"},"id":1399},{"properties":{"facing":"north","type":"sticky"},"id":1400},{"properties":{"facing":"east","type":"normal"},"id":1401},{"properties":{"facing":"east","type":"sticky"},"id":1402},{"properties":{"facing":"south","type":"normal"},"id":1403},{"properties":{"facing":"south","type":"sticky"},"id":1404},{"properties":{"facing":"west","type":"normal"},"id":1405},{"properties":{"facing":"west","type":"sticky"},"id":1406},{"properties":{"facing":"up","type":"normal"},"id":1407},{"properties":{"facing":"up","type":"sticky"},"id":1408},{"properties":{"facing":"down","type":"normal"},"id":1409},{"properties":{"facing":"down","type":"sticky"},"id":1410}]},"dandelion":{"states":[{"id":1411}]},"poppy":{"states":[{"id":1412}]},"blue_orchid":{"states":[{"id":1413}]},"allium":{"states":[{"id":1414}]},"azure_bluet":{"states":[{"id":1415}]},"red_tulip":{"states":[{"id":1416}]},"orange_tulip":{"states":[{"id":1417}]},"white_tulip":{"states":[{"id":1418}]},"pink_tulip":{"states":[{"id":1419}]},"oxeye_daisy":{"states":[{"id":1420}]},"cornflower":{"states":[{"id":1421}]},"wither_rose":{"states":[{"id":1422}]},"lily_of_the_valley":{"states":[{"id":1423}]},"brown_mushroom":{"states":[{"id":1424}]},"red_mushroom":{"states":[{"id":1425}]},"gold_block":{"states":[{"id":1426}]},"iron_block":{"states":[{"id":1427}]},"bricks":{"states":[{"id":1428}]},"tnt":{"properties":{"unstable":["true","false"]},"states":[{"properties":{"unstable":"true"},"id":1429},{"properties":{"unstable":"false"},"id":1430}]},"bookshelf":{"states":[{"id":1431}]},"mossy_cobblestone":{"states":[{"id":1432}]},"obsidian":{"states":[{"id":1433}]},"torch":{"states":[{"id":1434}]},"wall_torch":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":1435},{"properties":{"facing":"south"},"id":1436},{"properties":{"facing":"west"},"id":1437},{"properties":{"facing":"east"},"id":1438}]},"fire":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1439},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1440},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1441},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1442},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1443},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1444},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1445},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1446},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1447},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1448},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1449},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1450},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1451},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1452},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1453},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1454},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1455},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1456},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1457},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1458},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1459},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1460},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1461},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1462},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1463},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1464},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1465},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1466},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1467},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1468},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1469},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1470},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1471},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1472},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1473},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1474},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1475},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1476},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1477},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1478},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1479},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1480},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1481},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1482},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1483},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1484},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1485},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1486},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1487},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1488},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1489},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1490},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1491},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1492},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1493},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1494},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1495},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1496},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1497},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1498},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1499},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1500},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1501},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1502},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1503},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1504},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1505},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1506},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1507},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1508},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1509},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1510},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1511},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1512},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1513},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1514},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1515},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1516},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1517},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1518},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1519},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1520},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1521},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1522},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1523},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1524},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1525},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1526},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1527},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1528},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1529},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1530},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1531},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1532},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1533},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1534},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1535},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1536},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1537},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1538},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1539},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1540},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1541},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1542},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1543},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1544},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1545},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1546},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1547},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1548},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1549},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1550},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1551},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1552},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1553},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1554},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1555},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1556},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1557},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1558},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1559},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1560},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1561},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1562},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1563},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1564},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1565},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1566},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1567},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1568},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1569},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1570},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1571},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1572},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1573},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1574},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1575},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1576},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1577},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1578},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1579},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1580},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1581},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1582},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1583},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1584},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1585},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1586},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1587},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1588},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1589},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1590},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1591},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1592},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1593},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1594},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1595},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1596},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1597},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1598},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1599},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1600},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1601},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1602},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1603},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1604},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1605},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1606},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1607},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1608},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1609},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1610},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1611},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1612},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1613},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1614},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1615},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1616},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1617},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1618},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1619},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1620},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1621},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1622},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1623},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1624},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1625},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1626},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1627},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1628},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1629},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1630},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1631},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1632},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1633},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1634},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1635},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1636},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1637},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1638},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1639},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1640},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1641},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1642},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1643},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1644},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1645},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1646},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1647},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1648},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1649},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1650},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1651},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1652},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1653},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1654},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1655},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1656},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1657},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1658},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1659},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1660},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1661},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1662},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1663},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1664},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1665},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1666},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1667},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1668},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1669},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1670},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1671},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1672},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1673},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1674},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1675},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1676},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1677},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1678},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1679},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1680},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1681},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1682},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1683},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1684},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1685},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1686},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1687},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1688},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1689},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1690},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1691},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1692},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1693},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1694},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1695},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1696},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1697},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1698},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1699},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1700},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1701},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1702},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1703},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1704},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1705},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1706},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1707},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1708},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1709},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1710},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1711},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1712},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1713},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1714},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1715},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1716},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1717},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1718},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1719},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1720},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1721},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1722},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1723},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1724},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1725},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1726},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1727},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1728},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1729},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1730},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1731},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1732},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1733},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1734},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1735},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1736},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1737},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1738},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1739},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1740},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1741},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1742},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1743},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1744},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1745},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1746},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1747},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1748},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1749},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1750},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1751},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1752},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1753},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1754},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1755},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1756},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1757},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1758},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1759},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1760},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1761},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1762},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1763},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1764},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1765},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1766},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1767},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1768},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1769},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1770},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1771},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1772},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1773},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1774},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1775},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1776},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1777},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1778},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1779},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1780},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1781},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1782},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1783},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1784},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1785},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1786},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1787},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1788},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1789},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1790},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1791},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1792},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1793},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1794},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1795},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1796},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1797},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1798},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1799},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1800},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1801},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1802},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1803},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1804},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1805},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1806},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1807},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1808},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1809},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1810},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1811},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1812},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1813},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1814},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1815},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1816},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1817},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1818},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1819},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1820},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1821},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1822},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1823},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1824},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1825},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1826},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1827},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1828},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1829},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1830},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1831},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1832},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1833},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1834},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1835},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1836},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1837},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1838},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1839},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1840},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1841},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1842},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1843},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1844},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1845},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1846},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1847},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1848},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1849},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1850},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1851},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1852},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1853},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1854},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1855},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1856},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1857},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1858},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1859},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1860},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1861},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1862},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1863},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1864},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1865},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1866},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1867},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1868},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1869},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1870},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1871},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1872},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1873},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1874},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1875},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1876},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1877},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1878},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1879},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1880},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1881},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1882},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1883},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1884},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1885},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1886},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1887},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1888},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1889},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1890},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1891},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1892},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1893},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1894},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1895},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1896},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1897},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1898},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1899},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1900},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1901},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1902},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1903},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1904},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1905},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1906},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1907},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1908},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1909},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1910},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1911},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1912},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1913},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1914},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1915},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1916},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1917},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1918},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1919},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1920},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1921},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1922},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1923},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1924},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1925},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1926},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1927},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1928},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1929},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1930},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1931},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1932},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1933},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1934},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1935},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1936},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1937},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1938},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1939},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1940},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1941},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1942},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1943},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1944},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1945},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1946},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1947},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1948},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1949},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1950}]},"spawner":{"states":[{"id":1951}]},"oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":1952},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":1953},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":1954},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":1955},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":1956},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":1957},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":1958},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":1959},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":1960},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":1961},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":1962},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":1963},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1964},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1965},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1966},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1967},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1968},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1969},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1970},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1971},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":1972},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":1973},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":1974},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":1975},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":1976},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":1977},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":1978},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":1979},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":1980},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":1981},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":1982},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":1983},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1984},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1985},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1986},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1987},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1988},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1989},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1990},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1991},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":1992},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":1993},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":1994},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":1995},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":1996},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":1997},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":1998},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":1999},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":2000},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":2001},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":2002},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":2003},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":2004},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":2005},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":2006},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":2007},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":2008},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":2009},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":2010},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":2011},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":2012},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":2013},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":2014},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":2015},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":2016},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":2017},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":2018},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":2019},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":2020},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":2021},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":2022},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":2023},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":2024},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":2025},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":2026},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":2027},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":2028},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":2029},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":2030},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":2031}]},"chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":2032},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":2033},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":2034},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":2035},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":2036},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":2037},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":2038},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":2039},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":2040},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":2041},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":2042},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":2043},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":2044},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":2045},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":2046},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":2047},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":2048},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":2049},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":2050},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":2051},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":2052},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":2053},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":2054},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":2055}]},"redstone_wire":{"properties":{"east":["up","side","none"],"north":["up","side","none"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"south":["up","side","none"],"west":["up","side","none"]},"states":[{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"up"},"id":2056},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"side"},"id":2057},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"none"},"id":2058},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"up"},"id":2059},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"side"},"id":2060},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"none"},"id":2061},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"up"},"id":2062},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"side"},"id":2063},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"none"},"id":2064},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"up"},"id":2065},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"side"},"id":2066},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"none"},"id":2067},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"up"},"id":2068},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"side"},"id":2069},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"none"},"id":2070},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"up"},"id":2071},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"side"},"id":2072},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"none"},"id":2073},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"up"},"id":2074},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"side"},"id":2075},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"none"},"id":2076},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"up"},"id":2077},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"side"},"id":2078},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"none"},"id":2079},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"up"},"id":2080},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"side"},"id":2081},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"none"},"id":2082},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"up"},"id":2083},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"side"},"id":2084},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"none"},"id":2085},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"up"},"id":2086},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"side"},"id":2087},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"none"},"id":2088},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"up"},"id":2089},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"side"},"id":2090},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"none"},"id":2091},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"up"},"id":2092},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"side"},"id":2093},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"none"},"id":2094},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"up"},"id":2095},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"side"},"id":2096},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"none"},"id":2097},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"up"},"id":2098},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"side"},"id":2099},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"none"},"id":2100},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"up"},"id":2101},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"side"},"id":2102},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"none"},"id":2103},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"up"},"id":2104},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"side"},"id":2105},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"none"},"id":2106},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"up"},"id":2107},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"side"},"id":2108},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"none"},"id":2109},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"up"},"id":2110},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"side"},"id":2111},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"none"},"id":2112},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"up"},"id":2113},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"side"},"id":2114},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"none"},"id":2115},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"up"},"id":2116},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"side"},"id":2117},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"none"},"id":2118},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"up"},"id":2119},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"side"},"id":2120},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"none"},"id":2121},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"up"},"id":2122},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"side"},"id":2123},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"none"},"id":2124},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"up"},"id":2125},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"side"},"id":2126},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"none"},"id":2127},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"up"},"id":2128},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"side"},"id":2129},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"none"},"id":2130},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"up"},"id":2131},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"side"},"id":2132},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"none"},"id":2133},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"up"},"id":2134},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"side"},"id":2135},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"none"},"id":2136},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"up"},"id":2137},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"side"},"id":2138},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"none"},"id":2139},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"up"},"id":2140},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"side"},"id":2141},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"none"},"id":2142},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"up"},"id":2143},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"side"},"id":2144},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"none"},"id":2145},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"up"},"id":2146},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"side"},"id":2147},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"none"},"id":2148},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"up"},"id":2149},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"side"},"id":2150},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"none"},"id":2151},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"up"},"id":2152},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"side"},"id":2153},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"none"},"id":2154},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"up"},"id":2155},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"side"},"id":2156},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"none"},"id":2157},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"up"},"id":2158},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"side"},"id":2159},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"none"},"id":2160},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"up"},"id":2161},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"side"},"id":2162},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"none"},"id":2163},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"up"},"id":2164},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"side"},"id":2165},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"none"},"id":2166},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"up"},"id":2167},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"side"},"id":2168},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"none"},"id":2169},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"up"},"id":2170},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"side"},"id":2171},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"none"},"id":2172},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"up"},"id":2173},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"side"},"id":2174},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"none"},"id":2175},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"up"},"id":2176},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"side"},"id":2177},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"none"},"id":2178},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"up"},"id":2179},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"side"},"id":2180},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"none"},"id":2181},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"up"},"id":2182},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"side"},"id":2183},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"none"},"id":2184},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"up"},"id":2185},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"side"},"id":2186},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"none"},"id":2187},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"up"},"id":2188},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"side"},"id":2189},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"none"},"id":2190},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"up"},"id":2191},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"side"},"id":2192},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"none"},"id":2193},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"up"},"id":2194},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"side"},"id":2195},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"none"},"id":2196},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"up"},"id":2197},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"side"},"id":2198},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"none"},"id":2199},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"up"},"id":2200},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"side"},"id":2201},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"none"},"id":2202},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"up"},"id":2203},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"side"},"id":2204},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"none"},"id":2205},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"up"},"id":2206},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"side"},"id":2207},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"none"},"id":2208},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"up"},"id":2209},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"side"},"id":2210},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"none"},"id":2211},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"up"},"id":2212},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"side"},"id":2213},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"none"},"id":2214},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"up"},"id":2215},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"side"},"id":2216},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"none"},"id":2217},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"up"},"id":2218},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"side"},"id":2219},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"none"},"id":2220},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"up"},"id":2221},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"side"},"id":2222},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"none"},"id":2223},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"up"},"id":2224},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"side"},"id":2225},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"none"},"id":2226},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"up"},"id":2227},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"side"},"id":2228},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"none"},"id":2229},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"up"},"id":2230},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"side"},"id":2231},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"none"},"id":2232},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"up"},"id":2233},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"side"},"id":2234},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"none"},"id":2235},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"up"},"id":2236},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"side"},"id":2237},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"none"},"id":2238},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"up"},"id":2239},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"side"},"id":2240},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"none"},"id":2241},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"up"},"id":2242},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"side"},"id":2243},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"none"},"id":2244},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"up"},"id":2245},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"side"},"id":2246},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"none"},"id":2247},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"up"},"id":2248},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"side"},"id":2249},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"none"},"id":2250},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"up"},"id":2251},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"side"},"id":2252},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"none"},"id":2253},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"up"},"id":2254},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"side"},"id":2255},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"none"},"id":2256},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"up"},"id":2257},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"side"},"id":2258},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"none"},"id":2259},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"up"},"id":2260},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"side"},"id":2261},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"none"},"id":2262},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"up"},"id":2263},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"side"},"id":2264},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"none"},"id":2265},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"up"},"id":2266},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"side"},"id":2267},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"none"},"id":2268},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"up"},"id":2269},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"side"},"id":2270},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"none"},"id":2271},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"up"},"id":2272},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"side"},"id":2273},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"none"},"id":2274},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"up"},"id":2275},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"side"},"id":2276},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"none"},"id":2277},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"up"},"id":2278},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"side"},"id":2279},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"none"},"id":2280},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"up"},"id":2281},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"side"},"id":2282},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"none"},"id":2283},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"up"},"id":2284},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"side"},"id":2285},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"none"},"id":2286},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"up"},"id":2287},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"side"},"id":2288},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"none"},"id":2289},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"up"},"id":2290},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"side"},"id":2291},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"none"},"id":2292},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"up"},"id":2293},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"side"},"id":2294},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"none"},"id":2295},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"up"},"id":2296},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"side"},"id":2297},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"none"},"id":2298},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"up"},"id":2299},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"side"},"id":2300},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"none"},"id":2301},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"up"},"id":2302},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"side"},"id":2303},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"none"},"id":2304},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"up"},"id":2305},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"side"},"id":2306},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"none"},"id":2307},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"up"},"id":2308},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"side"},"id":2309},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"none"},"id":2310},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"up"},"id":2311},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"side"},"id":2312},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"none"},"id":2313},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"up"},"id":2314},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"side"},"id":2315},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"none"},"id":2316},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"up"},"id":2317},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"side"},"id":2318},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"none"},"id":2319},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"up"},"id":2320},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"side"},"id":2321},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"none"},"id":2322},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"up"},"id":2323},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"side"},"id":2324},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"none"},"id":2325},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"up"},"id":2326},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"side"},"id":2327},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"none"},"id":2328},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"up"},"id":2329},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"side"},"id":2330},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"none"},"id":2331},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"up"},"id":2332},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"side"},"id":2333},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"none"},"id":2334},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"up"},"id":2335},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"side"},"id":2336},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"none"},"id":2337},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"up"},"id":2338},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"side"},"id":2339},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"none"},"id":2340},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"up"},"id":2341},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"side"},"id":2342},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"none"},"id":2343},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"up"},"id":2344},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"side"},"id":2345},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"none"},"id":2346},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"up"},"id":2347},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"side"},"id":2348},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"none"},"id":2349},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"up"},"id":2350},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"side"},"id":2351},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"none"},"id":2352},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"up"},"id":2353},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"side"},"id":2354},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"none"},"id":2355},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"up"},"id":2356},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"side"},"id":2357},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"none"},"id":2358},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"up"},"id":2359},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"side"},"id":2360},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"none"},"id":2361},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"up"},"id":2362},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"side"},"id":2363},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"none"},"id":2364},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"up"},"id":2365},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"side"},"id":2366},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"none"},"id":2367},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"up"},"id":2368},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"side"},"id":2369},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"none"},"id":2370},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"up"},"id":2371},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"side"},"id":2372},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"none"},"id":2373},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"up"},"id":2374},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"side"},"id":2375},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"none"},"id":2376},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"up"},"id":2377},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"side"},"id":2378},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"none"},"id":2379},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"up"},"id":2380},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"side"},"id":2381},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"none"},"id":2382},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"up"},"id":2383},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"side"},"id":2384},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"none"},"id":2385},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"up"},"id":2386},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"side"},"id":2387},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"none"},"id":2388},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"up"},"id":2389},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"side"},"id":2390},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"none"},"id":2391},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"up"},"id":2392},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"side"},"id":2393},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"none"},"id":2394},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"up"},"id":2395},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"side"},"id":2396},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"none"},"id":2397},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"up"},"id":2398},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"side"},"id":2399},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"none"},"id":2400},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"up"},"id":2401},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"side"},"id":2402},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"none"},"id":2403},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"up"},"id":2404},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"side"},"id":2405},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"none"},"id":2406},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"up"},"id":2407},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"side"},"id":2408},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"none"},"id":2409},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"up"},"id":2410},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"side"},"id":2411},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"none"},"id":2412},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"up"},"id":2413},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"side"},"id":2414},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"none"},"id":2415},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"up"},"id":2416},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"side"},"id":2417},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"none"},"id":2418},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"up"},"id":2419},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"side"},"id":2420},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"none"},"id":2421},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"up"},"id":2422},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"side"},"id":2423},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"none"},"id":2424},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"up"},"id":2425},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"side"},"id":2426},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"none"},"id":2427},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"up"},"id":2428},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"side"},"id":2429},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"none"},"id":2430},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"up"},"id":2431},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"side"},"id":2432},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"none"},"id":2433},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"up"},"id":2434},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"side"},"id":2435},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"none"},"id":2436},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"up"},"id":2437},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"side"},"id":2438},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"none"},"id":2439},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"up"},"id":2440},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"side"},"id":2441},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"none"},"id":2442},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"up"},"id":2443},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"side"},"id":2444},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"none"},"id":2445},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"up"},"id":2446},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"side"},"id":2447},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"none"},"id":2448},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"up"},"id":2449},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"side"},"id":2450},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"none"},"id":2451},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"up"},"id":2452},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"side"},"id":2453},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"none"},"id":2454},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"up"},"id":2455},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"side"},"id":2456},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"none"},"id":2457},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"up"},"id":2458},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"side"},"id":2459},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"none"},"id":2460},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"up"},"id":2461},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"side"},"id":2462},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"none"},"id":2463},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"up"},"id":2464},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"side"},"id":2465},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"none"},"id":2466},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"up"},"id":2467},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"side"},"id":2468},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"none"},"id":2469},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"up"},"id":2470},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"side"},"id":2471},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"none"},"id":2472},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"up"},"id":2473},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"side"},"id":2474},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"none"},"id":2475},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"up"},"id":2476},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"side"},"id":2477},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"none"},"id":2478},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"up"},"id":2479},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"side"},"id":2480},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"none"},"id":2481},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"up"},"id":2482},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"side"},"id":2483},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"none"},"id":2484},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"up"},"id":2485},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"side"},"id":2486},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"none"},"id":2487},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"up"},"id":2488},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"side"},"id":2489},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"none"},"id":2490},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"up"},"id":2491},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"side"},"id":2492},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"none"},"id":2493},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"up"},"id":2494},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"side"},"id":2495},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"none"},"id":2496},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"up"},"id":2497},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"side"},"id":2498},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"none"},"id":2499},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"up"},"id":2500},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"side"},"id":2501},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"none"},"id":2502},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"up"},"id":2503},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"side"},"id":2504},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"none"},"id":2505},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"up"},"id":2506},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"side"},"id":2507},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"none"},"id":2508},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"up"},"id":2509},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"side"},"id":2510},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"none"},"id":2511},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"up"},"id":2512},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"side"},"id":2513},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"none"},"id":2514},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"up"},"id":2515},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"side"},"id":2516},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"none"},"id":2517},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"up"},"id":2518},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"side"},"id":2519},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"none"},"id":2520},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"up"},"id":2521},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"side"},"id":2522},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"none"},"id":2523},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"up"},"id":2524},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"side"},"id":2525},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"none"},"id":2526},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"up"},"id":2527},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"side"},"id":2528},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"none"},"id":2529},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"up"},"id":2530},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"side"},"id":2531},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"none"},"id":2532},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"up"},"id":2533},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"side"},"id":2534},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"none"},"id":2535},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"up"},"id":2536},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"side"},"id":2537},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"none"},"id":2538},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"up"},"id":2539},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"side"},"id":2540},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"none"},"id":2541},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"up"},"id":2542},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"side"},"id":2543},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"none"},"id":2544},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"up"},"id":2545},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"side"},"id":2546},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"none"},"id":2547},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"up"},"id":2548},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"side"},"id":2549},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"none"},"id":2550},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"up"},"id":2551},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"side"},"id":2552},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"none"},"id":2553},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"up"},"id":2554},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"side"},"id":2555},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"none"},"id":2556},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"up"},"id":2557},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"side"},"id":2558},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"none"},"id":2559},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"up"},"id":2560},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"side"},"id":2561},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"none"},"id":2562},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"up"},"id":2563},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"side"},"id":2564},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"none"},"id":2565},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"up"},"id":2566},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"side"},"id":2567},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"none"},"id":2568},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"up"},"id":2569},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"side"},"id":2570},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"none"},"id":2571},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"up"},"id":2572},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"side"},"id":2573},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"none"},"id":2574},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"up"},"id":2575},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"side"},"id":2576},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"none"},"id":2577},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"up"},"id":2578},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"side"},"id":2579},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"none"},"id":2580},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"up"},"id":2581},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"side"},"id":2582},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"none"},"id":2583},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"up"},"id":2584},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"side"},"id":2585},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"none"},"id":2586},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"up"},"id":2587},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"side"},"id":2588},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"none"},"id":2589},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"up"},"id":2590},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"side"},"id":2591},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"none"},"id":2592},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"up"},"id":2593},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"side"},"id":2594},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"none"},"id":2595},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"up"},"id":2596},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"side"},"id":2597},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"none"},"id":2598},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"up"},"id":2599},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"side"},"id":2600},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"none"},"id":2601},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"up"},"id":2602},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"side"},"id":2603},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"none"},"id":2604},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"up"},"id":2605},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"side"},"id":2606},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"none"},"id":2607},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"up"},"id":2608},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"side"},"id":2609},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"none"},"id":2610},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"up"},"id":2611},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"side"},"id":2612},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"none"},"id":2613},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"up"},"id":2614},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"side"},"id":2615},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"none"},"id":2616},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"up"},"id":2617},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"side"},"id":2618},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"none"},"id":2619},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"up"},"id":2620},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"side"},"id":2621},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"none"},"id":2622},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"up"},"id":2623},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"side"},"id":2624},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"none"},"id":2625},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"up"},"id":2626},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"side"},"id":2627},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"none"},"id":2628},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"up"},"id":2629},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"side"},"id":2630},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"none"},"id":2631},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"up"},"id":2632},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"side"},"id":2633},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"none"},"id":2634},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"up"},"id":2635},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"side"},"id":2636},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"none"},"id":2637},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"up"},"id":2638},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"side"},"id":2639},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"none"},"id":2640},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"up"},"id":2641},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"side"},"id":2642},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"none"},"id":2643},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"up"},"id":2644},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"side"},"id":2645},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"none"},"id":2646},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"up"},"id":2647},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"side"},"id":2648},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"none"},"id":2649},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"up"},"id":2650},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"side"},"id":2651},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"none"},"id":2652},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"up"},"id":2653},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"side"},"id":2654},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"none"},"id":2655},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"up"},"id":2656},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"side"},"id":2657},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"none"},"id":2658},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"up"},"id":2659},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"side"},"id":2660},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"none"},"id":2661},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"up"},"id":2662},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"side"},"id":2663},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"none"},"id":2664},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"up"},"id":2665},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"side"},"id":2666},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"none"},"id":2667},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"up"},"id":2668},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"side"},"id":2669},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"none"},"id":2670},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"up"},"id":2671},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"side"},"id":2672},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"none"},"id":2673},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"up"},"id":2674},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"side"},"id":2675},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"none"},"id":2676},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"up"},"id":2677},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"side"},"id":2678},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"none"},"id":2679},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"up"},"id":2680},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"side"},"id":2681},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"none"},"id":2682},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"up"},"id":2683},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"side"},"id":2684},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"none"},"id":2685},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"up"},"id":2686},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"side"},"id":2687},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"none"},"id":2688},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"up"},"id":2689},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"side"},"id":2690},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"none"},"id":2691},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"up"},"id":2692},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"side"},"id":2693},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"none"},"id":2694},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"up"},"id":2695},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"side"},"id":2696},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"none"},"id":2697},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"up"},"id":2698},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"side"},"id":2699},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"none"},"id":2700},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"up"},"id":2701},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"side"},"id":2702},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"none"},"id":2703},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"up"},"id":2704},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"side"},"id":2705},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"none"},"id":2706},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"up"},"id":2707},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"side"},"id":2708},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"none"},"id":2709},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"up"},"id":2710},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"side"},"id":2711},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"none"},"id":2712},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"up"},"id":2713},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"side"},"id":2714},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"none"},"id":2715},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"up"},"id":2716},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"side"},"id":2717},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"none"},"id":2718},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"up"},"id":2719},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"side"},"id":2720},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"none"},"id":2721},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"up"},"id":2722},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"side"},"id":2723},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"none"},"id":2724},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"up"},"id":2725},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"side"},"id":2726},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"none"},"id":2727},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"up"},"id":2728},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"side"},"id":2729},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"none"},"id":2730},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"up"},"id":2731},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"side"},"id":2732},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"none"},"id":2733},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"up"},"id":2734},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"side"},"id":2735},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"none"},"id":2736},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"up"},"id":2737},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"side"},"id":2738},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"none"},"id":2739},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"up"},"id":2740},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"side"},"id":2741},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"none"},"id":2742},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"up"},"id":2743},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"side"},"id":2744},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"none"},"id":2745},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"up"},"id":2746},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"side"},"id":2747},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"none"},"id":2748},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"up"},"id":2749},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"side"},"id":2750},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"none"},"id":2751},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"up"},"id":2752},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"side"},"id":2753},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"none"},"id":2754},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"up"},"id":2755},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"side"},"id":2756},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"none"},"id":2757},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"up"},"id":2758},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"side"},"id":2759},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"none"},"id":2760},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"up"},"id":2761},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"side"},"id":2762},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"none"},"id":2763},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"up"},"id":2764},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"side"},"id":2765},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"none"},"id":2766},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"up"},"id":2767},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"side"},"id":2768},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"none"},"id":2769},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"up"},"id":2770},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"side"},"id":2771},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"none"},"id":2772},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"up"},"id":2773},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"side"},"id":2774},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"none"},"id":2775},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"up"},"id":2776},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"side"},"id":2777},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"none"},"id":2778},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"up"},"id":2779},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"side"},"id":2780},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"none"},"id":2781},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"up"},"id":2782},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"side"},"id":2783},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"none"},"id":2784},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"up"},"id":2785},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"side"},"id":2786},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"none"},"id":2787},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"up"},"id":2788},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"side"},"id":2789},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"none"},"id":2790},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"up"},"id":2791},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"side"},"id":2792},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"none"},"id":2793},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"up"},"id":2794},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"side"},"id":2795},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"none"},"id":2796},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"up"},"id":2797},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"side"},"id":2798},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"none"},"id":2799},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"up"},"id":2800},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"side"},"id":2801},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"none"},"id":2802},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"up"},"id":2803},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"side"},"id":2804},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"none"},"id":2805},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"up"},"id":2806},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"side"},"id":2807},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"none"},"id":2808},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"up"},"id":2809},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"side"},"id":2810},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"none"},"id":2811},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"up"},"id":2812},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"side"},"id":2813},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"none"},"id":2814},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"up"},"id":2815},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"side"},"id":2816},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"none"},"id":2817},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"up"},"id":2818},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"side"},"id":2819},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"none"},"id":2820},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"up"},"id":2821},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"side"},"id":2822},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"none"},"id":2823},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"up"},"id":2824},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"side"},"id":2825},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"none"},"id":2826},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"up"},"id":2827},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"side"},"id":2828},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"none"},"id":2829},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"up"},"id":2830},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"side"},"id":2831},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"none"},"id":2832},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"up"},"id":2833},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"side"},"id":2834},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"none"},"id":2835},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"up"},"id":2836},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"side"},"id":2837},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"none"},"id":2838},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"up"},"id":2839},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"side"},"id":2840},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"none"},"id":2841},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"up"},"id":2842},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"side"},"id":2843},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"none"},"id":2844},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"up"},"id":2845},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"side"},"id":2846},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"none"},"id":2847},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"up"},"id":2848},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"side"},"id":2849},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"none"},"id":2850},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"up"},"id":2851},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"side"},"id":2852},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"none"},"id":2853},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"up"},"id":2854},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"side"},"id":2855},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"none"},"id":2856},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"up"},"id":2857},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"side"},"id":2858},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"none"},"id":2859},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"up"},"id":2860},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"side"},"id":2861},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"none"},"id":2862},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"up"},"id":2863},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"side"},"id":2864},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"none"},"id":2865},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"up"},"id":2866},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"side"},"id":2867},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"none"},"id":2868},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"up"},"id":2869},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"side"},"id":2870},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"none"},"id":2871},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"up"},"id":2872},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"side"},"id":2873},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"none"},"id":2874},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"up"},"id":2875},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"side"},"id":2876},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"none"},"id":2877},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"up"},"id":2878},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"side"},"id":2879},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"none"},"id":2880},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"up"},"id":2881},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"side"},"id":2882},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"none"},"id":2883},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"up"},"id":2884},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"side"},"id":2885},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"none"},"id":2886},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"up"},"id":2887},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"side"},"id":2888},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"none"},"id":2889},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"up"},"id":2890},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"side"},"id":2891},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"none"},"id":2892},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"up"},"id":2893},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"side"},"id":2894},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"none"},"id":2895},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"up"},"id":2896},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"side"},"id":2897},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"none"},"id":2898},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"up"},"id":2899},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"side"},"id":2900},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"none"},"id":2901},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"up"},"id":2902},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"side"},"id":2903},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"none"},"id":2904},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"up"},"id":2905},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"side"},"id":2906},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"none"},"id":2907},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"up"},"id":2908},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"side"},"id":2909},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"none"},"id":2910},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"up"},"id":2911},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"side"},"id":2912},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"none"},"id":2913},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"up"},"id":2914},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"side"},"id":2915},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"none"},"id":2916},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"up"},"id":2917},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"side"},"id":2918},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"none"},"id":2919},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"up"},"id":2920},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"side"},"id":2921},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"none"},"id":2922},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"up"},"id":2923},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"side"},"id":2924},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"none"},"id":2925},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"up"},"id":2926},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"side"},"id":2927},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"none"},"id":2928},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"up"},"id":2929},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"side"},"id":2930},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"none"},"id":2931},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"up"},"id":2932},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"side"},"id":2933},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"none"},"id":2934},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"up"},"id":2935},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"side"},"id":2936},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"none"},"id":2937},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"up"},"id":2938},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"side"},"id":2939},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"none"},"id":2940},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"up"},"id":2941},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"side"},"id":2942},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"none"},"id":2943},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"up"},"id":2944},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"side"},"id":2945},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"none"},"id":2946},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"up"},"id":2947},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"side"},"id":2948},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"none"},"id":2949},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"up"},"id":2950},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"side"},"id":2951},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"none"},"id":2952},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"up"},"id":2953},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"side"},"id":2954},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"none"},"id":2955},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"up"},"id":2956},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"side"},"id":2957},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"none"},"id":2958},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"up"},"id":2959},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"side"},"id":2960},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"none"},"id":2961},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"up"},"id":2962},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"side"},"id":2963},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"none"},"id":2964},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"up"},"id":2965},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"side"},"id":2966},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"none"},"id":2967},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"up"},"id":2968},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"side"},"id":2969},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"none"},"id":2970},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"up"},"id":2971},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"side"},"id":2972},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"none"},"id":2973},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"up"},"id":2974},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"side"},"id":2975},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"none"},"id":2976},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"up"},"id":2977},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"side"},"id":2978},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"none"},"id":2979},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"up"},"id":2980},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"side"},"id":2981},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"none"},"id":2982},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"up"},"id":2983},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"side"},"id":2984},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"none"},"id":2985},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"up"},"id":2986},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"side"},"id":2987},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"none"},"id":2988},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"up"},"id":2989},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"side"},"id":2990},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"none"},"id":2991},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"up"},"id":2992},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"side"},"id":2993},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"none"},"id":2994},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"up"},"id":2995},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"side"},"id":2996},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"none"},"id":2997},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"up"},"id":2998},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"side"},"id":2999},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"none"},"id":3000},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"up"},"id":3001},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"side"},"id":3002},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"none"},"id":3003},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"up"},"id":3004},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"side"},"id":3005},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"none"},"id":3006},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"up"},"id":3007},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"side"},"id":3008},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"none"},"id":3009},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"up"},"id":3010},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"side"},"id":3011},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"none"},"id":3012},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"up"},"id":3013},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"side"},"id":3014},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"none"},"id":3015},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"up"},"id":3016},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"side"},"id":3017},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"none"},"id":3018},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"up"},"id":3019},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"side"},"id":3020},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"none"},"id":3021},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"up"},"id":3022},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"side"},"id":3023},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"none"},"id":3024},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"up"},"id":3025},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"side"},"id":3026},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"none"},"id":3027},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"up"},"id":3028},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"side"},"id":3029},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"none"},"id":3030},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"up"},"id":3031},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"side"},"id":3032},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"none"},"id":3033},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"up"},"id":3034},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"side"},"id":3035},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"none"},"id":3036},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"up"},"id":3037},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"side"},"id":3038},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"none"},"id":3039},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"up"},"id":3040},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"side"},"id":3041},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"none"},"id":3042},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"up"},"id":3043},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"side"},"id":3044},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"none"},"id":3045},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"up"},"id":3046},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"side"},"id":3047},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"none"},"id":3048},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"up"},"id":3049},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"side"},"id":3050},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"none"},"id":3051},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"up"},"id":3052},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"side"},"id":3053},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"none"},"id":3054},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"up"},"id":3055},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"side"},"id":3056},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"none"},"id":3057},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"up"},"id":3058},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"side"},"id":3059},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"none"},"id":3060},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"up"},"id":3061},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"side"},"id":3062},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"none"},"id":3063},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"up"},"id":3064},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"side"},"id":3065},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"none"},"id":3066},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"up"},"id":3067},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"side"},"id":3068},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"none"},"id":3069},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"up"},"id":3070},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"side"},"id":3071},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"none"},"id":3072},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"up"},"id":3073},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"side"},"id":3074},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"none"},"id":3075},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"up"},"id":3076},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"side"},"id":3077},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"none"},"id":3078},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"up"},"id":3079},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"side"},"id":3080},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"none"},"id":3081},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"up"},"id":3082},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"side"},"id":3083},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"none"},"id":3084},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"up"},"id":3085},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"side"},"id":3086},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"none"},"id":3087},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"up"},"id":3088},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"side"},"id":3089},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"none"},"id":3090},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"up"},"id":3091},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"side"},"id":3092},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"none"},"id":3093},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"up"},"id":3094},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"side"},"id":3095},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"none"},"id":3096},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"up"},"id":3097},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"side"},"id":3098},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"none"},"id":3099},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"up"},"id":3100},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"side"},"id":3101},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"none"},"id":3102},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"up"},"id":3103},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"side"},"id":3104},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"none"},"id":3105},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"up"},"id":3106},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"side"},"id":3107},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"none"},"id":3108},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"up"},"id":3109},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"side"},"id":3110},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"none"},"id":3111},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"up"},"id":3112},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"side"},"id":3113},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"none"},"id":3114},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"up"},"id":3115},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"side"},"id":3116},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"none"},"id":3117},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"up"},"id":3118},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"side"},"id":3119},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"none"},"id":3120},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"up"},"id":3121},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"side"},"id":3122},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"none"},"id":3123},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"up"},"id":3124},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"side"},"id":3125},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"none"},"id":3126},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"up"},"id":3127},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"side"},"id":3128},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"none"},"id":3129},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"up"},"id":3130},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"side"},"id":3131},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"none"},"id":3132},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"up"},"id":3133},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"side"},"id":3134},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"none"},"id":3135},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"up"},"id":3136},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"side"},"id":3137},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"none"},"id":3138},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"up"},"id":3139},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"side"},"id":3140},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"none"},"id":3141},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"up"},"id":3142},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"side"},"id":3143},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"none"},"id":3144},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"up"},"id":3145},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"side"},"id":3146},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"none"},"id":3147},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"up"},"id":3148},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"side"},"id":3149},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"none"},"id":3150},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"up"},"id":3151},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"side"},"id":3152},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"none"},"id":3153},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"up"},"id":3154},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"side"},"id":3155},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"none"},"id":3156},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"up"},"id":3157},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"side"},"id":3158},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"none"},"id":3159},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"up"},"id":3160},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"side"},"id":3161},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"none"},"id":3162},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"up"},"id":3163},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"side"},"id":3164},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"none"},"id":3165},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"up"},"id":3166},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"side"},"id":3167},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"none"},"id":3168},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"up"},"id":3169},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"side"},"id":3170},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"none"},"id":3171},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"up"},"id":3172},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"side"},"id":3173},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"none"},"id":3174},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"up"},"id":3175},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"side"},"id":3176},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"none"},"id":3177},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"up"},"id":3178},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"side"},"id":3179},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"none"},"id":3180},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"up"},"id":3181},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"side"},"id":3182},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"none"},"id":3183},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"up"},"id":3184},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"side"},"id":3185},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"none"},"id":3186},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"up"},"id":3187},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"side"},"id":3188},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"none"},"id":3189},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"up"},"id":3190},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"side"},"id":3191},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"none"},"id":3192},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"up"},"id":3193},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"side"},"id":3194},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"none"},"id":3195},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"up"},"id":3196},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"side"},"id":3197},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"none"},"id":3198},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"up"},"id":3199},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"side"},"id":3200},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"none"},"id":3201},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"up"},"id":3202},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"side"},"id":3203},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"none"},"id":3204},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"up"},"id":3205},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"side"},"id":3206},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"none"},"id":3207},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"up"},"id":3208},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"side"},"id":3209},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"none"},"id":3210},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"up"},"id":3211},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"side"},"id":3212},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"none"},"id":3213},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"up"},"id":3214},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"side"},"id":3215},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"none"},"id":3216},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"up"},"id":3217},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"side"},"id":3218},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"none"},"id":3219},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"up"},"id":3220},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"side"},"id":3221},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"none"},"id":3222},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"up"},"id":3223},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"side"},"id":3224},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"none"},"id":3225},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"up"},"id":3226},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"side"},"id":3227},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"none"},"id":3228},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"up"},"id":3229},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"side"},"id":3230},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"none"},"id":3231},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"up"},"id":3232},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"side"},"id":3233},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"none"},"id":3234},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"up"},"id":3235},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"side"},"id":3236},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"none"},"id":3237},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"up"},"id":3238},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"side"},"id":3239},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"none"},"id":3240},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"up"},"id":3241},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"side"},"id":3242},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"none"},"id":3243},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"up"},"id":3244},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"side"},"id":3245},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"none"},"id":3246},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"up"},"id":3247},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"side"},"id":3248},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"none"},"id":3249},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"up"},"id":3250},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"side"},"id":3251},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"none"},"id":3252},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"up"},"id":3253},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"side"},"id":3254},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"none"},"id":3255},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"up"},"id":3256},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"side"},"id":3257},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"none"},"id":3258},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"up"},"id":3259},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"side"},"id":3260},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"none"},"id":3261},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"up"},"id":3262},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"side"},"id":3263},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"none"},"id":3264},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"up"},"id":3265},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"side"},"id":3266},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"none"},"id":3267},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"up"},"id":3268},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"side"},"id":3269},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"none"},"id":3270},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"up"},"id":3271},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"side"},"id":3272},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"none"},"id":3273},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"up"},"id":3274},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"side"},"id":3275},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"none"},"id":3276},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"up"},"id":3277},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"side"},"id":3278},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"none"},"id":3279},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"up"},"id":3280},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"side"},"id":3281},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"none"},"id":3282},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"up"},"id":3283},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"side"},"id":3284},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"none"},"id":3285},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"up"},"id":3286},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"side"},"id":3287},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"none"},"id":3288},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"up"},"id":3289},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"side"},"id":3290},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"none"},"id":3291},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"up"},"id":3292},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"side"},"id":3293},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"none"},"id":3294},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"up"},"id":3295},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"side"},"id":3296},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"none"},"id":3297},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"up"},"id":3298},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"side"},"id":3299},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"none"},"id":3300},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"up"},"id":3301},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"side"},"id":3302},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"none"},"id":3303},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"up"},"id":3304},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"side"},"id":3305},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"none"},"id":3306},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"up"},"id":3307},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"side"},"id":3308},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"none"},"id":3309},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"up"},"id":3310},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"side"},"id":3311},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"none"},"id":3312},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"up"},"id":3313},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"side"},"id":3314},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"none"},"id":3315},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"up"},"id":3316},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"side"},"id":3317},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"none"},"id":3318},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"up"},"id":3319},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"side"},"id":3320},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"none"},"id":3321},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"up"},"id":3322},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"side"},"id":3323},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"none"},"id":3324},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"up"},"id":3325},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"side"},"id":3326},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"none"},"id":3327},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"up"},"id":3328},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"side"},"id":3329},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"none"},"id":3330},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"up"},"id":3331},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"side"},"id":3332},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"none"},"id":3333},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"up"},"id":3334},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"side"},"id":3335},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"none"},"id":3336},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"up"},"id":3337},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"side"},"id":3338},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"none"},"id":3339},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"up"},"id":3340},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"side"},"id":3341},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"none"},"id":3342},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"up"},"id":3343},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"side"},"id":3344},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"none"},"id":3345},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"up"},"id":3346},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"side"},"id":3347},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"none"},"id":3348},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"up"},"id":3349},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"side"},"id":3350},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"none"},"id":3351}]},"diamond_ore":{"states":[{"id":3352}]},"diamond_block":{"states":[{"id":3353}]},"crafting_table":{"states":[{"id":3354}]},"wheat":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":3355},{"properties":{"age":"1"},"id":3356},{"properties":{"age":"2"},"id":3357},{"properties":{"age":"3"},"id":3358},{"properties":{"age":"4"},"id":3359},{"properties":{"age":"5"},"id":3360},{"properties":{"age":"6"},"id":3361},{"properties":{"age":"7"},"id":3362}]},"farmland":{"properties":{"moisture":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"moisture":"0"},"id":3363},{"properties":{"moisture":"1"},"id":3364},{"properties":{"moisture":"2"},"id":3365},{"properties":{"moisture":"3"},"id":3366},{"properties":{"moisture":"4"},"id":3367},{"properties":{"moisture":"5"},"id":3368},{"properties":{"moisture":"6"},"id":3369},{"properties":{"moisture":"7"},"id":3370}]},"furnace":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3371},{"properties":{"facing":"north","lit":"false"},"id":3372},{"properties":{"facing":"south","lit":"true"},"id":3373},{"properties":{"facing":"south","lit":"false"},"id":3374},{"properties":{"facing":"west","lit":"true"},"id":3375},{"properties":{"facing":"west","lit":"false"},"id":3376},{"properties":{"facing":"east","lit":"true"},"id":3377},{"properties":{"facing":"east","lit":"false"},"id":3378}]},"oak_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3379},{"properties":{"rotation":"0","waterlogged":"false"},"id":3380},{"properties":{"rotation":"1","waterlogged":"true"},"id":3381},{"properties":{"rotation":"1","waterlogged":"false"},"id":3382},{"properties":{"rotation":"2","waterlogged":"true"},"id":3383},{"properties":{"rotation":"2","waterlogged":"false"},"id":3384},{"properties":{"rotation":"3","waterlogged":"true"},"id":3385},{"properties":{"rotation":"3","waterlogged":"false"},"id":3386},{"properties":{"rotation":"4","waterlogged":"true"},"id":3387},{"properties":{"rotation":"4","waterlogged":"false"},"id":3388},{"properties":{"rotation":"5","waterlogged":"true"},"id":3389},{"properties":{"rotation":"5","waterlogged":"false"},"id":3390},{"properties":{"rotation":"6","waterlogged":"true"},"id":3391},{"properties":{"rotation":"6","waterlogged":"false"},"id":3392},{"properties":{"rotation":"7","waterlogged":"true"},"id":3393},{"properties":{"rotation":"7","waterlogged":"false"},"id":3394},{"properties":{"rotation":"8","waterlogged":"true"},"id":3395},{"properties":{"rotation":"8","waterlogged":"false"},"id":3396},{"properties":{"rotation":"9","waterlogged":"true"},"id":3397},{"properties":{"rotation":"9","waterlogged":"false"},"id":3398},{"properties":{"rotation":"10","waterlogged":"true"},"id":3399},{"properties":{"rotation":"10","waterlogged":"false"},"id":3400},{"properties":{"rotation":"11","waterlogged":"true"},"id":3401},{"properties":{"rotation":"11","waterlogged":"false"},"id":3402},{"properties":{"rotation":"12","waterlogged":"true"},"id":3403},{"properties":{"rotation":"12","waterlogged":"false"},"id":3404},{"properties":{"rotation":"13","waterlogged":"true"},"id":3405},{"properties":{"rotation":"13","waterlogged":"false"},"id":3406},{"properties":{"rotation":"14","waterlogged":"true"},"id":3407},{"properties":{"rotation":"14","waterlogged":"false"},"id":3408},{"properties":{"rotation":"15","waterlogged":"true"},"id":3409},{"properties":{"rotation":"15","waterlogged":"false"},"id":3410}]},"spruce_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3411},{"properties":{"rotation":"0","waterlogged":"false"},"id":3412},{"properties":{"rotation":"1","waterlogged":"true"},"id":3413},{"properties":{"rotation":"1","waterlogged":"false"},"id":3414},{"properties":{"rotation":"2","waterlogged":"true"},"id":3415},{"properties":{"rotation":"2","waterlogged":"false"},"id":3416},{"properties":{"rotation":"3","waterlogged":"true"},"id":3417},{"properties":{"rotation":"3","waterlogged":"false"},"id":3418},{"properties":{"rotation":"4","waterlogged":"true"},"id":3419},{"properties":{"rotation":"4","waterlogged":"false"},"id":3420},{"properties":{"rotation":"5","waterlogged":"true"},"id":3421},{"properties":{"rotation":"5","waterlogged":"false"},"id":3422},{"properties":{"rotation":"6","waterlogged":"true"},"id":3423},{"properties":{"rotation":"6","waterlogged":"false"},"id":3424},{"properties":{"rotation":"7","waterlogged":"true"},"id":3425},{"properties":{"rotation":"7","waterlogged":"false"},"id":3426},{"properties":{"rotation":"8","waterlogged":"true"},"id":3427},{"properties":{"rotation":"8","waterlogged":"false"},"id":3428},{"properties":{"rotation":"9","waterlogged":"true"},"id":3429},{"properties":{"rotation":"9","waterlogged":"false"},"id":3430},{"properties":{"rotation":"10","waterlogged":"true"},"id":3431},{"properties":{"rotation":"10","waterlogged":"false"},"id":3432},{"properties":{"rotation":"11","waterlogged":"true"},"id":3433},{"properties":{"rotation":"11","waterlogged":"false"},"id":3434},{"properties":{"rotation":"12","waterlogged":"true"},"id":3435},{"properties":{"rotation":"12","waterlogged":"false"},"id":3436},{"properties":{"rotation":"13","waterlogged":"true"},"id":3437},{"properties":{"rotation":"13","waterlogged":"false"},"id":3438},{"properties":{"rotation":"14","waterlogged":"true"},"id":3439},{"properties":{"rotation":"14","waterlogged":"false"},"id":3440},{"properties":{"rotation":"15","waterlogged":"true"},"id":3441},{"properties":{"rotation":"15","waterlogged":"false"},"id":3442}]},"birch_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3443},{"properties":{"rotation":"0","waterlogged":"false"},"id":3444},{"properties":{"rotation":"1","waterlogged":"true"},"id":3445},{"properties":{"rotation":"1","waterlogged":"false"},"id":3446},{"properties":{"rotation":"2","waterlogged":"true"},"id":3447},{"properties":{"rotation":"2","waterlogged":"false"},"id":3448},{"properties":{"rotation":"3","waterlogged":"true"},"id":3449},{"properties":{"rotation":"3","waterlogged":"false"},"id":3450},{"properties":{"rotation":"4","waterlogged":"true"},"id":3451},{"properties":{"rotation":"4","waterlogged":"false"},"id":3452},{"properties":{"rotation":"5","waterlogged":"true"},"id":3453},{"properties":{"rotation":"5","waterlogged":"false"},"id":3454},{"properties":{"rotation":"6","waterlogged":"true"},"id":3455},{"properties":{"rotation":"6","waterlogged":"false"},"id":3456},{"properties":{"rotation":"7","waterlogged":"true"},"id":3457},{"properties":{"rotation":"7","waterlogged":"false"},"id":3458},{"properties":{"rotation":"8","waterlogged":"true"},"id":3459},{"properties":{"rotation":"8","waterlogged":"false"},"id":3460},{"properties":{"rotation":"9","waterlogged":"true"},"id":3461},{"properties":{"rotation":"9","waterlogged":"false"},"id":3462},{"properties":{"rotation":"10","waterlogged":"true"},"id":3463},{"properties":{"rotation":"10","waterlogged":"false"},"id":3464},{"properties":{"rotation":"11","waterlogged":"true"},"id":3465},{"properties":{"rotation":"11","waterlogged":"false"},"id":3466},{"properties":{"rotation":"12","waterlogged":"true"},"id":3467},{"properties":{"rotation":"12","waterlogged":"false"},"id":3468},{"properties":{"rotation":"13","waterlogged":"true"},"id":3469},{"properties":{"rotation":"13","waterlogged":"false"},"id":3470},{"properties":{"rotation":"14","waterlogged":"true"},"id":3471},{"properties":{"rotation":"14","waterlogged":"false"},"id":3472},{"properties":{"rotation":"15","waterlogged":"true"},"id":3473},{"properties":{"rotation":"15","waterlogged":"false"},"id":3474}]},"acacia_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3475},{"properties":{"rotation":"0","waterlogged":"false"},"id":3476},{"properties":{"rotation":"1","waterlogged":"true"},"id":3477},{"properties":{"rotation":"1","waterlogged":"false"},"id":3478},{"properties":{"rotation":"2","waterlogged":"true"},"id":3479},{"properties":{"rotation":"2","waterlogged":"false"},"id":3480},{"properties":{"rotation":"3","waterlogged":"true"},"id":3481},{"properties":{"rotation":"3","waterlogged":"false"},"id":3482},{"properties":{"rotation":"4","waterlogged":"true"},"id":3483},{"properties":{"rotation":"4","waterlogged":"false"},"id":3484},{"properties":{"rotation":"5","waterlogged":"true"},"id":3485},{"properties":{"rotation":"5","waterlogged":"false"},"id":3486},{"properties":{"rotation":"6","waterlogged":"true"},"id":3487},{"properties":{"rotation":"6","waterlogged":"false"},"id":3488},{"properties":{"rotation":"7","waterlogged":"true"},"id":3489},{"properties":{"rotation":"7","waterlogged":"false"},"id":3490},{"properties":{"rotation":"8","waterlogged":"true"},"id":3491},{"properties":{"rotation":"8","waterlogged":"false"},"id":3492},{"properties":{"rotation":"9","waterlogged":"true"},"id":3493},{"properties":{"rotation":"9","waterlogged":"false"},"id":3494},{"properties":{"rotation":"10","waterlogged":"true"},"id":3495},{"properties":{"rotation":"10","waterlogged":"false"},"id":3496},{"properties":{"rotation":"11","waterlogged":"true"},"id":3497},{"properties":{"rotation":"11","waterlogged":"false"},"id":3498},{"properties":{"rotation":"12","waterlogged":"true"},"id":3499},{"properties":{"rotation":"12","waterlogged":"false"},"id":3500},{"properties":{"rotation":"13","waterlogged":"true"},"id":3501},{"properties":{"rotation":"13","waterlogged":"false"},"id":3502},{"properties":{"rotation":"14","waterlogged":"true"},"id":3503},{"properties":{"rotation":"14","waterlogged":"false"},"id":3504},{"properties":{"rotation":"15","waterlogged":"true"},"id":3505},{"properties":{"rotation":"15","waterlogged":"false"},"id":3506}]},"jungle_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3507},{"properties":{"rotation":"0","waterlogged":"false"},"id":3508},{"properties":{"rotation":"1","waterlogged":"true"},"id":3509},{"properties":{"rotation":"1","waterlogged":"false"},"id":3510},{"properties":{"rotation":"2","waterlogged":"true"},"id":3511},{"properties":{"rotation":"2","waterlogged":"false"},"id":3512},{"properties":{"rotation":"3","waterlogged":"true"},"id":3513},{"properties":{"rotation":"3","waterlogged":"false"},"id":3514},{"properties":{"rotation":"4","waterlogged":"true"},"id":3515},{"properties":{"rotation":"4","waterlogged":"false"},"id":3516},{"properties":{"rotation":"5","waterlogged":"true"},"id":3517},{"properties":{"rotation":"5","waterlogged":"false"},"id":3518},{"properties":{"rotation":"6","waterlogged":"true"},"id":3519},{"properties":{"rotation":"6","waterlogged":"false"},"id":3520},{"properties":{"rotation":"7","waterlogged":"true"},"id":3521},{"properties":{"rotation":"7","waterlogged":"false"},"id":3522},{"properties":{"rotation":"8","waterlogged":"true"},"id":3523},{"properties":{"rotation":"8","waterlogged":"false"},"id":3524},{"properties":{"rotation":"9","waterlogged":"true"},"id":3525},{"properties":{"rotation":"9","waterlogged":"false"},"id":3526},{"properties":{"rotation":"10","waterlogged":"true"},"id":3527},{"properties":{"rotation":"10","waterlogged":"false"},"id":3528},{"properties":{"rotation":"11","waterlogged":"true"},"id":3529},{"properties":{"rotation":"11","waterlogged":"false"},"id":3530},{"properties":{"rotation":"12","waterlogged":"true"},"id":3531},{"properties":{"rotation":"12","waterlogged":"false"},"id":3532},{"properties":{"rotation":"13","waterlogged":"true"},"id":3533},{"properties":{"rotation":"13","waterlogged":"false"},"id":3534},{"properties":{"rotation":"14","waterlogged":"true"},"id":3535},{"properties":{"rotation":"14","waterlogged":"false"},"id":3536},{"properties":{"rotation":"15","waterlogged":"true"},"id":3537},{"properties":{"rotation":"15","waterlogged":"false"},"id":3538}]},"dark_oak_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3539},{"properties":{"rotation":"0","waterlogged":"false"},"id":3540},{"properties":{"rotation":"1","waterlogged":"true"},"id":3541},{"properties":{"rotation":"1","waterlogged":"false"},"id":3542},{"properties":{"rotation":"2","waterlogged":"true"},"id":3543},{"properties":{"rotation":"2","waterlogged":"false"},"id":3544},{"properties":{"rotation":"3","waterlogged":"true"},"id":3545},{"properties":{"rotation":"3","waterlogged":"false"},"id":3546},{"properties":{"rotation":"4","waterlogged":"true"},"id":3547},{"properties":{"rotation":"4","waterlogged":"false"},"id":3548},{"properties":{"rotation":"5","waterlogged":"true"},"id":3549},{"properties":{"rotation":"5","waterlogged":"false"},"id":3550},{"properties":{"rotation":"6","waterlogged":"true"},"id":3551},{"properties":{"rotation":"6","waterlogged":"false"},"id":3552},{"properties":{"rotation":"7","waterlogged":"true"},"id":3553},{"properties":{"rotation":"7","waterlogged":"false"},"id":3554},{"properties":{"rotation":"8","waterlogged":"true"},"id":3555},{"properties":{"rotation":"8","waterlogged":"false"},"id":3556},{"properties":{"rotation":"9","waterlogged":"true"},"id":3557},{"properties":{"rotation":"9","waterlogged":"false"},"id":3558},{"properties":{"rotation":"10","waterlogged":"true"},"id":3559},{"properties":{"rotation":"10","waterlogged":"false"},"id":3560},{"properties":{"rotation":"11","waterlogged":"true"},"id":3561},{"properties":{"rotation":"11","waterlogged":"false"},"id":3562},{"properties":{"rotation":"12","waterlogged":"true"},"id":3563},{"properties":{"rotation":"12","waterlogged":"false"},"id":3564},{"properties":{"rotation":"13","waterlogged":"true"},"id":3565},{"properties":{"rotation":"13","waterlogged":"false"},"id":3566},{"properties":{"rotation":"14","waterlogged":"true"},"id":3567},{"properties":{"rotation":"14","waterlogged":"false"},"id":3568},{"properties":{"rotation":"15","waterlogged":"true"},"id":3569},{"properties":{"rotation":"15","waterlogged":"false"},"id":3570}]},"oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3571},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3572},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3573},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3574},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3575},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3576},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3577},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3578},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3579},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3580},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3581},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3582},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3583},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3584},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3585},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3586},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3587},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3588},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3589},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3590},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3591},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3592},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3593},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3594},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3595},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3596},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3597},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3598},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3599},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3600},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3601},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3602},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3603},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3604},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3605},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3606},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3607},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3608},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3609},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3610},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3611},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3612},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3613},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3614},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3615},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3616},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3617},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3618},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3619},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3620},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3621},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3622},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3623},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3624},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3625},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3626},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3627},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3628},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3629},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3630},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3631},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3632},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3633},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3634}]},"ladder":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3635},{"properties":{"facing":"north","waterlogged":"false"},"id":3636},{"properties":{"facing":"south","waterlogged":"true"},"id":3637},{"properties":{"facing":"south","waterlogged":"false"},"id":3638},{"properties":{"facing":"west","waterlogged":"true"},"id":3639},{"properties":{"facing":"west","waterlogged":"false"},"id":3640},{"properties":{"facing":"east","waterlogged":"true"},"id":3641},{"properties":{"facing":"east","waterlogged":"false"},"id":3642}]},"rail":{"properties":{"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south","south_east","south_west","north_west","north_east"]},"states":[{"properties":{"shape":"north_south"},"id":3643},{"properties":{"shape":"east_west"},"id":3644},{"properties":{"shape":"ascending_east"},"id":3645},{"properties":{"shape":"ascending_west"},"id":3646},{"properties":{"shape":"ascending_north"},"id":3647},{"properties":{"shape":"ascending_south"},"id":3648},{"properties":{"shape":"south_east"},"id":3649},{"properties":{"shape":"south_west"},"id":3650},{"properties":{"shape":"north_west"},"id":3651},{"properties":{"shape":"north_east"},"id":3652}]},"cobblestone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":3653},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":3654},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":3655},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":3656},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":3657},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":3658},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":3659},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":3660},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":3661},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":3662},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":3663},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":3664},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3665},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3666},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3667},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3668},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3669},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3670},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3671},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3672},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":3673},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":3674},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":3675},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":3676},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":3677},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":3678},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":3679},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":3680},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":3681},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":3682},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":3683},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":3684},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3685},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3686},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3687},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3688},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3689},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3690},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3691},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3692},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":3693},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":3694},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":3695},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":3696},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":3697},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":3698},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":3699},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":3700},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":3701},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":3702},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":3703},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":3704},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3705},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3706},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3707},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3708},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3709},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3710},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3711},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3712},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":3713},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":3714},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":3715},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":3716},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":3717},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":3718},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":3719},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":3720},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":3721},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":3722},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":3723},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":3724},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3725},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3726},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3727},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3728},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3729},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3730},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3731},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3732}]},"oak_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3733},{"properties":{"facing":"north","waterlogged":"false"},"id":3734},{"properties":{"facing":"south","waterlogged":"true"},"id":3735},{"properties":{"facing":"south","waterlogged":"false"},"id":3736},{"properties":{"facing":"west","waterlogged":"true"},"id":3737},{"properties":{"facing":"west","waterlogged":"false"},"id":3738},{"properties":{"facing":"east","waterlogged":"true"},"id":3739},{"properties":{"facing":"east","waterlogged":"false"},"id":3740}]},"spruce_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3741},{"properties":{"facing":"north","waterlogged":"false"},"id":3742},{"properties":{"facing":"south","waterlogged":"true"},"id":3743},{"properties":{"facing":"south","waterlogged":"false"},"id":3744},{"properties":{"facing":"west","waterlogged":"true"},"id":3745},{"properties":{"facing":"west","waterlogged":"false"},"id":3746},{"properties":{"facing":"east","waterlogged":"true"},"id":3747},{"properties":{"facing":"east","waterlogged":"false"},"id":3748}]},"birch_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3749},{"properties":{"facing":"north","waterlogged":"false"},"id":3750},{"properties":{"facing":"south","waterlogged":"true"},"id":3751},{"properties":{"facing":"south","waterlogged":"false"},"id":3752},{"properties":{"facing":"west","waterlogged":"true"},"id":3753},{"properties":{"facing":"west","waterlogged":"false"},"id":3754},{"properties":{"facing":"east","waterlogged":"true"},"id":3755},{"properties":{"facing":"east","waterlogged":"false"},"id":3756}]},"acacia_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3757},{"properties":{"facing":"north","waterlogged":"false"},"id":3758},{"properties":{"facing":"south","waterlogged":"true"},"id":3759},{"properties":{"facing":"south","waterlogged":"false"},"id":3760},{"properties":{"facing":"west","waterlogged":"true"},"id":3761},{"properties":{"facing":"west","waterlogged":"false"},"id":3762},{"properties":{"facing":"east","waterlogged":"true"},"id":3763},{"properties":{"facing":"east","waterlogged":"false"},"id":3764}]},"jungle_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3765},{"properties":{"facing":"north","waterlogged":"false"},"id":3766},{"properties":{"facing":"south","waterlogged":"true"},"id":3767},{"properties":{"facing":"south","waterlogged":"false"},"id":3768},{"properties":{"facing":"west","waterlogged":"true"},"id":3769},{"properties":{"facing":"west","waterlogged":"false"},"id":3770},{"properties":{"facing":"east","waterlogged":"true"},"id":3771},{"properties":{"facing":"east","waterlogged":"false"},"id":3772}]},"dark_oak_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3773},{"properties":{"facing":"north","waterlogged":"false"},"id":3774},{"properties":{"facing":"south","waterlogged":"true"},"id":3775},{"properties":{"facing":"south","waterlogged":"false"},"id":3776},{"properties":{"facing":"west","waterlogged":"true"},"id":3777},{"properties":{"facing":"west","waterlogged":"false"},"id":3778},{"properties":{"facing":"east","waterlogged":"true"},"id":3779},{"properties":{"facing":"east","waterlogged":"false"},"id":3780}]},"lever":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3781},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3782},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3783},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3784},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3785},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3786},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3787},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3788},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3789},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3790},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3791},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3792},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3793},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3794},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3795},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3796},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3797},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3798},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3799},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3800},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3801},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3802},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3803},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3804}]},"stone_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3805},{"properties":{"powered":"false"},"id":3806}]},"iron_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3807},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3808},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3809},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3810},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3811},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3812},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3813},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3814},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3815},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3816},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3817},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3818},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3819},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3820},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3821},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3822},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3823},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3824},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3825},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3826},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3827},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3828},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3829},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3830},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3831},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3832},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3833},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3834},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3835},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3836},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3837},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3838},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3839},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3840},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3841},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3842},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3843},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3844},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3845},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3846},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3847},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3848},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3849},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3850},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3851},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3852},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3853},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3854},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3855},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3856},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3857},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3858},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3859},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3860},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3861},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3862},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3863},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3864},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3865},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3866},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3867},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3868},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3869},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3870}]},"oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3871},{"properties":{"powered":"false"},"id":3872}]},"spruce_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3873},{"properties":{"powered":"false"},"id":3874}]},"birch_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3875},{"properties":{"powered":"false"},"id":3876}]},"jungle_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3877},{"properties":{"powered":"false"},"id":3878}]},"acacia_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3879},{"properties":{"powered":"false"},"id":3880}]},"dark_oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3881},{"properties":{"powered":"false"},"id":3882}]},"redstone_ore":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3883},{"properties":{"lit":"false"},"id":3884}]},"redstone_torch":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3885},{"properties":{"lit":"false"},"id":3886}]},"redstone_wall_torch":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3887},{"properties":{"facing":"north","lit":"false"},"id":3888},{"properties":{"facing":"south","lit":"true"},"id":3889},{"properties":{"facing":"south","lit":"false"},"id":3890},{"properties":{"facing":"west","lit":"true"},"id":3891},{"properties":{"facing":"west","lit":"false"},"id":3892},{"properties":{"facing":"east","lit":"true"},"id":3893},{"properties":{"facing":"east","lit":"false"},"id":3894}]},"stone_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3895},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3896},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3897},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3898},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3899},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3900},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3901},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3902},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3903},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3904},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3905},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3906},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3907},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3908},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3909},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3910},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3911},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3912},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3913},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3914},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3915},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3916},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3917},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3918}]},"snow":{"properties":{"layers":["1","2","3","4","5","6","7","8"]},"states":[{"properties":{"layers":"1"},"id":3919},{"properties":{"layers":"2"},"id":3920},{"properties":{"layers":"3"},"id":3921},{"properties":{"layers":"4"},"id":3922},{"properties":{"layers":"5"},"id":3923},{"properties":{"layers":"6"},"id":3924},{"properties":{"layers":"7"},"id":3925},{"properties":{"layers":"8"},"id":3926}]},"ice":{"states":[{"id":3927}]},"snow_block":{"states":[{"id":3928}]},"cactus":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3929},{"properties":{"age":"1"},"id":3930},{"properties":{"age":"2"},"id":3931},{"properties":{"age":"3"},"id":3932},{"properties":{"age":"4"},"id":3933},{"properties":{"age":"5"},"id":3934},{"properties":{"age":"6"},"id":3935},{"properties":{"age":"7"},"id":3936},{"properties":{"age":"8"},"id":3937},{"properties":{"age":"9"},"id":3938},{"properties":{"age":"10"},"id":3939},{"properties":{"age":"11"},"id":3940},{"properties":{"age":"12"},"id":3941},{"properties":{"age":"13"},"id":3942},{"properties":{"age":"14"},"id":3943},{"properties":{"age":"15"},"id":3944}]},"clay":{"states":[{"id":3945}]},"sugar_cane":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3946},{"properties":{"age":"1"},"id":3947},{"properties":{"age":"2"},"id":3948},{"properties":{"age":"3"},"id":3949},{"properties":{"age":"4"},"id":3950},{"properties":{"age":"5"},"id":3951},{"properties":{"age":"6"},"id":3952},{"properties":{"age":"7"},"id":3953},{"properties":{"age":"8"},"id":3954},{"properties":{"age":"9"},"id":3955},{"properties":{"age":"10"},"id":3956},{"properties":{"age":"11"},"id":3957},{"properties":{"age":"12"},"id":3958},{"properties":{"age":"13"},"id":3959},{"properties":{"age":"14"},"id":3960},{"properties":{"age":"15"},"id":3961}]},"jukebox":{"properties":{"has_record":["true","false"]},"states":[{"properties":{"has_record":"true"},"id":3962},{"properties":{"has_record":"false"},"id":3963}]},"oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3964},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3965},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3966},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3967},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3968},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3969},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3970},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3971},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3972},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3973},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3974},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3975},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3976},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3977},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3978},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3979},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3980},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3981},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3982},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3983},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3984},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3985},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3986},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3987},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3988},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3989},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3990},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3991},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3992},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3993},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3994},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3995}]},"pumpkin":{"states":[{"id":3996}]},"netherrack":{"states":[{"id":3997}]},"soul_sand":{"states":[{"id":3998}]},"glowstone":{"states":[{"id":3999}]},"nether_portal":{"properties":{"axis":["x","z"]},"states":[{"properties":{"axis":"x"},"id":4000},{"properties":{"axis":"z"},"id":4001}]},"carved_pumpkin":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4002},{"properties":{"facing":"south"},"id":4003},{"properties":{"facing":"west"},"id":4004},{"properties":{"facing":"east"},"id":4005}]},"jack_o_lantern":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4006},{"properties":{"facing":"south"},"id":4007},{"properties":{"facing":"west"},"id":4008},{"properties":{"facing":"east"},"id":4009}]},"cake":{"properties":{"bites":["0","1","2","3","4","5","6"]},"states":[{"properties":{"bites":"0"},"id":4010},{"properties":{"bites":"1"},"id":4011},{"properties":{"bites":"2"},"id":4012},{"properties":{"bites":"3"},"id":4013},{"properties":{"bites":"4"},"id":4014},{"properties":{"bites":"5"},"id":4015},{"properties":{"bites":"6"},"id":4016}]},"repeater":{"properties":{"delay":["1","2","3","4"],"facing":["north","south","west","east"],"locked":["true","false"],"powered":["true","false"]},"states":[{"properties":{"delay":"1","facing":"north","locked":"true","powered":"true"},"id":4017},{"properties":{"delay":"1","facing":"north","locked":"true","powered":"false"},"id":4018},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"true"},"id":4019},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"false"},"id":4020},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"true"},"id":4021},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"false"},"id":4022},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"true"},"id":4023},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"false"},"id":4024},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"true"},"id":4025},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"false"},"id":4026},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"true"},"id":4027},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"false"},"id":4028},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"true"},"id":4029},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"false"},"id":4030},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"true"},"id":4031},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"false"},"id":4032},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"true"},"id":4033},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"false"},"id":4034},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"true"},"id":4035},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"false"},"id":4036},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"true"},"id":4037},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"false"},"id":4038},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"true"},"id":4039},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"false"},"id":4040},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"true"},"id":4041},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"false"},"id":4042},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"true"},"id":4043},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"false"},"id":4044},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"true"},"id":4045},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"false"},"id":4046},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"true"},"id":4047},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"false"},"id":4048},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"true"},"id":4049},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"false"},"id":4050},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"true"},"id":4051},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"false"},"id":4052},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"true"},"id":4053},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"false"},"id":4054},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"true"},"id":4055},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"false"},"id":4056},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"true"},"id":4057},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"false"},"id":4058},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"true"},"id":4059},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"false"},"id":4060},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"true"},"id":4061},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"false"},"id":4062},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"true"},"id":4063},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"false"},"id":4064},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"true"},"id":4065},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"false"},"id":4066},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"true"},"id":4067},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"false"},"id":4068},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"true"},"id":4069},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"false"},"id":4070},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"true"},"id":4071},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"false"},"id":4072},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"true"},"id":4073},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"false"},"id":4074},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"true"},"id":4075},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"false"},"id":4076},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"true"},"id":4077},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"false"},"id":4078},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"true"},"id":4079},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"false"},"id":4080}]},"white_stained_glass":{"states":[{"id":4081}]},"orange_stained_glass":{"states":[{"id":4082}]},"magenta_stained_glass":{"states":[{"id":4083}]},"light_blue_stained_glass":{"states":[{"id":4084}]},"yellow_stained_glass":{"states":[{"id":4085}]},"lime_stained_glass":{"states":[{"id":4086}]},"pink_stained_glass":{"states":[{"id":4087}]},"gray_stained_glass":{"states":[{"id":4088}]},"light_gray_stained_glass":{"states":[{"id":4089}]},"cyan_stained_glass":{"states":[{"id":4090}]},"purple_stained_glass":{"states":[{"id":4091}]},"blue_stained_glass":{"states":[{"id":4092}]},"brown_stained_glass":{"states":[{"id":4093}]},"green_stained_glass":{"states":[{"id":4094}]},"red_stained_glass":{"states":[{"id":4095}]},"black_stained_glass":{"states":[{"id":4096}]},"oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4097},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4098},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4099},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4100},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4101},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4102},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4103},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4104},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4105},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4106},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4107},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4108},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4109},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4110},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4111},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4112},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4113},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4114},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4115},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4116},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4117},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4118},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4119},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4120},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4121},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4122},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4123},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4124},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4125},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4126},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4127},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4128},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4129},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4130},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4131},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4132},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4133},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4134},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4135},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4136},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4137},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4138},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4139},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4140},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4141},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4142},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4143},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4144},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4145},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4146},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4147},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4148},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4149},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4150},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4151},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4152},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4153},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4154},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4155},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4156},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4157},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4158},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4159},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4160}]},"spruce_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4161},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4162},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4163},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4164},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4165},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4166},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4167},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4168},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4169},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4170},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4171},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4172},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4173},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4174},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4175},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4176},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4177},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4178},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4179},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4180},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4181},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4182},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4183},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4184},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4185},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4186},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4187},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4188},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4189},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4190},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4191},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4192},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4193},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4194},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4195},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4196},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4197},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4198},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4199},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4200},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4201},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4202},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4203},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4204},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4205},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4206},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4207},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4208},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4209},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4210},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4211},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4212},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4213},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4214},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4215},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4216},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4217},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4218},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4219},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4220},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4221},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4222},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4223},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4224}]},"birch_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4225},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4226},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4227},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4228},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4229},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4230},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4231},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4232},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4233},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4234},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4235},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4236},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4237},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4238},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4239},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4240},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4241},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4242},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4243},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4244},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4245},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4246},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4247},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4248},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4249},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4250},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4251},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4252},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4253},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4254},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4255},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4256},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4257},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4258},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4259},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4260},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4261},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4262},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4263},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4264},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4265},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4266},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4267},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4268},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4269},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4270},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4271},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4272},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4273},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4274},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4275},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4276},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4277},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4278},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4279},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4280},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4281},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4282},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4283},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4284},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4285},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4286},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4287},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4288}]},"jungle_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4289},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4290},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4291},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4292},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4293},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4294},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4295},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4296},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4297},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4298},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4299},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4300},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4301},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4302},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4303},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4304},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4305},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4306},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4307},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4308},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4309},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4310},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4311},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4312},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4313},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4314},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4315},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4316},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4317},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4318},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4319},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4320},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4321},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4322},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4323},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4324},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4325},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4326},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4327},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4328},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4329},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4330},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4331},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4332},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4333},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4334},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4335},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4336},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4337},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4338},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4339},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4340},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4341},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4342},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4343},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4344},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4345},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4346},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4347},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4348},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4349},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4350},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4351},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4352}]},"acacia_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4353},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4354},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4355},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4356},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4357},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4358},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4359},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4360},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4361},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4362},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4363},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4364},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4365},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4366},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4367},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4368},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4369},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4370},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4371},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4372},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4373},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4374},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4375},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4376},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4377},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4378},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4379},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4380},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4381},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4382},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4383},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4384},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4385},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4386},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4387},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4388},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4389},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4390},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4391},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4392},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4393},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4394},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4395},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4396},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4397},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4398},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4399},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4400},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4401},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4402},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4403},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4404},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4405},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4406},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4407},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4408},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4409},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4410},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4411},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4412},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4413},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4414},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4415},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4416}]},"dark_oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4417},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4418},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4419},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4420},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4421},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4422},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4423},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4424},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4425},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4426},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4427},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4428},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4429},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4430},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4431},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4432},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4433},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4434},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4435},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4436},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4437},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4438},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4439},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4440},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4441},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4442},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4443},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4444},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4445},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4446},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4447},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4448},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4449},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4450},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4451},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4452},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4453},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4454},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4455},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4456},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4457},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4458},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4459},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4460},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4461},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4462},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4463},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4464},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4465},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4466},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4467},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4468},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4469},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4470},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4471},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4472},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4473},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4474},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4475},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4476},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4477},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4478},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4479},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4480}]},"stone_bricks":{"states":[{"id":4481}]},"mossy_stone_bricks":{"states":[{"id":4482}]},"cracked_stone_bricks":{"states":[{"id":4483}]},"chiseled_stone_bricks":{"states":[{"id":4484}]},"infested_stone":{"states":[{"id":4485}]},"infested_cobblestone":{"states":[{"id":4486}]},"infested_stone_bricks":{"states":[{"id":4487}]},"infested_mossy_stone_bricks":{"states":[{"id":4488}]},"infested_cracked_stone_bricks":{"states":[{"id":4489}]},"infested_chiseled_stone_bricks":{"states":[{"id":4490}]},"brown_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4491},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4492},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4493},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4494},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4495},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4496},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4497},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4498},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4499},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4500},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4501},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4502},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4503},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4504},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4505},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4506},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4507},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4508},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4509},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4510},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4511},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4512},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4513},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4514},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4515},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4516},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4517},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4518},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4519},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4520},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4521},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4522},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4523},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4524},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4525},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4526},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4527},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4528},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4529},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4530},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4531},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4532},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4533},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4534},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4535},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4536},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4537},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4538},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4539},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4540},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4541},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4542},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4543},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4544},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4545},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4546},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4547},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4548},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4549},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4550},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4551},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4552},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4553},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4554}]},"red_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4555},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4556},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4557},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4558},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4559},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4560},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4561},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4562},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4563},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4564},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4565},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4566},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4567},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4568},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4569},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4570},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4571},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4572},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4573},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4574},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4575},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4576},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4577},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4578},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4579},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4580},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4581},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4582},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4583},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4584},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4585},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4586},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4587},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4588},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4589},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4590},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4591},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4592},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4593},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4594},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4595},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4596},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4597},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4598},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4599},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4600},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4601},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4602},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4603},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4604},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4605},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4606},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4607},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4608},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4609},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4610},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4611},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4612},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4613},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4614},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4615},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4616},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4617},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4618}]},"mushroom_stem":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4619},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4620},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4621},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4622},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4623},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4624},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4625},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4626},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4627},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4628},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4629},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4630},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4631},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4632},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4633},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4634},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4635},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4636},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4637},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4638},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4639},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4640},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4641},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4642},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4643},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4644},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4645},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4646},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4647},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4648},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4649},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4650},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4651},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4652},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4653},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4654},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4655},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4656},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4657},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4658},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4659},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4660},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4661},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4662},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4663},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4664},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4665},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4666},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4667},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4668},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4669},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4670},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4671},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4672},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4673},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4674},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4675},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4676},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4677},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4678},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4679},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4680},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4681},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4682}]},"iron_bars":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4683},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4684},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4685},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4686},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4687},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4688},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4689},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4690},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4691},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4692},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4693},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4694},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4695},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4696},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4697},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4698},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4699},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4700},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4701},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4702},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4703},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4704},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4705},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4706},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4707},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4708},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4709},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4710},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4711},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4712},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4713},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4714}]},"glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4715},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4716},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4717},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4718},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4719},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4720},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4721},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4722},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4723},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4724},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4725},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4726},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4727},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4728},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4729},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4730},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4731},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4732},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4733},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4734},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4735},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4736},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4737},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4738},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4739},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4740},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4741},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4742},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4743},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4744},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4745},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4746}]},"melon":{"states":[{"id":4747}]},"attached_pumpkin_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4748},{"properties":{"facing":"south"},"id":4749},{"properties":{"facing":"west"},"id":4750},{"properties":{"facing":"east"},"id":4751}]},"attached_melon_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4752},{"properties":{"facing":"south"},"id":4753},{"properties":{"facing":"west"},"id":4754},{"properties":{"facing":"east"},"id":4755}]},"pumpkin_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4756},{"properties":{"age":"1"},"id":4757},{"properties":{"age":"2"},"id":4758},{"properties":{"age":"3"},"id":4759},{"properties":{"age":"4"},"id":4760},{"properties":{"age":"5"},"id":4761},{"properties":{"age":"6"},"id":4762},{"properties":{"age":"7"},"id":4763}]},"melon_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4764},{"properties":{"age":"1"},"id":4765},{"properties":{"age":"2"},"id":4766},{"properties":{"age":"3"},"id":4767},{"properties":{"age":"4"},"id":4768},{"properties":{"age":"5"},"id":4769},{"properties":{"age":"6"},"id":4770},{"properties":{"age":"7"},"id":4771}]},"vine":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4772},{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4773},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4774},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4775},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4776},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4777},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4778},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4779},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4780},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4781},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4782},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4783},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4784},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4785},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4786},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4787},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4788},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4789},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4790},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4791},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4792},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4793},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4794},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4795},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4796},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4797},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4798},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4799},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4800},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4801},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4802},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4803}]},"oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":4804},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":4805},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":4806},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":4807},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":4808},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":4809},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":4810},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":4811},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":4812},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":4813},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":4814},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":4815},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":4816},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":4817},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":4818},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":4819},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":4820},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":4821},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":4822},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":4823},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":4824},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":4825},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":4826},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":4827},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":4828},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":4829},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":4830},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":4831},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":4832},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":4833},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":4834},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":4835}]},"brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4836},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4837},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4838},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4839},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4840},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4841},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4842},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4843},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4844},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4845},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4846},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4847},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4848},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4849},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4850},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4851},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4852},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4853},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4854},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4855},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4856},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4857},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4858},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4859},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4860},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4861},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4862},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4863},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4864},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4865},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4866},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4867},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4868},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4869},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4870},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4871},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4872},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4873},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4874},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4875},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4876},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4877},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4878},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4879},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4880},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4881},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4882},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4883},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4884},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4885},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4886},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4887},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4888},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4889},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4890},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4891},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4892},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4893},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4894},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4895},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4896},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4897},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4898},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4899},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4900},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4901},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4902},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4903},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4904},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4905},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4906},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4907},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4908},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4909},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4910},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4911},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4912},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4913},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4914},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4915}]},"stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4916},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4917},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4918},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4919},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4920},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4921},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4922},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4923},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4924},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4925},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4926},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4927},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4928},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4929},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4930},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4931},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4932},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4933},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4934},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4935},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4936},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4937},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4938},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4939},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4940},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4941},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4942},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4943},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4944},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4945},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4946},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4947},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4948},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4949},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4950},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4951},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4952},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4953},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4954},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4955},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4956},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4957},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4958},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4959},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4960},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4961},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4962},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4963},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4964},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4965},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4966},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4967},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4968},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4969},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4970},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4971},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4972},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4973},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4974},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4975},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4976},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4977},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4978},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4979},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4980},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4981},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4982},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4983},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4984},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4985},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4986},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4987},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4988},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4989},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4990},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4991},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4992},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4993},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4994},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4995}]},"mycelium":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":4996},{"properties":{"snowy":"false"},"id":4997}]},"lily_pad":{"states":[{"id":4998}]},"nether_bricks":{"states":[{"id":4999}]},"nether_brick_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5000},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5001},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5002},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5003},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5004},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5005},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5006},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5007},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5008},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5009},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5010},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5011},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5012},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5013},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5014},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5015},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5016},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5017},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5018},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5019},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5020},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5021},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5022},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5023},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5024},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5025},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5026},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5027},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5028},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5029},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5030},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5031}]},"nether_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5032},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5033},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5034},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5035},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5036},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5037},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5038},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5039},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5040},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5041},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5042},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5043},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5044},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5045},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5046},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5047},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5048},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5049},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5050},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5051},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5052},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5053},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5054},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5055},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5056},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5057},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5058},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5059},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5060},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5061},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5062},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5063},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5064},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5065},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5066},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5067},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5068},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5069},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5070},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5071},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5072},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5073},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5074},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5075},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5076},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5077},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5078},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5079},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5080},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5081},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5082},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5083},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5084},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5085},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5086},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5087},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5088},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5089},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5090},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5091},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5092},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5093},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5094},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5095},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5096},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5097},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5098},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5099},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5100},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5101},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5102},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5103},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5104},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5105},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5106},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5107},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5108},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5109},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5110},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5111}]},"nether_wart":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":5112},{"properties":{"age":"1"},"id":5113},{"properties":{"age":"2"},"id":5114},{"properties":{"age":"3"},"id":5115}]},"enchanting_table":{"states":[{"id":5116}]},"brewing_stand":{"properties":{"has_bottle_0":["true","false"],"has_bottle_1":["true","false"],"has_bottle_2":["true","false"]},"states":[{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"true"},"id":5117},{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"false"},"id":5118},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"true"},"id":5119},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"false"},"id":5120},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"true"},"id":5121},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"false"},"id":5122},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"true"},"id":5123},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"false"},"id":5124}]},"cauldron":{"properties":{"level":["0","1","2","3"]},"states":[{"properties":{"level":"0"},"id":5125},{"properties":{"level":"1"},"id":5126},{"properties":{"level":"2"},"id":5127},{"properties":{"level":"3"},"id":5128}]},"end_portal":{"states":[{"id":5129}]},"end_portal_frame":{"properties":{"eye":["true","false"],"facing":["north","south","west","east"]},"states":[{"properties":{"eye":"true","facing":"north"},"id":5130},{"properties":{"eye":"true","facing":"south"},"id":5131},{"properties":{"eye":"true","facing":"west"},"id":5132},{"properties":{"eye":"true","facing":"east"},"id":5133},{"properties":{"eye":"false","facing":"north"},"id":5134},{"properties":{"eye":"false","facing":"south"},"id":5135},{"properties":{"eye":"false","facing":"west"},"id":5136},{"properties":{"eye":"false","facing":"east"},"id":5137}]},"end_stone":{"states":[{"id":5138}]},"dragon_egg":{"states":[{"id":5139}]},"redstone_lamp":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":5140},{"properties":{"lit":"false"},"id":5141}]},"cocoa":{"properties":{"age":["0","1","2"],"facing":["north","south","west","east"]},"states":[{"properties":{"age":"0","facing":"north"},"id":5142},{"properties":{"age":"0","facing":"south"},"id":5143},{"properties":{"age":"0","facing":"west"},"id":5144},{"properties":{"age":"0","facing":"east"},"id":5145},{"properties":{"age":"1","facing":"north"},"id":5146},{"properties":{"age":"1","facing":"south"},"id":5147},{"properties":{"age":"1","facing":"west"},"id":5148},{"properties":{"age":"1","facing":"east"},"id":5149},{"properties":{"age":"2","facing":"north"},"id":5150},{"properties":{"age":"2","facing":"south"},"id":5151},{"properties":{"age":"2","facing":"west"},"id":5152},{"properties":{"age":"2","facing":"east"},"id":5153}]},"sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5154},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5155},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5156},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5157},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5158},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5159},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5160},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5161},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5162},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5163},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5164},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5165},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5166},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5167},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5168},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5169},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5170},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5171},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5172},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5173},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5174},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5175},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5176},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5177},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5178},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5179},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5180},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5181},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5182},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5183},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5184},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5185},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5186},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5187},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5188},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5189},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5190},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5191},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5192},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5193},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5194},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5195},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5196},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5197},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5198},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5199},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5200},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5201},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5202},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5203},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5204},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5205},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5206},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5207},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5208},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5209},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5210},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5211},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5212},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5213},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5214},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5215},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5216},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5217},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5218},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5219},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5220},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5221},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5222},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5223},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5224},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5225},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5226},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5227},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5228},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5229},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5230},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5231},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5232},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5233}]},"emerald_ore":{"states":[{"id":5234}]},"ender_chest":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":5235},{"properties":{"facing":"north","waterlogged":"false"},"id":5236},{"properties":{"facing":"south","waterlogged":"true"},"id":5237},{"properties":{"facing":"south","waterlogged":"false"},"id":5238},{"properties":{"facing":"west","waterlogged":"true"},"id":5239},{"properties":{"facing":"west","waterlogged":"false"},"id":5240},{"properties":{"facing":"east","waterlogged":"true"},"id":5241},{"properties":{"facing":"east","waterlogged":"false"},"id":5242}]},"tripwire_hook":{"properties":{"attached":["true","false"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"attached":"true","facing":"north","powered":"true"},"id":5243},{"properties":{"attached":"true","facing":"north","powered":"false"},"id":5244},{"properties":{"attached":"true","facing":"south","powered":"true"},"id":5245},{"properties":{"attached":"true","facing":"south","powered":"false"},"id":5246},{"properties":{"attached":"true","facing":"west","powered":"true"},"id":5247},{"properties":{"attached":"true","facing":"west","powered":"false"},"id":5248},{"properties":{"attached":"true","facing":"east","powered":"true"},"id":5249},{"properties":{"attached":"true","facing":"east","powered":"false"},"id":5250},{"properties":{"attached":"false","facing":"north","powered":"true"},"id":5251},{"properties":{"attached":"false","facing":"north","powered":"false"},"id":5252},{"properties":{"attached":"false","facing":"south","powered":"true"},"id":5253},{"properties":{"attached":"false","facing":"south","powered":"false"},"id":5254},{"properties":{"attached":"false","facing":"west","powered":"true"},"id":5255},{"properties":{"attached":"false","facing":"west","powered":"false"},"id":5256},{"properties":{"attached":"false","facing":"east","powered":"true"},"id":5257},{"properties":{"attached":"false","facing":"east","powered":"false"},"id":5258}]},"tripwire":{"properties":{"attached":["true","false"],"disarmed":["true","false"],"east":["true","false"],"north":["true","false"],"powered":["true","false"],"south":["true","false"],"west":["true","false"]},"states":[{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5259},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5260},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5261},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5262},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5263},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5264},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5265},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5266},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5267},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5268},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5269},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5270},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5271},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5272},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5273},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5274},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5275},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5276},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5277},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5278},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5279},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5280},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5281},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5282},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5283},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5284},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5285},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5286},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5287},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5288},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5289},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5290},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5291},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5292},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5293},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5294},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5295},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5296},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5297},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5298},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5299},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5300},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5301},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5302},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5303},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5304},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5305},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5306},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5307},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5308},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5309},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5310},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5311},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5312},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5313},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5314},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5315},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5316},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5317},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5318},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5319},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5320},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5321},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5322},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5323},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5324},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5325},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5326},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5327},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5328},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5329},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5330},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5331},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5332},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5333},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5334},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5335},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5336},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5337},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5338},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5339},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5340},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5341},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5342},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5343},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5344},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5345},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5346},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5347},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5348},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5349},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5350},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5351},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5352},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5353},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5354},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5355},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5356},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5357},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5358},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5359},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5360},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5361},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5362},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5363},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5364},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5365},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5366},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5367},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5368},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5369},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5370},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5371},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5372},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5373},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5374},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5375},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5376},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5377},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5378},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5379},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5380},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5381},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5382},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5383},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5384},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5385},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5386}]},"emerald_block":{"states":[{"id":5387}]},"spruce_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5388},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5389},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5390},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5391},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5392},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5393},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5394},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5395},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5396},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5397},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5398},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5399},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5400},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5401},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5402},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5403},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5404},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5405},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5406},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5407},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5408},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5409},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5410},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5411},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5412},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5413},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5414},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5415},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5416},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5417},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5418},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5419},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5420},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5421},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5422},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5423},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5424},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5425},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5426},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5427},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5428},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5429},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5430},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5431},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5432},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5433},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5434},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5435},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5436},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5437},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5438},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5439},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5440},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5441},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5442},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5443},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5444},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5445},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5446},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5447},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5448},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5449},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5450},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5451},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5452},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5453},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5454},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5455},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5456},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5457},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5458},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5459},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5460},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5461},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5462},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5463},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5464},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5465},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5466},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5467}]},"birch_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5468},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5469},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5470},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5471},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5472},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5473},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5474},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5475},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5476},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5477},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5478},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5479},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5480},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5481},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5482},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5483},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5484},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5485},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5486},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5487},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5488},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5489},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5490},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5491},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5492},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5493},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5494},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5495},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5496},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5497},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5498},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5499},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5500},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5501},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5502},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5503},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5504},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5505},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5506},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5507},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5508},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5509},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5510},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5511},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5512},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5513},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5514},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5515},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5516},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5517},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5518},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5519},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5520},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5521},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5522},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5523},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5524},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5525},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5526},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5527},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5528},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5529},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5530},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5531},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5532},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5533},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5534},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5535},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5536},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5537},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5538},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5539},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5540},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5541},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5542},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5543},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5544},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5545},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5546},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5547}]},"jungle_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5548},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5549},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5550},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5551},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5552},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5553},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5554},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5555},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5556},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5557},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5558},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5559},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5560},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5561},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5562},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5563},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5564},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5565},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5566},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5567},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5568},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5569},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5570},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5571},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5572},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5573},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5574},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5575},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5576},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5577},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5578},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5579},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5580},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5581},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5582},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5583},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5584},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5585},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5586},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5587},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5588},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5589},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5590},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5591},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5592},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5593},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5594},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5595},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5596},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5597},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5598},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5599},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5600},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5601},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5602},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5603},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5604},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5605},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5606},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5607},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5608},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5609},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5610},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5611},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5612},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5613},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5614},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5615},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5616},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5617},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5618},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5619},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5620},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5621},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5622},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5623},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5624},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5625},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5626},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5627}]},"command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":5628},{"properties":{"conditional":"true","facing":"east"},"id":5629},{"properties":{"conditional":"true","facing":"south"},"id":5630},{"properties":{"conditional":"true","facing":"west"},"id":5631},{"properties":{"conditional":"true","facing":"up"},"id":5632},{"properties":{"conditional":"true","facing":"down"},"id":5633},{"properties":{"conditional":"false","facing":"north"},"id":5634},{"properties":{"conditional":"false","facing":"east"},"id":5635},{"properties":{"conditional":"false","facing":"south"},"id":5636},{"properties":{"conditional":"false","facing":"west"},"id":5637},{"properties":{"conditional":"false","facing":"up"},"id":5638},{"properties":{"conditional":"false","facing":"down"},"id":5639}]},"beacon":{"states":[{"id":5640}]},"cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5641},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5642},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5643},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5644},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5645},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5646},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5647},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5648},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5649},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5650},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5651},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5652},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5653},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5654},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5655},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5656},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5657},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5658},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5659},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5660},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5661},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5662},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5663},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5664},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5665},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5666},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5667},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5668},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5669},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5670},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5671},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5672},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5673},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5674},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5675},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5676},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5677},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5678},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5679},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5680},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5681},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5682},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5683},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5684},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5685},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5686},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5687},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5688},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5689},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5690},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5691},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5692},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5693},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5694},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5695},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5696},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5697},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5698},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5699},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5700},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5701},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5702},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5703},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5704}]},"mossy_cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5705},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5706},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5707},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5708},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5709},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5710},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5711},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5712},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5713},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5714},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5715},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5716},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5717},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5718},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5719},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5720},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5721},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5722},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5723},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5724},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5725},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5726},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5727},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5728},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5729},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5730},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5731},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5732},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5733},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5734},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5735},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5736},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5737},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5738},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5739},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5740},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5741},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5742},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5743},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5744},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5745},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5746},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5747},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5748},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5749},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5750},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5751},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5752},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5753},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5754},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5755},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5756},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5757},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5758},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5759},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5760},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5761},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5762},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5763},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5764},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5765},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5766},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5767},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5768}]},"flower_pot":{"states":[{"id":5769}]},"potted_oak_sapling":{"states":[{"id":5770}]},"potted_spruce_sapling":{"states":[{"id":5771}]},"potted_birch_sapling":{"states":[{"id":5772}]},"potted_jungle_sapling":{"states":[{"id":5773}]},"potted_acacia_sapling":{"states":[{"id":5774}]},"potted_dark_oak_sapling":{"states":[{"id":5775}]},"potted_fern":{"states":[{"id":5776}]},"potted_dandelion":{"states":[{"id":5777}]},"potted_poppy":{"states":[{"id":5778}]},"potted_blue_orchid":{"states":[{"id":5779}]},"potted_allium":{"states":[{"id":5780}]},"potted_azure_bluet":{"states":[{"id":5781}]},"potted_red_tulip":{"states":[{"id":5782}]},"potted_orange_tulip":{"states":[{"id":5783}]},"potted_white_tulip":{"states":[{"id":5784}]},"potted_pink_tulip":{"states":[{"id":5785}]},"potted_oxeye_daisy":{"states":[{"id":5786}]},"potted_cornflower":{"states":[{"id":5787}]},"potted_lily_of_the_valley":{"states":[{"id":5788}]},"potted_wither_rose":{"states":[{"id":5789}]},"potted_red_mushroom":{"states":[{"id":5790}]},"potted_brown_mushroom":{"states":[{"id":5791}]},"potted_dead_bush":{"states":[{"id":5792}]},"potted_cactus":{"states":[{"id":5793}]},"carrots":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5794},{"properties":{"age":"1"},"id":5795},{"properties":{"age":"2"},"id":5796},{"properties":{"age":"3"},"id":5797},{"properties":{"age":"4"},"id":5798},{"properties":{"age":"5"},"id":5799},{"properties":{"age":"6"},"id":5800},{"properties":{"age":"7"},"id":5801}]},"potatoes":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5802},{"properties":{"age":"1"},"id":5803},{"properties":{"age":"2"},"id":5804},{"properties":{"age":"3"},"id":5805},{"properties":{"age":"4"},"id":5806},{"properties":{"age":"5"},"id":5807},{"properties":{"age":"6"},"id":5808},{"properties":{"age":"7"},"id":5809}]},"oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5810},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5811},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5812},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5813},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5814},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5815},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5816},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5817},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5818},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5819},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5820},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5821},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5822},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5823},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5824},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5825},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5826},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5827},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5828},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5829},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5830},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5831},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5832},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5833}]},"spruce_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5834},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5835},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5836},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5837},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5838},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5839},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5840},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5841},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5842},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5843},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5844},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5845},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5846},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5847},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5848},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5849},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5850},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5851},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5852},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5853},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5854},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5855},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5856},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5857}]},"birch_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5858},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5859},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5860},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5861},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5862},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5863},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5864},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5865},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5866},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5867},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5868},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5869},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5870},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5871},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5872},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5873},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5874},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5875},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5876},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5877},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5878},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5879},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5880},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5881}]},"jungle_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5882},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5883},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5884},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5885},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5886},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5887},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5888},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5889},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5890},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5891},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5892},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5893},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5894},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5895},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5896},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5897},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5898},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5899},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5900},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5901},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5902},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5903},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5904},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5905}]},"acacia_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5906},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5907},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5908},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5909},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5910},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5911},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5912},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5913},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5914},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5915},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5916},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5917},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5918},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5919},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5920},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5921},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5922},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5923},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5924},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5925},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5926},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5927},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5928},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5929}]},"dark_oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5930},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5931},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5932},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5933},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5934},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5935},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5936},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5937},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5938},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5939},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5940},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5941},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5942},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5943},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5944},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5945},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5946},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5947},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5948},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5949},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5950},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5951},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5952},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5953}]},"skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5954},{"properties":{"rotation":"1"},"id":5955},{"properties":{"rotation":"2"},"id":5956},{"properties":{"rotation":"3"},"id":5957},{"properties":{"rotation":"4"},"id":5958},{"properties":{"rotation":"5"},"id":5959},{"properties":{"rotation":"6"},"id":5960},{"properties":{"rotation":"7"},"id":5961},{"properties":{"rotation":"8"},"id":5962},{"properties":{"rotation":"9"},"id":5963},{"properties":{"rotation":"10"},"id":5964},{"properties":{"rotation":"11"},"id":5965},{"properties":{"rotation":"12"},"id":5966},{"properties":{"rotation":"13"},"id":5967},{"properties":{"rotation":"14"},"id":5968},{"properties":{"rotation":"15"},"id":5969}]},"skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5970},{"properties":{"facing":"south"},"id":5971},{"properties":{"facing":"west"},"id":5972},{"properties":{"facing":"east"},"id":5973}]},"wither_skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5974},{"properties":{"rotation":"1"},"id":5975},{"properties":{"rotation":"2"},"id":5976},{"properties":{"rotation":"3"},"id":5977},{"properties":{"rotation":"4"},"id":5978},{"properties":{"rotation":"5"},"id":5979},{"properties":{"rotation":"6"},"id":5980},{"properties":{"rotation":"7"},"id":5981},{"properties":{"rotation":"8"},"id":5982},{"properties":{"rotation":"9"},"id":5983},{"properties":{"rotation":"10"},"id":5984},{"properties":{"rotation":"11"},"id":5985},{"properties":{"rotation":"12"},"id":5986},{"properties":{"rotation":"13"},"id":5987},{"properties":{"rotation":"14"},"id":5988},{"properties":{"rotation":"15"},"id":5989}]},"wither_skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5990},{"properties":{"facing":"south"},"id":5991},{"properties":{"facing":"west"},"id":5992},{"properties":{"facing":"east"},"id":5993}]},"zombie_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5994},{"properties":{"rotation":"1"},"id":5995},{"properties":{"rotation":"2"},"id":5996},{"properties":{"rotation":"3"},"id":5997},{"properties":{"rotation":"4"},"id":5998},{"properties":{"rotation":"5"},"id":5999},{"properties":{"rotation":"6"},"id":6000},{"properties":{"rotation":"7"},"id":6001},{"properties":{"rotation":"8"},"id":6002},{"properties":{"rotation":"9"},"id":6003},{"properties":{"rotation":"10"},"id":6004},{"properties":{"rotation":"11"},"id":6005},{"properties":{"rotation":"12"},"id":6006},{"properties":{"rotation":"13"},"id":6007},{"properties":{"rotation":"14"},"id":6008},{"properties":{"rotation":"15"},"id":6009}]},"zombie_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6010},{"properties":{"facing":"south"},"id":6011},{"properties":{"facing":"west"},"id":6012},{"properties":{"facing":"east"},"id":6013}]},"player_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6014},{"properties":{"rotation":"1"},"id":6015},{"properties":{"rotation":"2"},"id":6016},{"properties":{"rotation":"3"},"id":6017},{"properties":{"rotation":"4"},"id":6018},{"properties":{"rotation":"5"},"id":6019},{"properties":{"rotation":"6"},"id":6020},{"properties":{"rotation":"7"},"id":6021},{"properties":{"rotation":"8"},"id":6022},{"properties":{"rotation":"9"},"id":6023},{"properties":{"rotation":"10"},"id":6024},{"properties":{"rotation":"11"},"id":6025},{"properties":{"rotation":"12"},"id":6026},{"properties":{"rotation":"13"},"id":6027},{"properties":{"rotation":"14"},"id":6028},{"properties":{"rotation":"15"},"id":6029}]},"player_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6030},{"properties":{"facing":"south"},"id":6031},{"properties":{"facing":"west"},"id":6032},{"properties":{"facing":"east"},"id":6033}]},"creeper_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6034},{"properties":{"rotation":"1"},"id":6035},{"properties":{"rotation":"2"},"id":6036},{"properties":{"rotation":"3"},"id":6037},{"properties":{"rotation":"4"},"id":6038},{"properties":{"rotation":"5"},"id":6039},{"properties":{"rotation":"6"},"id":6040},{"properties":{"rotation":"7"},"id":6041},{"properties":{"rotation":"8"},"id":6042},{"properties":{"rotation":"9"},"id":6043},{"properties":{"rotation":"10"},"id":6044},{"properties":{"rotation":"11"},"id":6045},{"properties":{"rotation":"12"},"id":6046},{"properties":{"rotation":"13"},"id":6047},{"properties":{"rotation":"14"},"id":6048},{"properties":{"rotation":"15"},"id":6049}]},"creeper_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6050},{"properties":{"facing":"south"},"id":6051},{"properties":{"facing":"west"},"id":6052},{"properties":{"facing":"east"},"id":6053}]},"dragon_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6054},{"properties":{"rotation":"1"},"id":6055},{"properties":{"rotation":"2"},"id":6056},{"properties":{"rotation":"3"},"id":6057},{"properties":{"rotation":"4"},"id":6058},{"properties":{"rotation":"5"},"id":6059},{"properties":{"rotation":"6"},"id":6060},{"properties":{"rotation":"7"},"id":6061},{"properties":{"rotation":"8"},"id":6062},{"properties":{"rotation":"9"},"id":6063},{"properties":{"rotation":"10"},"id":6064},{"properties":{"rotation":"11"},"id":6065},{"properties":{"rotation":"12"},"id":6066},{"properties":{"rotation":"13"},"id":6067},{"properties":{"rotation":"14"},"id":6068},{"properties":{"rotation":"15"},"id":6069}]},"dragon_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6070},{"properties":{"facing":"south"},"id":6071},{"properties":{"facing":"west"},"id":6072},{"properties":{"facing":"east"},"id":6073}]},"anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6074},{"properties":{"facing":"south"},"id":6075},{"properties":{"facing":"west"},"id":6076},{"properties":{"facing":"east"},"id":6077}]},"chipped_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6078},{"properties":{"facing":"south"},"id":6079},{"properties":{"facing":"west"},"id":6080},{"properties":{"facing":"east"},"id":6081}]},"damaged_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6082},{"properties":{"facing":"south"},"id":6083},{"properties":{"facing":"west"},"id":6084},{"properties":{"facing":"east"},"id":6085}]},"trapped_chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":6086},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":6087},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":6088},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":6089},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":6090},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":6091},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":6092},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":6093},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":6094},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":6095},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":6096},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":6097},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":6098},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":6099},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":6100},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":6101},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":6102},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":6103},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":6104},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":6105},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":6106},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":6107},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":6108},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":6109}]},"light_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":6110},{"properties":{"power":"1"},"id":6111},{"properties":{"power":"2"},"id":6112},{"properties":{"power":"3"},"id":6113},{"properties":{"power":"4"},"id":6114},{"properties":{"power":"5"},"id":6115},{"properties":{"power":"6"},"id":6116},{"properties":{"power":"7"},"id":6117},{"properties":{"power":"8"},"id":6118},{"properties":{"power":"9"},"id":6119},{"properties":{"power":"10"},"id":6120},{"properties":{"power":"11"},"id":6121},{"properties":{"power":"12"},"id":6122},{"properties":{"power":"13"},"id":6123},{"properties":{"power":"14"},"id":6124},{"properties":{"power":"15"},"id":6125}]},"heavy_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":6126},{"properties":{"power":"1"},"id":6127},{"properties":{"power":"2"},"id":6128},{"properties":{"power":"3"},"id":6129},{"properties":{"power":"4"},"id":6130},{"properties":{"power":"5"},"id":6131},{"properties":{"power":"6"},"id":6132},{"properties":{"power":"7"},"id":6133},{"properties":{"power":"8"},"id":6134},{"properties":{"power":"9"},"id":6135},{"properties":{"power":"10"},"id":6136},{"properties":{"power":"11"},"id":6137},{"properties":{"power":"12"},"id":6138},{"properties":{"power":"13"},"id":6139},{"properties":{"power":"14"},"id":6140},{"properties":{"power":"15"},"id":6141}]},"comparator":{"properties":{"facing":["north","south","west","east"],"mode":["compare","subtract"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","mode":"compare","powered":"true"},"id":6142},{"properties":{"facing":"north","mode":"compare","powered":"false"},"id":6143},{"properties":{"facing":"north","mode":"subtract","powered":"true"},"id":6144},{"properties":{"facing":"north","mode":"subtract","powered":"false"},"id":6145},{"properties":{"facing":"south","mode":"compare","powered":"true"},"id":6146},{"properties":{"facing":"south","mode":"compare","powered":"false"},"id":6147},{"properties":{"facing":"south","mode":"subtract","powered":"true"},"id":6148},{"properties":{"facing":"south","mode":"subtract","powered":"false"},"id":6149},{"properties":{"facing":"west","mode":"compare","powered":"true"},"id":6150},{"properties":{"facing":"west","mode":"compare","powered":"false"},"id":6151},{"properties":{"facing":"west","mode":"subtract","powered":"true"},"id":6152},{"properties":{"facing":"west","mode":"subtract","powered":"false"},"id":6153},{"properties":{"facing":"east","mode":"compare","powered":"true"},"id":6154},{"properties":{"facing":"east","mode":"compare","powered":"false"},"id":6155},{"properties":{"facing":"east","mode":"subtract","powered":"true"},"id":6156},{"properties":{"facing":"east","mode":"subtract","powered":"false"},"id":6157}]},"daylight_detector":{"properties":{"inverted":["true","false"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"inverted":"true","power":"0"},"id":6158},{"properties":{"inverted":"true","power":"1"},"id":6159},{"properties":{"inverted":"true","power":"2"},"id":6160},{"properties":{"inverted":"true","power":"3"},"id":6161},{"properties":{"inverted":"true","power":"4"},"id":6162},{"properties":{"inverted":"true","power":"5"},"id":6163},{"properties":{"inverted":"true","power":"6"},"id":6164},{"properties":{"inverted":"true","power":"7"},"id":6165},{"properties":{"inverted":"true","power":"8"},"id":6166},{"properties":{"inverted":"true","power":"9"},"id":6167},{"properties":{"inverted":"true","power":"10"},"id":6168},{"properties":{"inverted":"true","power":"11"},"id":6169},{"properties":{"inverted":"true","power":"12"},"id":6170},{"properties":{"inverted":"true","power":"13"},"id":6171},{"properties":{"inverted":"true","power":"14"},"id":6172},{"properties":{"inverted":"true","power":"15"},"id":6173},{"properties":{"inverted":"false","power":"0"},"id":6174},{"properties":{"inverted":"false","power":"1"},"id":6175},{"properties":{"inverted":"false","power":"2"},"id":6176},{"properties":{"inverted":"false","power":"3"},"id":6177},{"properties":{"inverted":"false","power":"4"},"id":6178},{"properties":{"inverted":"false","power":"5"},"id":6179},{"properties":{"inverted":"false","power":"6"},"id":6180},{"properties":{"inverted":"false","power":"7"},"id":6181},{"properties":{"inverted":"false","power":"8"},"id":6182},{"properties":{"inverted":"false","power":"9"},"id":6183},{"properties":{"inverted":"false","power":"10"},"id":6184},{"properties":{"inverted":"false","power":"11"},"id":6185},{"properties":{"inverted":"false","power":"12"},"id":6186},{"properties":{"inverted":"false","power":"13"},"id":6187},{"properties":{"inverted":"false","power":"14"},"id":6188},{"properties":{"inverted":"false","power":"15"},"id":6189}]},"redstone_block":{"states":[{"id":6190}]},"nether_quartz_ore":{"states":[{"id":6191}]},"hopper":{"properties":{"enabled":["true","false"],"facing":["down","north","south","west","east"]},"states":[{"properties":{"enabled":"true","facing":"down"},"id":6192},{"properties":{"enabled":"true","facing":"north"},"id":6193},{"properties":{"enabled":"true","facing":"south"},"id":6194},{"properties":{"enabled":"true","facing":"west"},"id":6195},{"properties":{"enabled":"true","facing":"east"},"id":6196},{"properties":{"enabled":"false","facing":"down"},"id":6197},{"properties":{"enabled":"false","facing":"north"},"id":6198},{"properties":{"enabled":"false","facing":"south"},"id":6199},{"properties":{"enabled":"false","facing":"west"},"id":6200},{"properties":{"enabled":"false","facing":"east"},"id":6201}]},"quartz_block":{"states":[{"id":6202}]},"chiseled_quartz_block":{"states":[{"id":6203}]},"quartz_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":6204},{"properties":{"axis":"y"},"id":6205},{"properties":{"axis":"z"},"id":6206}]},"quartz_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6207},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6208},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6209},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6210},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6211},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6212},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6213},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6214},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6215},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6216},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6217},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6218},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6219},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6220},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6221},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6222},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6223},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6224},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6225},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6226},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6227},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6228},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6229},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6230},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6231},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6232},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6233},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6234},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6235},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6236},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6237},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6238},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6239},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6240},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6241},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6242},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6243},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6244},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6245},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6246},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6247},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6248},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6249},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6250},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6251},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6252},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6253},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6254},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6255},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6256},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6257},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6258},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6259},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6260},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6261},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6262},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6263},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6264},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6265},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6266},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6267},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6268},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6269},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6270},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6271},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6272},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6273},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6274},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6275},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6276},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6277},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6278},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6279},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6280},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6281},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6282},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6283},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6284},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6285},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6286}]},"activator_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":6287},{"properties":{"powered":"true","shape":"east_west"},"id":6288},{"properties":{"powered":"true","shape":"ascending_east"},"id":6289},{"properties":{"powered":"true","shape":"ascending_west"},"id":6290},{"properties":{"powered":"true","shape":"ascending_north"},"id":6291},{"properties":{"powered":"true","shape":"ascending_south"},"id":6292},{"properties":{"powered":"false","shape":"north_south"},"id":6293},{"properties":{"powered":"false","shape":"east_west"},"id":6294},{"properties":{"powered":"false","shape":"ascending_east"},"id":6295},{"properties":{"powered":"false","shape":"ascending_west"},"id":6296},{"properties":{"powered":"false","shape":"ascending_north"},"id":6297},{"properties":{"powered":"false","shape":"ascending_south"},"id":6298}]},"dropper":{"properties":{"facing":["north","east","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":6299},{"properties":{"facing":"north","triggered":"false"},"id":6300},{"properties":{"facing":"east","triggered":"true"},"id":6301},{"properties":{"facing":"east","triggered":"false"},"id":6302},{"properties":{"facing":"south","triggered":"true"},"id":6303},{"properties":{"facing":"south","triggered":"false"},"id":6304},{"properties":{"facing":"west","triggered":"true"},"id":6305},{"properties":{"facing":"west","triggered":"false"},"id":6306},{"properties":{"facing":"up","triggered":"true"},"id":6307},{"properties":{"facing":"up","triggered":"false"},"id":6308},{"properties":{"facing":"down","triggered":"true"},"id":6309},{"properties":{"facing":"down","triggered":"false"},"id":6310}]},"white_terracotta":{"states":[{"id":6311}]},"orange_terracotta":{"states":[{"id":6312}]},"magenta_terracotta":{"states":[{"id":6313}]},"light_blue_terracotta":{"states":[{"id":6314}]},"yellow_terracotta":{"states":[{"id":6315}]},"lime_terracotta":{"states":[{"id":6316}]},"pink_terracotta":{"states":[{"id":6317}]},"gray_terracotta":{"states":[{"id":6318}]},"light_gray_terracotta":{"states":[{"id":6319}]},"cyan_terracotta":{"states":[{"id":6320}]},"purple_terracotta":{"states":[{"id":6321}]},"blue_terracotta":{"states":[{"id":6322}]},"brown_terracotta":{"states":[{"id":6323}]},"green_terracotta":{"states":[{"id":6324}]},"red_terracotta":{"states":[{"id":6325}]},"black_terracotta":{"states":[{"id":6326}]},"white_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6327},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6328},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6329},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6330},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6331},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6332},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6333},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6334},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6335},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6336},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6337},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6338},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6339},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6340},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6341},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6342},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6343},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6344},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6345},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6346},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6347},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6348},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6349},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6350},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6351},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6352},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6353},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6354},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6355},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6356},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6357},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6358}]},"orange_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6359},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6360},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6361},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6362},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6363},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6364},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6365},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6366},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6367},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6368},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6369},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6370},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6371},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6372},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6373},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6374},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6375},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6376},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6377},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6378},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6379},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6380},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6381},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6382},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6383},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6384},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6385},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6386},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6387},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6388},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6389},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6390}]},"magenta_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6391},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6392},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6393},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6394},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6395},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6396},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6397},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6398},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6399},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6400},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6401},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6402},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6403},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6404},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6405},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6406},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6407},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6408},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6409},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6410},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6411},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6412},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6413},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6414},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6415},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6416},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6417},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6418},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6419},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6420},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6421},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6422}]},"light_blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6423},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6424},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6425},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6426},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6427},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6428},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6429},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6430},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6431},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6432},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6433},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6434},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6435},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6436},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6437},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6438},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6439},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6440},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6441},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6442},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6443},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6444},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6445},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6446},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6447},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6448},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6449},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6450},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6451},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6452},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6453},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6454}]},"yellow_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6455},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6456},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6457},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6458},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6459},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6460},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6461},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6462},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6463},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6464},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6465},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6466},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6467},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6468},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6469},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6470},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6471},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6472},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6473},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6474},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6475},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6476},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6477},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6478},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6479},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6480},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6481},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6482},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6483},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6484},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6485},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6486}]},"lime_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6487},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6488},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6489},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6490},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6491},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6492},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6493},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6494},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6495},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6496},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6497},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6498},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6499},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6500},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6501},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6502},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6503},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6504},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6505},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6506},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6507},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6508},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6509},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6510},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6511},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6512},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6513},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6514},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6515},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6516},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6517},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6518}]},"pink_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6519},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6520},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6521},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6522},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6523},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6524},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6525},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6526},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6527},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6528},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6529},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6530},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6531},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6532},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6533},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6534},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6535},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6536},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6537},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6538},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6539},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6540},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6541},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6542},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6543},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6544},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6545},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6546},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6547},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6548},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6549},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6550}]},"gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6551},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6552},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6553},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6554},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6555},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6556},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6557},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6558},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6559},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6560},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6561},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6562},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6563},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6564},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6565},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6566},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6567},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6568},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6569},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6570},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6571},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6572},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6573},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6574},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6575},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6576},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6577},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6578},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6579},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6580},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6581},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6582}]},"light_gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6583},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6584},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6585},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6586},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6587},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6588},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6589},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6590},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6591},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6592},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6593},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6594},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6595},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6596},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6597},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6598},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6599},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6600},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6601},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6602},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6603},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6604},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6605},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6606},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6607},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6608},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6609},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6610},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6611},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6612},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6613},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6614}]},"cyan_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6615},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6616},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6617},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6618},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6619},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6620},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6621},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6622},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6623},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6624},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6625},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6626},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6627},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6628},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6629},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6630},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6631},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6632},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6633},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6634},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6635},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6636},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6637},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6638},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6639},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6640},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6641},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6642},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6643},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6644},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6645},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6646}]},"purple_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6647},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6648},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6649},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6650},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6651},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6652},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6653},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6654},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6655},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6656},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6657},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6658},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6659},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6660},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6661},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6662},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6663},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6664},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6665},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6666},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6667},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6668},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6669},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6670},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6671},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6672},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6673},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6674},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6675},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6676},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6677},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6678}]},"blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6679},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6680},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6681},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6682},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6683},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6684},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6685},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6686},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6687},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6688},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6689},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6690},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6691},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6692},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6693},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6694},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6695},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6696},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6697},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6698},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6699},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6700},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6701},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6702},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6703},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6704},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6705},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6706},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6707},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6708},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6709},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6710}]},"brown_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6711},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6712},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6713},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6714},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6715},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6716},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6717},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6718},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6719},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6720},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6721},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6722},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6723},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6724},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6725},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6726},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6727},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6728},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6729},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6730},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6731},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6732},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6733},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6734},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6735},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6736},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6737},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6738},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6739},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6740},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6741},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6742}]},"green_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6743},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6744},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6745},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6746},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6747},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6748},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6749},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6750},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6751},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6752},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6753},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6754},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6755},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6756},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6757},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6758},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6759},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6760},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6761},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6762},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6763},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6764},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6765},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6766},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6767},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6768},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6769},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6770},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6771},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6772},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6773},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6774}]},"red_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6775},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6776},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6777},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6778},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6779},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6780},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6781},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6782},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6783},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6784},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6785},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6786},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6787},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6788},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6789},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6790},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6791},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6792},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6793},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6794},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6795},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6796},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6797},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6798},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6799},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6800},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6801},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6802},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6803},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6804},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6805},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6806}]},"black_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6807},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6808},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6809},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6810},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6811},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6812},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6813},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6814},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6815},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6816},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6817},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6818},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6819},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6820},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6821},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6822},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6823},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6824},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6825},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6826},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6827},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6828},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6829},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6830},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6831},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6832},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6833},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6834},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6835},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6836},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6837},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6838}]},"acacia_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6839},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6840},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6841},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6842},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6843},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6844},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6845},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6846},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6847},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6848},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6849},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6850},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6851},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6852},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6853},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6854},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6855},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6856},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6857},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6858},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6859},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6860},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6861},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6862},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6863},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6864},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6865},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6866},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6867},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6868},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6869},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6870},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6871},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6872},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6873},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6874},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6875},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6876},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6877},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6878},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6879},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6880},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6881},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6882},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6883},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6884},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6885},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6886},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6887},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6888},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6889},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6890},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6891},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6892},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6893},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6894},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6895},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6896},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6897},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6898},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6899},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6900},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6901},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6902},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6903},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6904},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6905},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6906},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6907},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6908},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6909},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6910},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6911},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6912},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6913},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6914},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6915},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6916},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6917},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6918}]},"dark_oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6919},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6920},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6921},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6922},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6923},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6924},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6925},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6926},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6927},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6928},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6929},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6930},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6931},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6932},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6933},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6934},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6935},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6936},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6937},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6938},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6939},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6940},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6941},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6942},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6943},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6944},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6945},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6946},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6947},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6948},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6949},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6950},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6951},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6952},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6953},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6954},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6955},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6956},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6957},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6958},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6959},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6960},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6961},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6962},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6963},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6964},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6965},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6966},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6967},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6968},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6969},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6970},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6971},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6972},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6973},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6974},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6975},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6976},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6977},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6978},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6979},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6980},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6981},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6982},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6983},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6984},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6985},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6986},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6987},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6988},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6989},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6990},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6991},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6992},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6993},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6994},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6995},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6996},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6997},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6998}]},"slime_block":{"states":[{"id":6999}]},"barrier":{"states":[{"id":7000}]},"iron_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7001},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7002},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7003},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7004},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7005},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7006},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7007},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7008},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7009},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7010},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7011},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7012},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7013},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7014},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7015},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7016},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7017},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7018},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7019},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7020},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7021},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7022},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7023},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7024},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7025},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7026},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7027},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7028},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7029},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7030},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7031},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7032},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7033},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7034},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7035},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7036},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7037},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7038},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7039},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7040},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7041},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7042},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7043},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7044},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7045},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7046},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7047},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7048},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7049},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7050},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7051},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7052},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7053},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7054},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7055},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7056},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7057},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7058},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7059},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7060},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7061},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7062},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7063},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7064}]},"prismarine":{"states":[{"id":7065}]},"prismarine_bricks":{"states":[{"id":7066}]},"dark_prismarine":{"states":[{"id":7067}]},"prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7068},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7069},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7070},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7071},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7072},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7073},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7074},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7075},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7076},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7077},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7078},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7079},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7080},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7081},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7082},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7083},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7084},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7085},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7086},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7087},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7088},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7089},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7090},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7091},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7092},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7093},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7094},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7095},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7096},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7097},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7098},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7099},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7100},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7101},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7102},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7103},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7104},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7105},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7106},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7107},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7108},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7109},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7110},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7111},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7112},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7113},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7114},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7115},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7116},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7117},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7118},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7119},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7120},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7121},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7122},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7123},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7124},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7125},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7126},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7127},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7128},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7129},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7130},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7131},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7132},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7133},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7134},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7135},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7136},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7137},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7138},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7139},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7140},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7141},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7142},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7143},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7144},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7145},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7146},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7147}]},"prismarine_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7148},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7149},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7150},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7151},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7152},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7153},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7154},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7155},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7156},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7157},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7158},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7159},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7160},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7161},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7162},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7163},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7164},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7165},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7166},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7167},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7168},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7169},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7170},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7171},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7172},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7173},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7174},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7175},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7176},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7177},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7178},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7179},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7180},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7181},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7182},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7183},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7184},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7185},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7186},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7187},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7188},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7189},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7190},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7191},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7192},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7193},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7194},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7195},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7196},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7197},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7198},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7199},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7200},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7201},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7202},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7203},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7204},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7205},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7206},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7207},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7208},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7209},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7210},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7211},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7212},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7213},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7214},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7215},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7216},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7217},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7218},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7219},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7220},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7221},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7222},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7223},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7224},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7225},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7226},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7227}]},"dark_prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7228},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7229},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7230},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7231},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7232},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7233},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7234},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7235},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7236},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7237},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7238},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7239},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7240},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7241},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7242},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7243},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7244},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7245},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7246},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7247},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7248},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7249},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7250},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7251},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7252},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7253},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7254},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7255},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7256},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7257},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7258},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7259},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7260},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7261},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7262},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7263},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7264},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7265},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7266},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7267},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7268},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7269},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7270},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7271},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7272},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7273},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7274},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7275},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7276},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7277},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7278},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7279},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7280},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7281},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7282},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7283},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7284},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7285},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7286},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7287},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7288},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7289},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7290},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7291},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7292},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7293},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7294},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7295},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7296},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7297},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7298},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7299},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7300},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7301},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7302},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7303},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7304},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7305},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7306},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7307}]},"prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7308},{"properties":{"type":"top","waterlogged":"false"},"id":7309},{"properties":{"type":"bottom","waterlogged":"true"},"id":7310},{"properties":{"type":"bottom","waterlogged":"false"},"id":7311},{"properties":{"type":"double","waterlogged":"true"},"id":7312},{"properties":{"type":"double","waterlogged":"false"},"id":7313}]},"prismarine_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7314},{"properties":{"type":"top","waterlogged":"false"},"id":7315},{"properties":{"type":"bottom","waterlogged":"true"},"id":7316},{"properties":{"type":"bottom","waterlogged":"false"},"id":7317},{"properties":{"type":"double","waterlogged":"true"},"id":7318},{"properties":{"type":"double","waterlogged":"false"},"id":7319}]},"dark_prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7320},{"properties":{"type":"top","waterlogged":"false"},"id":7321},{"properties":{"type":"bottom","waterlogged":"true"},"id":7322},{"properties":{"type":"bottom","waterlogged":"false"},"id":7323},{"properties":{"type":"double","waterlogged":"true"},"id":7324},{"properties":{"type":"double","waterlogged":"false"},"id":7325}]},"sea_lantern":{"states":[{"id":7326}]},"hay_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":7327},{"properties":{"axis":"y"},"id":7328},{"properties":{"axis":"z"},"id":7329}]},"white_carpet":{"states":[{"id":7330}]},"orange_carpet":{"states":[{"id":7331}]},"magenta_carpet":{"states":[{"id":7332}]},"light_blue_carpet":{"states":[{"id":7333}]},"yellow_carpet":{"states":[{"id":7334}]},"lime_carpet":{"states":[{"id":7335}]},"pink_carpet":{"states":[{"id":7336}]},"gray_carpet":{"states":[{"id":7337}]},"light_gray_carpet":{"states":[{"id":7338}]},"cyan_carpet":{"states":[{"id":7339}]},"purple_carpet":{"states":[{"id":7340}]},"blue_carpet":{"states":[{"id":7341}]},"brown_carpet":{"states":[{"id":7342}]},"green_carpet":{"states":[{"id":7343}]},"red_carpet":{"states":[{"id":7344}]},"black_carpet":{"states":[{"id":7345}]},"terracotta":{"states":[{"id":7346}]},"coal_block":{"states":[{"id":7347}]},"packed_ice":{"states":[{"id":7348}]},"sunflower":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7349},{"properties":{"half":"lower"},"id":7350}]},"lilac":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7351},{"properties":{"half":"lower"},"id":7352}]},"rose_bush":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7353},{"properties":{"half":"lower"},"id":7354}]},"peony":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7355},{"properties":{"half":"lower"},"id":7356}]},"tall_grass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7357},{"properties":{"half":"lower"},"id":7358}]},"large_fern":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7359},{"properties":{"half":"lower"},"id":7360}]},"white_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7361},{"properties":{"rotation":"1"},"id":7362},{"properties":{"rotation":"2"},"id":7363},{"properties":{"rotation":"3"},"id":7364},{"properties":{"rotation":"4"},"id":7365},{"properties":{"rotation":"5"},"id":7366},{"properties":{"rotation":"6"},"id":7367},{"properties":{"rotation":"7"},"id":7368},{"properties":{"rotation":"8"},"id":7369},{"properties":{"rotation":"9"},"id":7370},{"properties":{"rotation":"10"},"id":7371},{"properties":{"rotation":"11"},"id":7372},{"properties":{"rotation":"12"},"id":7373},{"properties":{"rotation":"13"},"id":7374},{"properties":{"rotation":"14"},"id":7375},{"properties":{"rotation":"15"},"id":7376}]},"orange_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7377},{"properties":{"rotation":"1"},"id":7378},{"properties":{"rotation":"2"},"id":7379},{"properties":{"rotation":"3"},"id":7380},{"properties":{"rotation":"4"},"id":7381},{"properties":{"rotation":"5"},"id":7382},{"properties":{"rotation":"6"},"id":7383},{"properties":{"rotation":"7"},"id":7384},{"properties":{"rotation":"8"},"id":7385},{"properties":{"rotation":"9"},"id":7386},{"properties":{"rotation":"10"},"id":7387},{"properties":{"rotation":"11"},"id":7388},{"properties":{"rotation":"12"},"id":7389},{"properties":{"rotation":"13"},"id":7390},{"properties":{"rotation":"14"},"id":7391},{"properties":{"rotation":"15"},"id":7392}]},"magenta_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7393},{"properties":{"rotation":"1"},"id":7394},{"properties":{"rotation":"2"},"id":7395},{"properties":{"rotation":"3"},"id":7396},{"properties":{"rotation":"4"},"id":7397},{"properties":{"rotation":"5"},"id":7398},{"properties":{"rotation":"6"},"id":7399},{"properties":{"rotation":"7"},"id":7400},{"properties":{"rotation":"8"},"id":7401},{"properties":{"rotation":"9"},"id":7402},{"properties":{"rotation":"10"},"id":7403},{"properties":{"rotation":"11"},"id":7404},{"properties":{"rotation":"12"},"id":7405},{"properties":{"rotation":"13"},"id":7406},{"properties":{"rotation":"14"},"id":7407},{"properties":{"rotation":"15"},"id":7408}]},"light_blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7409},{"properties":{"rotation":"1"},"id":7410},{"properties":{"rotation":"2"},"id":7411},{"properties":{"rotation":"3"},"id":7412},{"properties":{"rotation":"4"},"id":7413},{"properties":{"rotation":"5"},"id":7414},{"properties":{"rotation":"6"},"id":7415},{"properties":{"rotation":"7"},"id":7416},{"properties":{"rotation":"8"},"id":7417},{"properties":{"rotation":"9"},"id":7418},{"properties":{"rotation":"10"},"id":7419},{"properties":{"rotation":"11"},"id":7420},{"properties":{"rotation":"12"},"id":7421},{"properties":{"rotation":"13"},"id":7422},{"properties":{"rotation":"14"},"id":7423},{"properties":{"rotation":"15"},"id":7424}]},"yellow_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7425},{"properties":{"rotation":"1"},"id":7426},{"properties":{"rotation":"2"},"id":7427},{"properties":{"rotation":"3"},"id":7428},{"properties":{"rotation":"4"},"id":7429},{"properties":{"rotation":"5"},"id":7430},{"properties":{"rotation":"6"},"id":7431},{"properties":{"rotation":"7"},"id":7432},{"properties":{"rotation":"8"},"id":7433},{"properties":{"rotation":"9"},"id":7434},{"properties":{"rotation":"10"},"id":7435},{"properties":{"rotation":"11"},"id":7436},{"properties":{"rotation":"12"},"id":7437},{"properties":{"rotation":"13"},"id":7438},{"properties":{"rotation":"14"},"id":7439},{"properties":{"rotation":"15"},"id":7440}]},"lime_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7441},{"properties":{"rotation":"1"},"id":7442},{"properties":{"rotation":"2"},"id":7443},{"properties":{"rotation":"3"},"id":7444},{"properties":{"rotation":"4"},"id":7445},{"properties":{"rotation":"5"},"id":7446},{"properties":{"rotation":"6"},"id":7447},{"properties":{"rotation":"7"},"id":7448},{"properties":{"rotation":"8"},"id":7449},{"properties":{"rotation":"9"},"id":7450},{"properties":{"rotation":"10"},"id":7451},{"properties":{"rotation":"11"},"id":7452},{"properties":{"rotation":"12"},"id":7453},{"properties":{"rotation":"13"},"id":7454},{"properties":{"rotation":"14"},"id":7455},{"properties":{"rotation":"15"},"id":7456}]},"pink_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7457},{"properties":{"rotation":"1"},"id":7458},{"properties":{"rotation":"2"},"id":7459},{"properties":{"rotation":"3"},"id":7460},{"properties":{"rotation":"4"},"id":7461},{"properties":{"rotation":"5"},"id":7462},{"properties":{"rotation":"6"},"id":7463},{"properties":{"rotation":"7"},"id":7464},{"properties":{"rotation":"8"},"id":7465},{"properties":{"rotation":"9"},"id":7466},{"properties":{"rotation":"10"},"id":7467},{"properties":{"rotation":"11"},"id":7468},{"properties":{"rotation":"12"},"id":7469},{"properties":{"rotation":"13"},"id":7470},{"properties":{"rotation":"14"},"id":7471},{"properties":{"rotation":"15"},"id":7472}]},"gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7473},{"properties":{"rotation":"1"},"id":7474},{"properties":{"rotation":"2"},"id":7475},{"properties":{"rotation":"3"},"id":7476},{"properties":{"rotation":"4"},"id":7477},{"properties":{"rotation":"5"},"id":7478},{"properties":{"rotation":"6"},"id":7479},{"properties":{"rotation":"7"},"id":7480},{"properties":{"rotation":"8"},"id":7481},{"properties":{"rotation":"9"},"id":7482},{"properties":{"rotation":"10"},"id":7483},{"properties":{"rotation":"11"},"id":7484},{"properties":{"rotation":"12"},"id":7485},{"properties":{"rotation":"13"},"id":7486},{"properties":{"rotation":"14"},"id":7487},{"properties":{"rotation":"15"},"id":7488}]},"light_gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7489},{"properties":{"rotation":"1"},"id":7490},{"properties":{"rotation":"2"},"id":7491},{"properties":{"rotation":"3"},"id":7492},{"properties":{"rotation":"4"},"id":7493},{"properties":{"rotation":"5"},"id":7494},{"properties":{"rotation":"6"},"id":7495},{"properties":{"rotation":"7"},"id":7496},{"properties":{"rotation":"8"},"id":7497},{"properties":{"rotation":"9"},"id":7498},{"properties":{"rotation":"10"},"id":7499},{"properties":{"rotation":"11"},"id":7500},{"properties":{"rotation":"12"},"id":7501},{"properties":{"rotation":"13"},"id":7502},{"properties":{"rotation":"14"},"id":7503},{"properties":{"rotation":"15"},"id":7504}]},"cyan_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7505},{"properties":{"rotation":"1"},"id":7506},{"properties":{"rotation":"2"},"id":7507},{"properties":{"rotation":"3"},"id":7508},{"properties":{"rotation":"4"},"id":7509},{"properties":{"rotation":"5"},"id":7510},{"properties":{"rotation":"6"},"id":7511},{"properties":{"rotation":"7"},"id":7512},{"properties":{"rotation":"8"},"id":7513},{"properties":{"rotation":"9"},"id":7514},{"properties":{"rotation":"10"},"id":7515},{"properties":{"rotation":"11"},"id":7516},{"properties":{"rotation":"12"},"id":7517},{"properties":{"rotation":"13"},"id":7518},{"properties":{"rotation":"14"},"id":7519},{"properties":{"rotation":"15"},"id":7520}]},"purple_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7521},{"properties":{"rotation":"1"},"id":7522},{"properties":{"rotation":"2"},"id":7523},{"properties":{"rotation":"3"},"id":7524},{"properties":{"rotation":"4"},"id":7525},{"properties":{"rotation":"5"},"id":7526},{"properties":{"rotation":"6"},"id":7527},{"properties":{"rotation":"7"},"id":7528},{"properties":{"rotation":"8"},"id":7529},{"properties":{"rotation":"9"},"id":7530},{"properties":{"rotation":"10"},"id":7531},{"properties":{"rotation":"11"},"id":7532},{"properties":{"rotation":"12"},"id":7533},{"properties":{"rotation":"13"},"id":7534},{"properties":{"rotation":"14"},"id":7535},{"properties":{"rotation":"15"},"id":7536}]},"blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7537},{"properties":{"rotation":"1"},"id":7538},{"properties":{"rotation":"2"},"id":7539},{"properties":{"rotation":"3"},"id":7540},{"properties":{"rotation":"4"},"id":7541},{"properties":{"rotation":"5"},"id":7542},{"properties":{"rotation":"6"},"id":7543},{"properties":{"rotation":"7"},"id":7544},{"properties":{"rotation":"8"},"id":7545},{"properties":{"rotation":"9"},"id":7546},{"properties":{"rotation":"10"},"id":7547},{"properties":{"rotation":"11"},"id":7548},{"properties":{"rotation":"12"},"id":7549},{"properties":{"rotation":"13"},"id":7550},{"properties":{"rotation":"14"},"id":7551},{"properties":{"rotation":"15"},"id":7552}]},"brown_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7553},{"properties":{"rotation":"1"},"id":7554},{"properties":{"rotation":"2"},"id":7555},{"properties":{"rotation":"3"},"id":7556},{"properties":{"rotation":"4"},"id":7557},{"properties":{"rotation":"5"},"id":7558},{"properties":{"rotation":"6"},"id":7559},{"properties":{"rotation":"7"},"id":7560},{"properties":{"rotation":"8"},"id":7561},{"properties":{"rotation":"9"},"id":7562},{"properties":{"rotation":"10"},"id":7563},{"properties":{"rotation":"11"},"id":7564},{"properties":{"rotation":"12"},"id":7565},{"properties":{"rotation":"13"},"id":7566},{"properties":{"rotation":"14"},"id":7567},{"properties":{"rotation":"15"},"id":7568}]},"green_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7569},{"properties":{"rotation":"1"},"id":7570},{"properties":{"rotation":"2"},"id":7571},{"properties":{"rotation":"3"},"id":7572},{"properties":{"rotation":"4"},"id":7573},{"properties":{"rotation":"5"},"id":7574},{"properties":{"rotation":"6"},"id":7575},{"properties":{"rotation":"7"},"id":7576},{"properties":{"rotation":"8"},"id":7577},{"properties":{"rotation":"9"},"id":7578},{"properties":{"rotation":"10"},"id":7579},{"properties":{"rotation":"11"},"id":7580},{"properties":{"rotation":"12"},"id":7581},{"properties":{"rotation":"13"},"id":7582},{"properties":{"rotation":"14"},"id":7583},{"properties":{"rotation":"15"},"id":7584}]},"red_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7585},{"properties":{"rotation":"1"},"id":7586},{"properties":{"rotation":"2"},"id":7587},{"properties":{"rotation":"3"},"id":7588},{"properties":{"rotation":"4"},"id":7589},{"properties":{"rotation":"5"},"id":7590},{"properties":{"rotation":"6"},"id":7591},{"properties":{"rotation":"7"},"id":7592},{"properties":{"rotation":"8"},"id":7593},{"properties":{"rotation":"9"},"id":7594},{"properties":{"rotation":"10"},"id":7595},{"properties":{"rotation":"11"},"id":7596},{"properties":{"rotation":"12"},"id":7597},{"properties":{"rotation":"13"},"id":7598},{"properties":{"rotation":"14"},"id":7599},{"properties":{"rotation":"15"},"id":7600}]},"black_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7601},{"properties":{"rotation":"1"},"id":7602},{"properties":{"rotation":"2"},"id":7603},{"properties":{"rotation":"3"},"id":7604},{"properties":{"rotation":"4"},"id":7605},{"properties":{"rotation":"5"},"id":7606},{"properties":{"rotation":"6"},"id":7607},{"properties":{"rotation":"7"},"id":7608},{"properties":{"rotation":"8"},"id":7609},{"properties":{"rotation":"9"},"id":7610},{"properties":{"rotation":"10"},"id":7611},{"properties":{"rotation":"11"},"id":7612},{"properties":{"rotation":"12"},"id":7613},{"properties":{"rotation":"13"},"id":7614},{"properties":{"rotation":"14"},"id":7615},{"properties":{"rotation":"15"},"id":7616}]},"white_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7617},{"properties":{"facing":"south"},"id":7618},{"properties":{"facing":"west"},"id":7619},{"properties":{"facing":"east"},"id":7620}]},"orange_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7621},{"properties":{"facing":"south"},"id":7622},{"properties":{"facing":"west"},"id":7623},{"properties":{"facing":"east"},"id":7624}]},"magenta_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7625},{"properties":{"facing":"south"},"id":7626},{"properties":{"facing":"west"},"id":7627},{"properties":{"facing":"east"},"id":7628}]},"light_blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7629},{"properties":{"facing":"south"},"id":7630},{"properties":{"facing":"west"},"id":7631},{"properties":{"facing":"east"},"id":7632}]},"yellow_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7633},{"properties":{"facing":"south"},"id":7634},{"properties":{"facing":"west"},"id":7635},{"properties":{"facing":"east"},"id":7636}]},"lime_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7637},{"properties":{"facing":"south"},"id":7638},{"properties":{"facing":"west"},"id":7639},{"properties":{"facing":"east"},"id":7640}]},"pink_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7641},{"properties":{"facing":"south"},"id":7642},{"properties":{"facing":"west"},"id":7643},{"properties":{"facing":"east"},"id":7644}]},"gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7645},{"properties":{"facing":"south"},"id":7646},{"properties":{"facing":"west"},"id":7647},{"properties":{"facing":"east"},"id":7648}]},"light_gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7649},{"properties":{"facing":"south"},"id":7650},{"properties":{"facing":"west"},"id":7651},{"properties":{"facing":"east"},"id":7652}]},"cyan_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7653},{"properties":{"facing":"south"},"id":7654},{"properties":{"facing":"west"},"id":7655},{"properties":{"facing":"east"},"id":7656}]},"purple_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7657},{"properties":{"facing":"south"},"id":7658},{"properties":{"facing":"west"},"id":7659},{"properties":{"facing":"east"},"id":7660}]},"blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7661},{"properties":{"facing":"south"},"id":7662},{"properties":{"facing":"west"},"id":7663},{"properties":{"facing":"east"},"id":7664}]},"brown_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7665},{"properties":{"facing":"south"},"id":7666},{"properties":{"facing":"west"},"id":7667},{"properties":{"facing":"east"},"id":7668}]},"green_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7669},{"properties":{"facing":"south"},"id":7670},{"properties":{"facing":"west"},"id":7671},{"properties":{"facing":"east"},"id":7672}]},"red_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7673},{"properties":{"facing":"south"},"id":7674},{"properties":{"facing":"west"},"id":7675},{"properties":{"facing":"east"},"id":7676}]},"black_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7677},{"properties":{"facing":"south"},"id":7678},{"properties":{"facing":"west"},"id":7679},{"properties":{"facing":"east"},"id":7680}]},"red_sandstone":{"states":[{"id":7681}]},"chiseled_red_sandstone":{"states":[{"id":7682}]},"cut_red_sandstone":{"states":[{"id":7683}]},"red_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7684},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7685},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7686},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7687},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7688},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7689},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7690},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7691},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7692},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7693},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7694},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7695},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7696},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7697},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7698},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7699},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7700},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7701},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7702},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7703},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7704},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7705},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7706},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7707},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7708},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7709},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7710},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7711},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7712},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7713},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7714},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7715},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7716},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7717},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7718},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7719},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7720},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7721},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7722},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7723},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7724},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7725},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7726},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7727},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7728},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7729},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7730},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7731},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7732},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7733},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7734},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7735},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7736},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7737},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7738},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7739},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7740},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7741},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7742},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7743},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7744},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7745},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7746},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7747},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7748},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7749},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7750},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7751},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7752},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7753},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7754},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7755},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7756},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7757},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7758},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7759},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7760},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7761},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7762},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7763}]},"oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7764},{"properties":{"type":"top","waterlogged":"false"},"id":7765},{"properties":{"type":"bottom","waterlogged":"true"},"id":7766},{"properties":{"type":"bottom","waterlogged":"false"},"id":7767},{"properties":{"type":"double","waterlogged":"true"},"id":7768},{"properties":{"type":"double","waterlogged":"false"},"id":7769}]},"spruce_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7770},{"properties":{"type":"top","waterlogged":"false"},"id":7771},{"properties":{"type":"bottom","waterlogged":"true"},"id":7772},{"properties":{"type":"bottom","waterlogged":"false"},"id":7773},{"properties":{"type":"double","waterlogged":"true"},"id":7774},{"properties":{"type":"double","waterlogged":"false"},"id":7775}]},"birch_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7776},{"properties":{"type":"top","waterlogged":"false"},"id":7777},{"properties":{"type":"bottom","waterlogged":"true"},"id":7778},{"properties":{"type":"bottom","waterlogged":"false"},"id":7779},{"properties":{"type":"double","waterlogged":"true"},"id":7780},{"properties":{"type":"double","waterlogged":"false"},"id":7781}]},"jungle_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7782},{"properties":{"type":"top","waterlogged":"false"},"id":7783},{"properties":{"type":"bottom","waterlogged":"true"},"id":7784},{"properties":{"type":"bottom","waterlogged":"false"},"id":7785},{"properties":{"type":"double","waterlogged":"true"},"id":7786},{"properties":{"type":"double","waterlogged":"false"},"id":7787}]},"acacia_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7788},{"properties":{"type":"top","waterlogged":"false"},"id":7789},{"properties":{"type":"bottom","waterlogged":"true"},"id":7790},{"properties":{"type":"bottom","waterlogged":"false"},"id":7791},{"properties":{"type":"double","waterlogged":"true"},"id":7792},{"properties":{"type":"double","waterlogged":"false"},"id":7793}]},"dark_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7794},{"properties":{"type":"top","waterlogged":"false"},"id":7795},{"properties":{"type":"bottom","waterlogged":"true"},"id":7796},{"properties":{"type":"bottom","waterlogged":"false"},"id":7797},{"properties":{"type":"double","waterlogged":"true"},"id":7798},{"properties":{"type":"double","waterlogged":"false"},"id":7799}]},"stone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7800},{"properties":{"type":"top","waterlogged":"false"},"id":7801},{"properties":{"type":"bottom","waterlogged":"true"},"id":7802},{"properties":{"type":"bottom","waterlogged":"false"},"id":7803},{"properties":{"type":"double","waterlogged":"true"},"id":7804},{"properties":{"type":"double","waterlogged":"false"},"id":7805}]},"smooth_stone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7806},{"properties":{"type":"top","waterlogged":"false"},"id":7807},{"properties":{"type":"bottom","waterlogged":"true"},"id":7808},{"properties":{"type":"bottom","waterlogged":"false"},"id":7809},{"properties":{"type":"double","waterlogged":"true"},"id":7810},{"properties":{"type":"double","waterlogged":"false"},"id":7811}]},"sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7812},{"properties":{"type":"top","waterlogged":"false"},"id":7813},{"properties":{"type":"bottom","waterlogged":"true"},"id":7814},{"properties":{"type":"bottom","waterlogged":"false"},"id":7815},{"properties":{"type":"double","waterlogged":"true"},"id":7816},{"properties":{"type":"double","waterlogged":"false"},"id":7817}]},"cut_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7818},{"properties":{"type":"top","waterlogged":"false"},"id":7819},{"properties":{"type":"bottom","waterlogged":"true"},"id":7820},{"properties":{"type":"bottom","waterlogged":"false"},"id":7821},{"properties":{"type":"double","waterlogged":"true"},"id":7822},{"properties":{"type":"double","waterlogged":"false"},"id":7823}]},"petrified_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7824},{"properties":{"type":"top","waterlogged":"false"},"id":7825},{"properties":{"type":"bottom","waterlogged":"true"},"id":7826},{"properties":{"type":"bottom","waterlogged":"false"},"id":7827},{"properties":{"type":"double","waterlogged":"true"},"id":7828},{"properties":{"type":"double","waterlogged":"false"},"id":7829}]},"cobblestone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7830},{"properties":{"type":"top","waterlogged":"false"},"id":7831},{"properties":{"type":"bottom","waterlogged":"true"},"id":7832},{"properties":{"type":"bottom","waterlogged":"false"},"id":7833},{"properties":{"type":"double","waterlogged":"true"},"id":7834},{"properties":{"type":"double","waterlogged":"false"},"id":7835}]},"brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7836},{"properties":{"type":"top","waterlogged":"false"},"id":7837},{"properties":{"type":"bottom","waterlogged":"true"},"id":7838},{"properties":{"type":"bottom","waterlogged":"false"},"id":7839},{"properties":{"type":"double","waterlogged":"true"},"id":7840},{"properties":{"type":"double","waterlogged":"false"},"id":7841}]},"stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7842},{"properties":{"type":"top","waterlogged":"false"},"id":7843},{"properties":{"type":"bottom","waterlogged":"true"},"id":7844},{"properties":{"type":"bottom","waterlogged":"false"},"id":7845},{"properties":{"type":"double","waterlogged":"true"},"id":7846},{"properties":{"type":"double","waterlogged":"false"},"id":7847}]},"nether_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7848},{"properties":{"type":"top","waterlogged":"false"},"id":7849},{"properties":{"type":"bottom","waterlogged":"true"},"id":7850},{"properties":{"type":"bottom","waterlogged":"false"},"id":7851},{"properties":{"type":"double","waterlogged":"true"},"id":7852},{"properties":{"type":"double","waterlogged":"false"},"id":7853}]},"quartz_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7854},{"properties":{"type":"top","waterlogged":"false"},"id":7855},{"properties":{"type":"bottom","waterlogged":"true"},"id":7856},{"properties":{"type":"bottom","waterlogged":"false"},"id":7857},{"properties":{"type":"double","waterlogged":"true"},"id":7858},{"properties":{"type":"double","waterlogged":"false"},"id":7859}]},"red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7860},{"properties":{"type":"top","waterlogged":"false"},"id":7861},{"properties":{"type":"bottom","waterlogged":"true"},"id":7862},{"properties":{"type":"bottom","waterlogged":"false"},"id":7863},{"properties":{"type":"double","waterlogged":"true"},"id":7864},{"properties":{"type":"double","waterlogged":"false"},"id":7865}]},"cut_red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7866},{"properties":{"type":"top","waterlogged":"false"},"id":7867},{"properties":{"type":"bottom","waterlogged":"true"},"id":7868},{"properties":{"type":"bottom","waterlogged":"false"},"id":7869},{"properties":{"type":"double","waterlogged":"true"},"id":7870},{"properties":{"type":"double","waterlogged":"false"},"id":7871}]},"purpur_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7872},{"properties":{"type":"top","waterlogged":"false"},"id":7873},{"properties":{"type":"bottom","waterlogged":"true"},"id":7874},{"properties":{"type":"bottom","waterlogged":"false"},"id":7875},{"properties":{"type":"double","waterlogged":"true"},"id":7876},{"properties":{"type":"double","waterlogged":"false"},"id":7877}]},"smooth_stone":{"states":[{"id":7878}]},"smooth_sandstone":{"states":[{"id":7879}]},"smooth_quartz":{"states":[{"id":7880}]},"smooth_red_sandstone":{"states":[{"id":7881}]},"spruce_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7882},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7883},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7884},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7885},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7886},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7887},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7888},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7889},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7890},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7891},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7892},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7893},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7894},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7895},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7896},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7897},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7898},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7899},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7900},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7901},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7902},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7903},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7904},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7905},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7906},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7907},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7908},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7909},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7910},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7911},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7912},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7913}]},"birch_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7914},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7915},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7916},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7917},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7918},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7919},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7920},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7921},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7922},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7923},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7924},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7925},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7926},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7927},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7928},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7929},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7930},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7931},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7932},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7933},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7934},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7935},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7936},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7937},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7938},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7939},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7940},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7941},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7942},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7943},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7944},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7945}]},"jungle_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7946},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7947},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7948},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7949},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7950},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7951},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7952},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7953},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7954},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7955},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7956},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7957},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7958},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7959},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7960},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7961},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7962},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7963},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7964},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7965},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7966},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7967},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7968},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7969},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7970},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7971},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7972},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7973},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7974},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7975},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7976},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7977}]},"acacia_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7978},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7979},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7980},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7981},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7982},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7983},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7984},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7985},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7986},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7987},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7988},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7989},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7990},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7991},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7992},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7993},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7994},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7995},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7996},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7997},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7998},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7999},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":8000},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":8001},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":8002},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":8003},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":8004},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":8005},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":8006},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":8007},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":8008},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":8009}]},"dark_oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":8010},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":8011},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":8012},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":8013},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":8014},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":8015},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":8016},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":8017},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":8018},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":8019},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":8020},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":8021},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":8022},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":8023},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":8024},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":8025},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":8026},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":8027},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":8028},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":8029},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":8030},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":8031},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":8032},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":8033},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":8034},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":8035},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":8036},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":8037},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":8038},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":8039},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":8040},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":8041}]},"spruce_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8042},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8043},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8044},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8045},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8046},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8047},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8048},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8049},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8050},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8051},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8052},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8053},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8054},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8055},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8056},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8057},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8058},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8059},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8060},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8061},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8062},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8063},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8064},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8065},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8066},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8067},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8068},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8069},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8070},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8071},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8072},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8073}]},"birch_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8074},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8075},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8076},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8077},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8078},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8079},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8080},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8081},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8082},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8083},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8084},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8085},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8086},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8087},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8088},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8089},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8090},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8091},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8092},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8093},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8094},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8095},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8096},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8097},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8098},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8099},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8100},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8101},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8102},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8103},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8104},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8105}]},"jungle_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8106},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8107},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8108},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8109},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8110},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8111},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8112},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8113},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8114},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8115},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8116},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8117},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8118},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8119},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8120},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8121},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8122},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8123},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8124},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8125},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8126},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8127},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8128},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8129},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8130},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8131},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8132},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8133},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8134},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8135},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8136},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8137}]},"acacia_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8138},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8139},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8140},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8141},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8142},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8143},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8144},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8145},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8146},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8147},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8148},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8149},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8150},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8151},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8152},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8153},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8154},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8155},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8156},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8157},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8158},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8159},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8160},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8161},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8162},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8163},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8164},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8165},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8166},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8167},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8168},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8169}]},"dark_oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8170},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8171},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8172},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8173},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8174},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8175},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8176},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8177},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8178},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8179},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8180},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8181},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8182},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8183},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8184},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8185},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8186},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8187},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8188},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8189},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8190},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8191},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8192},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8193},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8194},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8195},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8196},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8197},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8198},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8199},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8200},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8201}]},"spruce_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8202},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8203},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8204},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8205},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8206},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8207},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8208},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8209},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8210},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8211},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8212},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8213},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8214},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8215},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8216},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8217},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8218},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8219},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8220},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8221},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8222},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8223},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8224},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8225},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8226},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8227},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8228},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8229},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8230},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8231},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8232},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8233},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8234},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8235},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8236},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8237},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8238},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8239},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8240},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8241},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8242},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8243},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8244},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8245},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8246},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8247},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8248},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8249},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8250},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8251},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8252},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8253},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8254},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8255},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8256},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8257},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8258},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8259},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8260},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8261},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8262},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8263},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8264},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8265}]},"birch_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8266},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8267},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8268},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8269},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8271},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8272},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8273},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8274},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8275},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8276},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8277},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8278},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8279},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8280},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8281},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8282},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8283},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8284},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8285},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8286},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8287},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8288},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8289},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8290},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8291},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8292},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8293},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8294},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8295},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8296},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8297},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8298},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8299},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8300},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8301},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8302},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8303},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8304},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8305},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8306},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8307},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8308},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8309},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8310},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8311},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8312},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8313},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8314},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8315},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8316},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8317},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8318},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8319},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8320},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8321},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8322},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8323},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8324},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8325},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8326},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8327},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8328},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8329}]},"jungle_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8330},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8331},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8332},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8333},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8334},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8335},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8336},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8337},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8338},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8339},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8340},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8341},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8342},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8343},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8344},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8345},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8346},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8347},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8348},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8349},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8350},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8351},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8352},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8353},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8354},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8355},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8356},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8357},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8358},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8359},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8360},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8361},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8362},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8363},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8364},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8365},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8366},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8367},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8368},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8369},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8370},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8371},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8372},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8373},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8374},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8375},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8376},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8377},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8378},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8379},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8380},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8381},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8382},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8383},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8384},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8385},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8386},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8387},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8388},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8389},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8390},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8391},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8392},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8393}]},"acacia_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8394},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8395},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8396},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8397},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8398},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8399},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8400},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8401},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8402},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8403},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8404},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8405},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8406},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8407},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8408},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8409},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8410},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8411},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8412},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8413},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8414},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8415},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8416},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8417},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8418},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8419},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8420},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8421},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8422},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8423},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8424},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8425},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8426},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8427},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8428},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8429},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8430},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8431},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8432},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8433},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8434},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8435},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8436},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8437},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8438},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8439},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8440},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8441},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8442},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8443},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8444},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8445},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8446},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8447},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8448},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8449},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8450},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8451},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8452},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8453},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8454},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8455},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8456},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8457}]},"dark_oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8458},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8459},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8460},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8461},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8462},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8463},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8464},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8465},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8466},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8467},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8468},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8469},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8470},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8471},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8472},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8473},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8474},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8475},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8476},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8477},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8478},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8479},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8480},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8481},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8482},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8483},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8484},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8485},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8486},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8487},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8488},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8489},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8490},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8491},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8492},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8493},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8494},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8495},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8496},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8497},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8498},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8499},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8500},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8501},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8502},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8503},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8504},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8505},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8506},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8507},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8508},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8509},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8510},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8511},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8512},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8513},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8514},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8515},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8516},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8517},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8518},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8519},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8520},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8521}]},"end_rod":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8522},{"properties":{"facing":"east"},"id":8523},{"properties":{"facing":"south"},"id":8524},{"properties":{"facing":"west"},"id":8525},{"properties":{"facing":"up"},"id":8526},{"properties":{"facing":"down"},"id":8527}]},"chorus_plant":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8528},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8529},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8530},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8531},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8532},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8533},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8534},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8535},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8536},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8537},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8538},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8539},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8540},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8541},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8542},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8543},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8544},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8545},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8546},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8547},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8548},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8549},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8550},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8551},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8552},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8553},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8554},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8555},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8556},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8557},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8558},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8559},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8560},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8561},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8562},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8563},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8564},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8565},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8566},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8567},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8568},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8569},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8570},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8571},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8572},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8573},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8574},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8575},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8576},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8577},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8578},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8579},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8580},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8581},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8582},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8583},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8584},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8585},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8586},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8587},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8588},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8589},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8590},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8591}]},"chorus_flower":{"properties":{"age":["0","1","2","3","4","5"]},"states":[{"properties":{"age":"0"},"id":8592},{"properties":{"age":"1"},"id":8593},{"properties":{"age":"2"},"id":8594},{"properties":{"age":"3"},"id":8595},{"properties":{"age":"4"},"id":8596},{"properties":{"age":"5"},"id":8597}]},"purpur_block":{"states":[{"id":8598}]},"purpur_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8599},{"properties":{"axis":"y"},"id":8600},{"properties":{"axis":"z"},"id":8601}]},"purpur_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":8602},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":8603},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":8604},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":8605},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":8606},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":8607},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":8608},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":8609},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":8610},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":8611},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":8612},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":8613},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8614},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8615},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8616},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8617},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8618},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8619},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8620},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8621},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":8622},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":8623},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":8624},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":8625},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":8626},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":8627},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":8628},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":8629},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":8630},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":8631},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":8632},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":8633},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8634},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8635},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8636},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8637},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8638},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8639},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8640},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8641},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":8642},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":8643},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":8644},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":8645},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":8646},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":8647},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":8648},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":8649},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":8650},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":8651},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":8652},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":8653},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8654},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8655},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8656},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8657},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8658},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8659},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8660},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8661},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":8662},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":8663},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":8664},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":8665},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":8666},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":8667},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":8668},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":8669},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":8670},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":8671},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":8672},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":8673},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8674},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8675},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8676},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8677},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8678},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8679},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8680},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8681}]},"end_stone_bricks":{"states":[{"id":8682}]},"beetroots":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8683},{"properties":{"age":"1"},"id":8684},{"properties":{"age":"2"},"id":8685},{"properties":{"age":"3"},"id":8686}]},"grass_path":{"states":[{"id":8687}]},"end_gateway":{"states":[{"id":8688}]},"repeating_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8689},{"properties":{"conditional":"true","facing":"east"},"id":8690},{"properties":{"conditional":"true","facing":"south"},"id":8691},{"properties":{"conditional":"true","facing":"west"},"id":8692},{"properties":{"conditional":"true","facing":"up"},"id":8693},{"properties":{"conditional":"true","facing":"down"},"id":8694},{"properties":{"conditional":"false","facing":"north"},"id":8695},{"properties":{"conditional":"false","facing":"east"},"id":8696},{"properties":{"conditional":"false","facing":"south"},"id":8697},{"properties":{"conditional":"false","facing":"west"},"id":8698},{"properties":{"conditional":"false","facing":"up"},"id":8699},{"properties":{"conditional":"false","facing":"down"},"id":8700}]},"chain_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8701},{"properties":{"conditional":"true","facing":"east"},"id":8702},{"properties":{"conditional":"true","facing":"south"},"id":8703},{"properties":{"conditional":"true","facing":"west"},"id":8704},{"properties":{"conditional":"true","facing":"up"},"id":8705},{"properties":{"conditional":"true","facing":"down"},"id":8706},{"properties":{"conditional":"false","facing":"north"},"id":8707},{"properties":{"conditional":"false","facing":"east"},"id":8708},{"properties":{"conditional":"false","facing":"south"},"id":8709},{"properties":{"conditional":"false","facing":"west"},"id":8710},{"properties":{"conditional":"false","facing":"up"},"id":8711},{"properties":{"conditional":"false","facing":"down"},"id":8712}]},"frosted_ice":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8713},{"properties":{"age":"1"},"id":8714},{"properties":{"age":"2"},"id":8715},{"properties":{"age":"3"},"id":8716}]},"magma_block":{"states":[{"id":8717}]},"nether_wart_block":{"states":[{"id":8718}]},"red_nether_bricks":{"states":[{"id":8719}]},"bone_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8720},{"properties":{"axis":"y"},"id":8721},{"properties":{"axis":"z"},"id":8722}]},"structure_void":{"states":[{"id":8723}]},"observer":{"properties":{"facing":["north","east","south","west","up","down"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","powered":"true"},"id":8724},{"properties":{"facing":"north","powered":"false"},"id":8725},{"properties":{"facing":"east","powered":"true"},"id":8726},{"properties":{"facing":"east","powered":"false"},"id":8727},{"properties":{"facing":"south","powered":"true"},"id":8728},{"properties":{"facing":"south","powered":"false"},"id":8729},{"properties":{"facing":"west","powered":"true"},"id":8730},{"properties":{"facing":"west","powered":"false"},"id":8731},{"properties":{"facing":"up","powered":"true"},"id":8732},{"properties":{"facing":"up","powered":"false"},"id":8733},{"properties":{"facing":"down","powered":"true"},"id":8734},{"properties":{"facing":"down","powered":"false"},"id":8735}]},"shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8736},{"properties":{"facing":"east"},"id":8737},{"properties":{"facing":"south"},"id":8738},{"properties":{"facing":"west"},"id":8739},{"properties":{"facing":"up"},"id":8740},{"properties":{"facing":"down"},"id":8741}]},"white_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8742},{"properties":{"facing":"east"},"id":8743},{"properties":{"facing":"south"},"id":8744},{"properties":{"facing":"west"},"id":8745},{"properties":{"facing":"up"},"id":8746},{"properties":{"facing":"down"},"id":8747}]},"orange_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8748},{"properties":{"facing":"east"},"id":8749},{"properties":{"facing":"south"},"id":8750},{"properties":{"facing":"west"},"id":8751},{"properties":{"facing":"up"},"id":8752},{"properties":{"facing":"down"},"id":8753}]},"magenta_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8754},{"properties":{"facing":"east"},"id":8755},{"properties":{"facing":"south"},"id":8756},{"properties":{"facing":"west"},"id":8757},{"properties":{"facing":"up"},"id":8758},{"properties":{"facing":"down"},"id":8759}]},"light_blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8760},{"properties":{"facing":"east"},"id":8761},{"properties":{"facing":"south"},"id":8762},{"properties":{"facing":"west"},"id":8763},{"properties":{"facing":"up"},"id":8764},{"properties":{"facing":"down"},"id":8765}]},"yellow_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8766},{"properties":{"facing":"east"},"id":8767},{"properties":{"facing":"south"},"id":8768},{"properties":{"facing":"west"},"id":8769},{"properties":{"facing":"up"},"id":8770},{"properties":{"facing":"down"},"id":8771}]},"lime_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8772},{"properties":{"facing":"east"},"id":8773},{"properties":{"facing":"south"},"id":8774},{"properties":{"facing":"west"},"id":8775},{"properties":{"facing":"up"},"id":8776},{"properties":{"facing":"down"},"id":8777}]},"pink_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8778},{"properties":{"facing":"east"},"id":8779},{"properties":{"facing":"south"},"id":8780},{"properties":{"facing":"west"},"id":8781},{"properties":{"facing":"up"},"id":8782},{"properties":{"facing":"down"},"id":8783}]},"gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8784},{"properties":{"facing":"east"},"id":8785},{"properties":{"facing":"south"},"id":8786},{"properties":{"facing":"west"},"id":8787},{"properties":{"facing":"up"},"id":8788},{"properties":{"facing":"down"},"id":8789}]},"light_gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8790},{"properties":{"facing":"east"},"id":8791},{"properties":{"facing":"south"},"id":8792},{"properties":{"facing":"west"},"id":8793},{"properties":{"facing":"up"},"id":8794},{"properties":{"facing":"down"},"id":8795}]},"cyan_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8796},{"properties":{"facing":"east"},"id":8797},{"properties":{"facing":"south"},"id":8798},{"properties":{"facing":"west"},"id":8799},{"properties":{"facing":"up"},"id":8800},{"properties":{"facing":"down"},"id":8801}]},"purple_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8802},{"properties":{"facing":"east"},"id":8803},{"properties":{"facing":"south"},"id":8804},{"properties":{"facing":"west"},"id":8805},{"properties":{"facing":"up"},"id":8806},{"properties":{"facing":"down"},"id":8807}]},"blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8808},{"properties":{"facing":"east"},"id":8809},{"properties":{"facing":"south"},"id":8810},{"properties":{"facing":"west"},"id":8811},{"properties":{"facing":"up"},"id":8812},{"properties":{"facing":"down"},"id":8813}]},"brown_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8814},{"properties":{"facing":"east"},"id":8815},{"properties":{"facing":"south"},"id":8816},{"properties":{"facing":"west"},"id":8817},{"properties":{"facing":"up"},"id":8818},{"properties":{"facing":"down"},"id":8819}]},"green_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8820},{"properties":{"facing":"east"},"id":8821},{"properties":{"facing":"south"},"id":8822},{"properties":{"facing":"west"},"id":8823},{"properties":{"facing":"up"},"id":8824},{"properties":{"facing":"down"},"id":8825}]},"red_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8826},{"properties":{"facing":"east"},"id":8827},{"properties":{"facing":"south"},"id":8828},{"properties":{"facing":"west"},"id":8829},{"properties":{"facing":"up"},"id":8830},{"properties":{"facing":"down"},"id":8831}]},"black_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8832},{"properties":{"facing":"east"},"id":8833},{"properties":{"facing":"south"},"id":8834},{"properties":{"facing":"west"},"id":8835},{"properties":{"facing":"up"},"id":8836},{"properties":{"facing":"down"},"id":8837}]},"white_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8838},{"properties":{"facing":"south"},"id":8839},{"properties":{"facing":"west"},"id":8840},{"properties":{"facing":"east"},"id":8841}]},"orange_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8842},{"properties":{"facing":"south"},"id":8843},{"properties":{"facing":"west"},"id":8844},{"properties":{"facing":"east"},"id":8845}]},"magenta_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8846},{"properties":{"facing":"south"},"id":8847},{"properties":{"facing":"west"},"id":8848},{"properties":{"facing":"east"},"id":8849}]},"light_blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8850},{"properties":{"facing":"south"},"id":8851},{"properties":{"facing":"west"},"id":8852},{"properties":{"facing":"east"},"id":8853}]},"yellow_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8854},{"properties":{"facing":"south"},"id":8855},{"properties":{"facing":"west"},"id":8856},{"properties":{"facing":"east"},"id":8857}]},"lime_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8858},{"properties":{"facing":"south"},"id":8859},{"properties":{"facing":"west"},"id":8860},{"properties":{"facing":"east"},"id":8861}]},"pink_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8862},{"properties":{"facing":"south"},"id":8863},{"properties":{"facing":"west"},"id":8864},{"properties":{"facing":"east"},"id":8865}]},"gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8866},{"properties":{"facing":"south"},"id":8867},{"properties":{"facing":"west"},"id":8868},{"properties":{"facing":"east"},"id":8869}]},"light_gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8870},{"properties":{"facing":"south"},"id":8871},{"properties":{"facing":"west"},"id":8872},{"properties":{"facing":"east"},"id":8873}]},"cyan_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8874},{"properties":{"facing":"south"},"id":8875},{"properties":{"facing":"west"},"id":8876},{"properties":{"facing":"east"},"id":8877}]},"purple_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8878},{"properties":{"facing":"south"},"id":8879},{"properties":{"facing":"west"},"id":8880},{"properties":{"facing":"east"},"id":8881}]},"blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8882},{"properties":{"facing":"south"},"id":8883},{"properties":{"facing":"west"},"id":8884},{"properties":{"facing":"east"},"id":8885}]},"brown_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8886},{"properties":{"facing":"south"},"id":8887},{"properties":{"facing":"west"},"id":8888},{"properties":{"facing":"east"},"id":8889}]},"green_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8890},{"properties":{"facing":"south"},"id":8891},{"properties":{"facing":"west"},"id":8892},{"properties":{"facing":"east"},"id":8893}]},"red_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8894},{"properties":{"facing":"south"},"id":8895},{"properties":{"facing":"west"},"id":8896},{"properties":{"facing":"east"},"id":8897}]},"black_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8898},{"properties":{"facing":"south"},"id":8899},{"properties":{"facing":"west"},"id":8900},{"properties":{"facing":"east"},"id":8901}]},"white_concrete":{"states":[{"id":8902}]},"orange_concrete":{"states":[{"id":8903}]},"magenta_concrete":{"states":[{"id":8904}]},"light_blue_concrete":{"states":[{"id":8905}]},"yellow_concrete":{"states":[{"id":8906}]},"lime_concrete":{"states":[{"id":8907}]},"pink_concrete":{"states":[{"id":8908}]},"gray_concrete":{"states":[{"id":8909}]},"light_gray_concrete":{"states":[{"id":8910}]},"cyan_concrete":{"states":[{"id":8911}]},"purple_concrete":{"states":[{"id":8912}]},"blue_concrete":{"states":[{"id":8913}]},"brown_concrete":{"states":[{"id":8914}]},"green_concrete":{"states":[{"id":8915}]},"red_concrete":{"states":[{"id":8916}]},"black_concrete":{"states":[{"id":8917}]},"white_concrete_powder":{"states":[{"id":8918}]},"orange_concrete_powder":{"states":[{"id":8919}]},"magenta_concrete_powder":{"states":[{"id":8920}]},"light_blue_concrete_powder":{"states":[{"id":8921}]},"yellow_concrete_powder":{"states":[{"id":8922}]},"lime_concrete_powder":{"states":[{"id":8923}]},"pink_concrete_powder":{"states":[{"id":8924}]},"gray_concrete_powder":{"states":[{"id":8925}]},"light_gray_concrete_powder":{"states":[{"id":8926}]},"cyan_concrete_powder":{"states":[{"id":8927}]},"purple_concrete_powder":{"states":[{"id":8928}]},"blue_concrete_powder":{"states":[{"id":8929}]},"brown_concrete_powder":{"states":[{"id":8930}]},"green_concrete_powder":{"states":[{"id":8931}]},"red_concrete_powder":{"states":[{"id":8932}]},"black_concrete_powder":{"states":[{"id":8933}]},"kelp":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25"]},"states":[{"properties":{"age":"0"},"id":8934},{"properties":{"age":"1"},"id":8935},{"properties":{"age":"2"},"id":8936},{"properties":{"age":"3"},"id":8937},{"properties":{"age":"4"},"id":8938},{"properties":{"age":"5"},"id":8939},{"properties":{"age":"6"},"id":8940},{"properties":{"age":"7"},"id":8941},{"properties":{"age":"8"},"id":8942},{"properties":{"age":"9"},"id":8943},{"properties":{"age":"10"},"id":8944},{"properties":{"age":"11"},"id":8945},{"properties":{"age":"12"},"id":8946},{"properties":{"age":"13"},"id":8947},{"properties":{"age":"14"},"id":8948},{"properties":{"age":"15"},"id":8949},{"properties":{"age":"16"},"id":8950},{"properties":{"age":"17"},"id":8951},{"properties":{"age":"18"},"id":8952},{"properties":{"age":"19"},"id":8953},{"properties":{"age":"20"},"id":8954},{"properties":{"age":"21"},"id":8955},{"properties":{"age":"22"},"id":8956},{"properties":{"age":"23"},"id":8957},{"properties":{"age":"24"},"id":8958},{"properties":{"age":"25"},"id":8959}]},"kelp_plant":{"states":[{"id":8960}]},"dried_kelp_block":{"states":[{"id":8961}]},"turtle_egg":{"properties":{"eggs":["1","2","3","4"],"hatch":["0","1","2"]},"states":[{"properties":{"eggs":"1","hatch":"0"},"id":8962},{"properties":{"eggs":"1","hatch":"1"},"id":8963},{"properties":{"eggs":"1","hatch":"2"},"id":8964},{"properties":{"eggs":"2","hatch":"0"},"id":8965},{"properties":{"eggs":"2","hatch":"1"},"id":8966},{"properties":{"eggs":"2","hatch":"2"},"id":8967},{"properties":{"eggs":"3","hatch":"0"},"id":8968},{"properties":{"eggs":"3","hatch":"1"},"id":8969},{"properties":{"eggs":"3","hatch":"2"},"id":8970},{"properties":{"eggs":"4","hatch":"0"},"id":8971},{"properties":{"eggs":"4","hatch":"1"},"id":8972},{"properties":{"eggs":"4","hatch":"2"},"id":8973}]},"dead_tube_coral_block":{"states":[{"id":8974}]},"dead_brain_coral_block":{"states":[{"id":8975}]},"dead_bubble_coral_block":{"states":[{"id":8976}]},"dead_fire_coral_block":{"states":[{"id":8977}]},"dead_horn_coral_block":{"states":[{"id":8978}]},"tube_coral_block":{"states":[{"id":8979}]},"brain_coral_block":{"states":[{"id":8980}]},"bubble_coral_block":{"states":[{"id":8981}]},"fire_coral_block":{"states":[{"id":8982}]},"horn_coral_block":{"states":[{"id":8983}]},"dead_tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8984},{"properties":{"waterlogged":"false"},"id":8985}]},"dead_brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8986},{"properties":{"waterlogged":"false"},"id":8987}]},"dead_bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8988},{"properties":{"waterlogged":"false"},"id":8989}]},"dead_fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8990},{"properties":{"waterlogged":"false"},"id":8991}]},"dead_horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8992},{"properties":{"waterlogged":"false"},"id":8993}]},"tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8994},{"properties":{"waterlogged":"false"},"id":8995}]},"brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8996},{"properties":{"waterlogged":"false"},"id":8997}]},"bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8998},{"properties":{"waterlogged":"false"},"id":8999}]},"fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9000},{"properties":{"waterlogged":"false"},"id":9001}]},"horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9002},{"properties":{"waterlogged":"false"},"id":9003}]},"dead_tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9004},{"properties":{"waterlogged":"false"},"id":9005}]},"dead_brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9006},{"properties":{"waterlogged":"false"},"id":9007}]},"dead_bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9008},{"properties":{"waterlogged":"false"},"id":9009}]},"dead_fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9010},{"properties":{"waterlogged":"false"},"id":9011}]},"dead_horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9012},{"properties":{"waterlogged":"false"},"id":9013}]},"tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9014},{"properties":{"waterlogged":"false"},"id":9015}]},"brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9016},{"properties":{"waterlogged":"false"},"id":9017}]},"bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9018},{"properties":{"waterlogged":"false"},"id":9019}]},"fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9020},{"properties":{"waterlogged":"false"},"id":9021}]},"horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9022},{"properties":{"waterlogged":"false"},"id":9023}]},"dead_tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9024},{"properties":{"facing":"north","waterlogged":"false"},"id":9025},{"properties":{"facing":"south","waterlogged":"true"},"id":9026},{"properties":{"facing":"south","waterlogged":"false"},"id":9027},{"properties":{"facing":"west","waterlogged":"true"},"id":9028},{"properties":{"facing":"west","waterlogged":"false"},"id":9029},{"properties":{"facing":"east","waterlogged":"true"},"id":9030},{"properties":{"facing":"east","waterlogged":"false"},"id":9031}]},"dead_brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9032},{"properties":{"facing":"north","waterlogged":"false"},"id":9033},{"properties":{"facing":"south","waterlogged":"true"},"id":9034},{"properties":{"facing":"south","waterlogged":"false"},"id":9035},{"properties":{"facing":"west","waterlogged":"true"},"id":9036},{"properties":{"facing":"west","waterlogged":"false"},"id":9037},{"properties":{"facing":"east","waterlogged":"true"},"id":9038},{"properties":{"facing":"east","waterlogged":"false"},"id":9039}]},"dead_bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9040},{"properties":{"facing":"north","waterlogged":"false"},"id":9041},{"properties":{"facing":"south","waterlogged":"true"},"id":9042},{"properties":{"facing":"south","waterlogged":"false"},"id":9043},{"properties":{"facing":"west","waterlogged":"true"},"id":9044},{"properties":{"facing":"west","waterlogged":"false"},"id":9045},{"properties":{"facing":"east","waterlogged":"true"},"id":9046},{"properties":{"facing":"east","waterlogged":"false"},"id":9047}]},"dead_fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9048},{"properties":{"facing":"north","waterlogged":"false"},"id":9049},{"properties":{"facing":"south","waterlogged":"true"},"id":9050},{"properties":{"facing":"south","waterlogged":"false"},"id":9051},{"properties":{"facing":"west","waterlogged":"true"},"id":9052},{"properties":{"facing":"west","waterlogged":"false"},"id":9053},{"properties":{"facing":"east","waterlogged":"true"},"id":9054},{"properties":{"facing":"east","waterlogged":"false"},"id":9055}]},"dead_horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9056},{"properties":{"facing":"north","waterlogged":"false"},"id":9057},{"properties":{"facing":"south","waterlogged":"true"},"id":9058},{"properties":{"facing":"south","waterlogged":"false"},"id":9059},{"properties":{"facing":"west","waterlogged":"true"},"id":9060},{"properties":{"facing":"west","waterlogged":"false"},"id":9061},{"properties":{"facing":"east","waterlogged":"true"},"id":9062},{"properties":{"facing":"east","waterlogged":"false"},"id":9063}]},"tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9064},{"properties":{"facing":"north","waterlogged":"false"},"id":9065},{"properties":{"facing":"south","waterlogged":"true"},"id":9066},{"properties":{"facing":"south","waterlogged":"false"},"id":9067},{"properties":{"facing":"west","waterlogged":"true"},"id":9068},{"properties":{"facing":"west","waterlogged":"false"},"id":9069},{"properties":{"facing":"east","waterlogged":"true"},"id":9070},{"properties":{"facing":"east","waterlogged":"false"},"id":9071}]},"brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9072},{"properties":{"facing":"north","waterlogged":"false"},"id":9073},{"properties":{"facing":"south","waterlogged":"true"},"id":9074},{"properties":{"facing":"south","waterlogged":"false"},"id":9075},{"properties":{"facing":"west","waterlogged":"true"},"id":9076},{"properties":{"facing":"west","waterlogged":"false"},"id":9077},{"properties":{"facing":"east","waterlogged":"true"},"id":9078},{"properties":{"facing":"east","waterlogged":"false"},"id":9079}]},"bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9080},{"properties":{"facing":"north","waterlogged":"false"},"id":9081},{"properties":{"facing":"south","waterlogged":"true"},"id":9082},{"properties":{"facing":"south","waterlogged":"false"},"id":9083},{"properties":{"facing":"west","waterlogged":"true"},"id":9084},{"properties":{"facing":"west","waterlogged":"false"},"id":9085},{"properties":{"facing":"east","waterlogged":"true"},"id":9086},{"properties":{"facing":"east","waterlogged":"false"},"id":9087}]},"fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9088},{"properties":{"facing":"north","waterlogged":"false"},"id":9089},{"properties":{"facing":"south","waterlogged":"true"},"id":9090},{"properties":{"facing":"south","waterlogged":"false"},"id":9091},{"properties":{"facing":"west","waterlogged":"true"},"id":9092},{"properties":{"facing":"west","waterlogged":"false"},"id":9093},{"properties":{"facing":"east","waterlogged":"true"},"id":9094},{"properties":{"facing":"east","waterlogged":"false"},"id":9095}]},"horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9096},{"properties":{"facing":"north","waterlogged":"false"},"id":9097},{"properties":{"facing":"south","waterlogged":"true"},"id":9098},{"properties":{"facing":"south","waterlogged":"false"},"id":9099},{"properties":{"facing":"west","waterlogged":"true"},"id":9100},{"properties":{"facing":"west","waterlogged":"false"},"id":9101},{"properties":{"facing":"east","waterlogged":"true"},"id":9102},{"properties":{"facing":"east","waterlogged":"false"},"id":9103}]},"sea_pickle":{"properties":{"pickles":["1","2","3","4"],"waterlogged":["true","false"]},"states":[{"properties":{"pickles":"1","waterlogged":"true"},"id":9104},{"properties":{"pickles":"1","waterlogged":"false"},"id":9105},{"properties":{"pickles":"2","waterlogged":"true"},"id":9106},{"properties":{"pickles":"2","waterlogged":"false"},"id":9107},{"properties":{"pickles":"3","waterlogged":"true"},"id":9108},{"properties":{"pickles":"3","waterlogged":"false"},"id":9109},{"properties":{"pickles":"4","waterlogged":"true"},"id":9110},{"properties":{"pickles":"4","waterlogged":"false"},"id":9111}]},"blue_ice":{"states":[{"id":9112}]},"conduit":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9113},{"properties":{"waterlogged":"false"},"id":9114}]},"bamboo_sapling":{"states":[{"id":9115}]},"bamboo":{"properties":{"age":["0","1"],"leaves":["none","small","large"],"stage":["0","1"]},"states":[{"properties":{"age":"0","leaves":"none","stage":"0"},"id":9116},{"properties":{"age":"0","leaves":"none","stage":"1"},"id":9117},{"properties":{"age":"0","leaves":"small","stage":"0"},"id":9118},{"properties":{"age":"0","leaves":"small","stage":"1"},"id":9119},{"properties":{"age":"0","leaves":"large","stage":"0"},"id":9120},{"properties":{"age":"0","leaves":"large","stage":"1"},"id":9121},{"properties":{"age":"1","leaves":"none","stage":"0"},"id":9122},{"properties":{"age":"1","leaves":"none","stage":"1"},"id":9123},{"properties":{"age":"1","leaves":"small","stage":"0"},"id":9124},{"properties":{"age":"1","leaves":"small","stage":"1"},"id":9125},{"properties":{"age":"1","leaves":"large","stage":"0"},"id":9126},{"properties":{"age":"1","leaves":"large","stage":"1"},"id":9127}]},"potted_bamboo":{"states":[{"id":9128}]},"void_air":{"states":[{"id":9129}]},"cave_air":{"states":[{"id":9130}]},"bubble_column":{"properties":{"drag":["true","false"]},"states":[{"properties":{"drag":"true"},"id":9131},{"properties":{"drag":"false"},"id":9132}]},"polished_granite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9133},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9134},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9135},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9136},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9137},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9138},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9139},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9140},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9141},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9142},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9143},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9144},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9145},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9146},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9147},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9148},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9149},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9150},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9151},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9152},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9153},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9154},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9155},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9156},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9157},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9158},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9159},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9160},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9161},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9162},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9163},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9164},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9165},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9166},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9167},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9168},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9169},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9170},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9171},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9172},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9173},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9174},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9175},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9176},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9177},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9178},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9179},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9180},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9181},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9182},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9183},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9184},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9185},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9186},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9187},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9188},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9189},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9190},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9191},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9192},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9193},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9194},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9195},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9196},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9197},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9198},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9199},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9200},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9201},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9202},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9203},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9204},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9205},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9206},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9207},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9208},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9209},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9210},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9211},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9212}]},"smooth_red_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9213},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9214},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9215},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9216},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9217},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9218},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9219},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9220},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9221},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9222},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9223},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9224},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9225},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9226},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9227},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9228},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9229},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9230},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9231},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9232},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9233},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9234},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9235},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9236},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9237},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9238},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9239},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9240},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9241},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9242},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9243},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9244},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9245},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9246},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9247},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9248},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9249},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9250},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9251},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9252},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9253},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9254},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9255},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9256},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9257},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9258},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9259},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9260},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9261},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9262},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9263},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9264},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9265},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9266},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9267},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9268},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9269},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9270},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9271},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9272},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9273},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9274},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9275},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9276},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9277},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9278},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9279},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9280},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9281},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9282},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9283},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9284},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9285},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9286},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9287},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9288},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9289},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9290},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9291},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9292}]},"mossy_stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9293},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9294},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9295},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9296},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9297},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9298},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9299},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9300},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9301},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9302},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9303},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9304},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9305},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9306},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9307},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9308},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9309},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9310},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9311},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9312},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9313},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9314},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9315},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9316},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9317},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9318},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9319},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9320},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9321},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9322},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9323},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9324},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9325},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9326},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9327},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9328},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9329},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9330},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9331},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9332},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9333},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9334},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9335},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9336},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9337},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9338},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9339},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9340},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9341},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9342},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9343},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9344},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9345},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9346},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9347},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9348},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9349},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9350},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9351},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9352},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9353},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9354},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9355},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9356},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9357},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9358},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9359},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9360},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9361},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9362},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9363},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9364},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9365},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9366},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9367},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9368},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9369},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9370},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9371},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9372}]},"polished_diorite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9373},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9374},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9375},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9376},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9377},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9378},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9379},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9380},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9381},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9382},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9383},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9384},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9385},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9386},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9387},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9388},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9389},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9390},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9391},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9392},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9393},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9394},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9395},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9396},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9397},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9398},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9399},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9400},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9401},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9402},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9403},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9404},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9405},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9406},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9407},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9408},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9409},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9410},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9411},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9412},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9413},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9414},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9415},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9416},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9417},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9418},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9419},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9420},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9421},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9422},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9423},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9424},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9425},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9426},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9427},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9428},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9429},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9430},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9431},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9432},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9433},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9434},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9435},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9436},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9437},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9438},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9439},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9440},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9441},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9442},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9443},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9444},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9445},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9446},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9447},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9448},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9449},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9450},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9451},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9452}]},"mossy_cobblestone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9453},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9454},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9455},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9456},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9457},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9458},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9459},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9460},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9461},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9462},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9463},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9464},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9465},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9466},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9467},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9468},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9469},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9470},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9471},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9472},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9473},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9474},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9475},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9476},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9477},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9478},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9479},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9480},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9481},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9482},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9483},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9484},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9485},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9486},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9487},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9488},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9489},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9490},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9491},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9492},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9493},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9494},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9495},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9496},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9497},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9498},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9499},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9500},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9501},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9502},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9503},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9504},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9505},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9506},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9507},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9508},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9509},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9510},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9511},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9512},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9513},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9514},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9515},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9516},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9517},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9518},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9519},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9520},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9521},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9522},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9523},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9524},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9525},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9526},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9527},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9528},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9529},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9530},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9531},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9532}]},"end_stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9533},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9534},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9535},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9536},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9537},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9538},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9539},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9540},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9541},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9542},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9543},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9544},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9545},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9546},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9547},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9548},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9549},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9550},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9551},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9552},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9553},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9554},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9555},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9556},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9557},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9558},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9559},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9560},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9561},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9562},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9563},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9564},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9565},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9566},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9567},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9568},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9569},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9570},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9571},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9572},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9573},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9574},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9575},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9576},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9577},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9578},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9579},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9580},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9581},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9582},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9583},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9584},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9585},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9586},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9587},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9588},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9589},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9590},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9591},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9592},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9593},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9594},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9595},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9596},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9597},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9598},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9599},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9600},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9601},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9602},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9603},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9604},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9605},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9606},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9607},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9608},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9609},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9610},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9611},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9612}]},"stone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9613},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9614},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9615},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9616},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9617},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9618},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9619},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9620},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9621},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9622},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9623},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9624},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9625},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9626},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9627},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9628},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9629},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9630},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9631},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9632},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9633},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9634},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9635},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9636},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9637},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9638},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9639},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9640},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9641},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9642},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9643},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9644},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9645},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9646},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9647},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9648},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9649},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9650},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9651},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9652},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9653},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9654},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9655},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9656},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9657},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9658},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9659},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9660},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9661},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9662},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9663},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9664},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9665},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9666},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9667},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9668},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9669},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9670},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9671},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9672},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9673},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9674},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9675},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9676},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9677},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9678},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9679},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9680},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9681},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9682},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9683},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9684},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9685},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9686},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9687},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9688},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9689},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9690},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9691},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9692}]},"smooth_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9693},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9694},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9695},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9696},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9697},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9698},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9699},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9700},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9701},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9702},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9703},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9704},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9705},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9706},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9707},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9708},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9709},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9710},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9711},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9712},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9713},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9714},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9715},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9716},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9717},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9718},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9719},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9720},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9721},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9722},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9723},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9724},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9725},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9726},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9727},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9728},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9729},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9730},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9731},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9732},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9733},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9734},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9735},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9736},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9737},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9738},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9739},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9740},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9741},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9742},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9743},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9744},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9745},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9746},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9747},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9748},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9749},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9750},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9751},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9752},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9753},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9754},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9755},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9756},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9757},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9758},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9759},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9760},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9761},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9762},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9763},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9764},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9765},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9766},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9767},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9768},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9769},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9770},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9771},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9772}]},"smooth_quartz_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9773},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9774},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9775},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9776},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9777},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9778},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9779},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9780},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9781},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9782},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9783},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9784},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9785},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9786},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9787},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9788},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9789},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9790},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9791},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9792},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9793},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9794},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9795},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9796},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9797},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9798},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9799},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9800},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9801},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9802},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9803},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9804},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9805},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9806},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9807},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9808},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9809},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9810},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9811},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9812},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9813},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9814},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9815},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9816},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9817},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9818},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9819},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9820},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9821},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9822},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9823},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9824},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9825},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9826},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9827},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9828},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9829},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9830},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9831},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9832},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9833},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9834},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9835},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9836},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9837},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9838},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9839},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9840},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9841},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9842},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9843},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9844},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9845},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9846},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9847},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9848},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9849},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9850},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9851},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9852}]},"granite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9853},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9854},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9855},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9856},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9857},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9858},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9859},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9860},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9861},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9862},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9863},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9864},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9865},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9866},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9867},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9868},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9869},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9870},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9871},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9872},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9873},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9874},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9875},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9876},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9877},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9878},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9879},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9880},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9881},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9882},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9883},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9884},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9885},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9886},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9887},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9888},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9889},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9890},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9891},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9892},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9893},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9894},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9895},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9896},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9897},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9898},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9899},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9900},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9901},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9902},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9903},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9904},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9905},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9906},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9907},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9908},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9909},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9910},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9911},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9912},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9913},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9914},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9915},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9916},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9917},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9918},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9919},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9920},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9921},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9922},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9923},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9924},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9925},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9926},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9927},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9928},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9929},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9930},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9931},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9932}]},"andesite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9933},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9934},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9935},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9936},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9937},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9938},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9939},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9940},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9941},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9942},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9943},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9944},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9945},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9946},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9947},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9948},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9949},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9950},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9951},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9952},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9953},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9954},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9955},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9956},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9957},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9958},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9959},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9960},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9961},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9962},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9963},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9964},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9965},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9966},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9967},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9968},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9969},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9970},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9971},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9972},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9973},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9974},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9975},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9976},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9977},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9978},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9979},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9980},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9981},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9982},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9983},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9984},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9985},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9986},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9987},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9988},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9989},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9990},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9991},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9992},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9993},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9994},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9995},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9996},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9997},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9998},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9999},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10000},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10001},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10002},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10003},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10004},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10005},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10006},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10007},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10008},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10009},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10010},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10011},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10012}]},"red_nether_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10013},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10014},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10015},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10016},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10017},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10018},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10019},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10020},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10021},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10022},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10023},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10024},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10025},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10026},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10027},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10028},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10029},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10030},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10031},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10032},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10033},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10034},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10035},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10036},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10037},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10038},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10039},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10040},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10041},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10042},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10043},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10044},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10045},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10046},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10047},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10048},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10049},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10050},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10051},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10052},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10053},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10054},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10055},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10056},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10057},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10058},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10059},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10060},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10061},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10062},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10063},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10064},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10065},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10066},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10067},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10068},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10069},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10070},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10071},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10072},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10073},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10074},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10075},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10076},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10077},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10078},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10079},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10080},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10081},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10082},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10083},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10084},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10085},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10086},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10087},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10088},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10089},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10090},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10091},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10092}]},"polished_andesite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10093},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10094},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10095},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10096},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10097},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10098},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10099},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10100},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10101},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10102},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10103},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10104},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10105},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10106},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10107},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10108},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10109},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10110},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10111},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10112},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10113},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10114},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10115},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10116},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10117},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10118},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10119},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10120},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10121},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10122},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10123},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10124},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10125},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10126},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10127},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10128},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10129},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10130},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10131},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10132},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10133},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10134},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10135},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10136},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10137},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10138},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10139},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10140},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10141},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10142},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10143},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10144},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10145},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10146},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10147},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10148},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10149},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10150},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10151},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10152},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10153},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10154},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10155},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10156},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10157},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10158},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10159},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10160},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10161},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10162},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10163},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10164},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10165},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10166},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10167},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10168},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10169},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10170},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10171},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10172}]},"diorite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10173},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10174},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10175},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10176},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10177},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10178},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10179},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10180},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10181},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10182},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10183},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10184},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10185},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10186},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10187},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10188},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10189},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10190},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10191},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10192},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10193},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10194},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10195},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10196},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10197},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10198},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10199},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10200},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10201},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10202},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10203},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10204},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10205},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10206},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10207},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10208},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10209},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10210},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10211},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10212},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10213},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10214},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10215},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10216},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10217},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10218},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10219},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10220},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10221},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10222},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10223},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10224},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10225},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10226},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10227},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10228},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10229},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10230},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10231},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10232},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10233},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10234},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10235},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10236},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10237},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10238},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10239},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10240},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10241},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10242},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10243},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10244},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10245},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10246},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10247},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10248},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10249},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10250},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10251},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10252}]},"polished_granite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10253},{"properties":{"type":"top","waterlogged":"false"},"id":10254},{"properties":{"type":"bottom","waterlogged":"true"},"id":10255},{"properties":{"type":"bottom","waterlogged":"false"},"id":10256},{"properties":{"type":"double","waterlogged":"true"},"id":10257},{"properties":{"type":"double","waterlogged":"false"},"id":10258}]},"smooth_red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10259},{"properties":{"type":"top","waterlogged":"false"},"id":10260},{"properties":{"type":"bottom","waterlogged":"true"},"id":10261},{"properties":{"type":"bottom","waterlogged":"false"},"id":10262},{"properties":{"type":"double","waterlogged":"true"},"id":10263},{"properties":{"type":"double","waterlogged":"false"},"id":10264}]},"mossy_stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10265},{"properties":{"type":"top","waterlogged":"false"},"id":10266},{"properties":{"type":"bottom","waterlogged":"true"},"id":10267},{"properties":{"type":"bottom","waterlogged":"false"},"id":10268},{"properties":{"type":"double","waterlogged":"true"},"id":10269},{"properties":{"type":"double","waterlogged":"false"},"id":10270}]},"polished_diorite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10271},{"properties":{"type":"top","waterlogged":"false"},"id":10272},{"properties":{"type":"bottom","waterlogged":"true"},"id":10273},{"properties":{"type":"bottom","waterlogged":"false"},"id":10274},{"properties":{"type":"double","waterlogged":"true"},"id":10275},{"properties":{"type":"double","waterlogged":"false"},"id":10276}]},"mossy_cobblestone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10277},{"properties":{"type":"top","waterlogged":"false"},"id":10278},{"properties":{"type":"bottom","waterlogged":"true"},"id":10279},{"properties":{"type":"bottom","waterlogged":"false"},"id":10280},{"properties":{"type":"double","waterlogged":"true"},"id":10281},{"properties":{"type":"double","waterlogged":"false"},"id":10282}]},"end_stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10283},{"properties":{"type":"top","waterlogged":"false"},"id":10284},{"properties":{"type":"bottom","waterlogged":"true"},"id":10285},{"properties":{"type":"bottom","waterlogged":"false"},"id":10286},{"properties":{"type":"double","waterlogged":"true"},"id":10287},{"properties":{"type":"double","waterlogged":"false"},"id":10288}]},"smooth_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10289},{"properties":{"type":"top","waterlogged":"false"},"id":10290},{"properties":{"type":"bottom","waterlogged":"true"},"id":10291},{"properties":{"type":"bottom","waterlogged":"false"},"id":10292},{"properties":{"type":"double","waterlogged":"true"},"id":10293},{"properties":{"type":"double","waterlogged":"false"},"id":10294}]},"smooth_quartz_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10295},{"properties":{"type":"top","waterlogged":"false"},"id":10296},{"properties":{"type":"bottom","waterlogged":"true"},"id":10297},{"properties":{"type":"bottom","waterlogged":"false"},"id":10298},{"properties":{"type":"double","waterlogged":"true"},"id":10299},{"properties":{"type":"double","waterlogged":"false"},"id":10300}]},"granite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10301},{"properties":{"type":"top","waterlogged":"false"},"id":10302},{"properties":{"type":"bottom","waterlogged":"true"},"id":10303},{"properties":{"type":"bottom","waterlogged":"false"},"id":10304},{"properties":{"type":"double","waterlogged":"true"},"id":10305},{"properties":{"type":"double","waterlogged":"false"},"id":10306}]},"andesite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10307},{"properties":{"type":"top","waterlogged":"false"},"id":10308},{"properties":{"type":"bottom","waterlogged":"true"},"id":10309},{"properties":{"type":"bottom","waterlogged":"false"},"id":10310},{"properties":{"type":"double","waterlogged":"true"},"id":10311},{"properties":{"type":"double","waterlogged":"false"},"id":10312}]},"red_nether_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10313},{"properties":{"type":"top","waterlogged":"false"},"id":10314},{"properties":{"type":"bottom","waterlogged":"true"},"id":10315},{"properties":{"type":"bottom","waterlogged":"false"},"id":10316},{"properties":{"type":"double","waterlogged":"true"},"id":10317},{"properties":{"type":"double","waterlogged":"false"},"id":10318}]},"polished_andesite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10319},{"properties":{"type":"top","waterlogged":"false"},"id":10320},{"properties":{"type":"bottom","waterlogged":"true"},"id":10321},{"properties":{"type":"bottom","waterlogged":"false"},"id":10322},{"properties":{"type":"double","waterlogged":"true"},"id":10323},{"properties":{"type":"double","waterlogged":"false"},"id":10324}]},"diorite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10325},{"properties":{"type":"top","waterlogged":"false"},"id":10326},{"properties":{"type":"bottom","waterlogged":"true"},"id":10327},{"properties":{"type":"bottom","waterlogged":"false"},"id":10328},{"properties":{"type":"double","waterlogged":"true"},"id":10329},{"properties":{"type":"double","waterlogged":"false"},"id":10330}]},"brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10331},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10332},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10333},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10334},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10335},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10336},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10337},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10338},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10339},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10340},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10341},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10342},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10343},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10344},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10345},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10346},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10347},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10348},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10349},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10350},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10351},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10352},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10353},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10354},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10355},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10356},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10357},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10358},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10359},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10360},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10361},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10362},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10363},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10364},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10365},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10366},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10367},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10368},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10369},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10370},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10371},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10372},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10373},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10374},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10375},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10376},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10377},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10378},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10379},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10380},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10381},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10382},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10383},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10384},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10385},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10386},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10387},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10388},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10389},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10390},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10391},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10392},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10393},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10394}]},"prismarine_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10395},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10396},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10397},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10398},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10399},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10400},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10401},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10402},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10403},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10404},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10405},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10406},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10407},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10408},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10409},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10410},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10411},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10412},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10413},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10414},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10415},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10416},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10417},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10418},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10419},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10420},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10421},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10422},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10423},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10424},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10425},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10426},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10427},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10428},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10429},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10430},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10431},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10432},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10433},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10434},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10435},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10436},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10437},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10438},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10439},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10440},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10441},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10442},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10443},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10444},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10445},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10446},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10447},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10448},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10449},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10450},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10451},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10452},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10453},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10454},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10455},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10456},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10457},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10458}]},"red_sandstone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10459},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10460},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10461},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10462},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10463},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10464},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10465},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10466},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10467},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10468},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10469},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10470},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10471},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10472},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10473},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10474},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10475},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10476},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10477},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10478},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10479},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10480},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10481},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10482},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10483},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10484},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10485},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10486},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10487},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10488},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10489},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10490},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10491},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10492},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10493},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10494},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10495},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10496},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10497},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10498},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10499},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10500},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10501},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10502},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10503},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10504},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10505},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10506},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10507},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10508},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10509},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10510},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10511},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10512},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10513},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10514},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10515},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10516},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10517},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10518},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10519},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10520},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10521},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10522}]},"mossy_stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10523},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10524},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10525},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10526},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10527},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10528},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10529},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10530},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10531},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10532},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10533},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10534},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10535},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10536},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10537},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10538},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10539},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10540},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10541},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10542},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10543},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10544},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10545},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10546},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10547},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10548},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10549},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10550},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10551},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10552},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10553},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10554},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10555},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10556},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10557},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10558},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10559},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10560},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10561},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10562},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10563},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10564},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10565},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10566},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10567},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10568},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10569},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10570},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10571},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10572},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10573},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10574},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10575},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10576},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10577},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10578},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10579},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10580},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10581},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10582},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10583},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10584},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10585},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10586}]},"granite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10587},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10588},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10589},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10590},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10591},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10592},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10593},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10594},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10595},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10596},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10597},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10598},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10599},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10600},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10601},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10602},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10603},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10604},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10605},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10606},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10607},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10608},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10609},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10610},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10611},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10612},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10613},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10614},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10615},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10616},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10617},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10618},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10619},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10620},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10621},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10622},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10623},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10624},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10625},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10626},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10627},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10628},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10629},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10630},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10631},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10632},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10633},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10634},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10635},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10636},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10637},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10638},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10639},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10640},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10641},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10642},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10643},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10644},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10645},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10646},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10647},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10648},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10649},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10650}]},"stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10651},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10652},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10653},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10654},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10655},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10656},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10657},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10658},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10659},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10660},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10661},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10662},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10663},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10664},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10665},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10666},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10667},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10668},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10669},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10670},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10671},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10672},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10673},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10674},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10675},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10676},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10677},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10678},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10679},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10680},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10681},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10682},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10683},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10684},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10685},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10686},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10687},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10688},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10689},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10690},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10691},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10692},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10693},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10694},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10695},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10696},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10697},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10698},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10699},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10700},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10701},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10702},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10703},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10704},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10705},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10706},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10707},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10708},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10709},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10710},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10711},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10712},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10713},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10714}]},"nether_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10715},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10716},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10717},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10718},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10719},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10720},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10721},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10722},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10723},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10724},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10725},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10726},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10727},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10728},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10729},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10730},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10731},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10732},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10733},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10734},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10735},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10736},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10737},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10738},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10739},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10740},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10741},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10742},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10743},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10744},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10745},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10746},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10747},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10748},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10749},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10750},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10751},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10752},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10753},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10754},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10755},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10756},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10757},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10758},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10759},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10760},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10761},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10762},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10763},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10764},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10765},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10766},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10767},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10768},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10769},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10770},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10771},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10772},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10773},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10774},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10775},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10776},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10777},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10778}]},"andesite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10779},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10780},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10781},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10782},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10783},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10784},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10785},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10786},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10787},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10788},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10789},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10790},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10791},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10792},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10793},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10794},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10795},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10796},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10797},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10798},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10799},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10800},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10801},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10802},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10803},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10804},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10805},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10806},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10807},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10808},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10809},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10810},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10811},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10812},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10813},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10814},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10815},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10816},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10817},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10818},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10819},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10820},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10821},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10822},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10823},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10824},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10825},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10826},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10827},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10828},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10829},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10830},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10831},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10832},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10833},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10834},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10835},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10836},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10837},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10838},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10839},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10840},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10841},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10842}]},"red_nether_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10843},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10844},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10845},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10846},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10847},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10848},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10849},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10850},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10851},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10852},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10853},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10854},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10855},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10856},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10857},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10858},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10859},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10860},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10861},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10862},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10863},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10864},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10865},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10866},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10867},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10868},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10869},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10870},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10871},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10872},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10873},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10874},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10875},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10876},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10877},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10878},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10879},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10880},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10881},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10882},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10883},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10884},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10885},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10886},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10887},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10888},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10889},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10890},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10891},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10892},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10893},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10894},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10895},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10896},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10897},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10898},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10899},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10900},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10901},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10902},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10903},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10904},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10905},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10906}]},"sandstone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10907},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10908},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10909},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10910},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10911},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10912},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10913},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10914},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10915},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10916},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10917},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10918},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10919},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10920},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10921},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10922},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10923},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10924},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10925},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10926},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10927},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10928},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10929},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10930},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10931},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10932},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10933},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10934},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10935},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10936},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10937},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10938},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10939},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10940},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10941},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10942},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10943},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10944},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10945},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10946},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10947},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10948},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10949},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10950},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10951},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10952},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10953},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10954},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10955},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10956},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10957},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10958},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10959},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10960},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10961},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10962},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10963},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10964},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10965},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10966},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10967},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10968},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10969},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10970}]},"end_stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10971},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10972},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10973},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10974},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10975},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10976},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10977},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10978},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10979},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10980},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10981},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10982},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10983},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10984},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10985},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10986},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10987},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10988},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10989},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10990},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10991},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10992},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10993},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10994},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10995},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10996},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10997},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10998},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10999},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11000},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11001},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11002},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11003},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11004},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11005},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11006},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11007},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11008},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11009},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11010},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11011},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11012},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11013},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11014},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11015},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11016},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11017},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11018},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11019},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11020},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11021},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11022},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11023},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11024},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11025},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11026},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11027},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11028},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11029},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11030},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11031},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11032},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11033},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11034}]},"diorite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11035},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11036},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11037},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11038},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11039},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11040},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11041},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11042},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11043},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11044},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11045},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11046},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11047},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11048},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11049},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11050},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11051},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11052},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11053},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11054},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11055},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11056},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11057},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11058},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11059},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11060},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11061},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11062},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11063},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11064},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11065},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11066},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11067},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11068},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11069},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11070},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11071},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11072},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11073},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11074},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11075},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11076},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11077},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11078},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11079},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11080},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11081},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11082},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11083},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11084},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11085},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11086},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11087},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11088},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11089},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11090},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11091},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11092},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11093},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11094},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11095},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11096},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11097},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11098}]},"scaffolding":{"properties":{"bottom":["true","false"],"distance":["0","1","2","3","4","5","6","7"],"waterlogged":["true","false"]},"states":[{"properties":{"bottom":"true","distance":"0","waterlogged":"true"},"id":11099},{"properties":{"bottom":"true","distance":"0","waterlogged":"false"},"id":11100},{"properties":{"bottom":"true","distance":"1","waterlogged":"true"},"id":11101},{"properties":{"bottom":"true","distance":"1","waterlogged":"false"},"id":11102},{"properties":{"bottom":"true","distance":"2","waterlogged":"true"},"id":11103},{"properties":{"bottom":"true","distance":"2","waterlogged":"false"},"id":11104},{"properties":{"bottom":"true","distance":"3","waterlogged":"true"},"id":11105},{"properties":{"bottom":"true","distance":"3","waterlogged":"false"},"id":11106},{"properties":{"bottom":"true","distance":"4","waterlogged":"true"},"id":11107},{"properties":{"bottom":"true","distance":"4","waterlogged":"false"},"id":11108},{"properties":{"bottom":"true","distance":"5","waterlogged":"true"},"id":11109},{"properties":{"bottom":"true","distance":"5","waterlogged":"false"},"id":11110},{"properties":{"bottom":"true","distance":"6","waterlogged":"true"},"id":11111},{"properties":{"bottom":"true","distance":"6","waterlogged":"false"},"id":11112},{"properties":{"bottom":"true","distance":"7","waterlogged":"true"},"id":11113},{"properties":{"bottom":"true","distance":"7","waterlogged":"false"},"id":11114},{"properties":{"bottom":"false","distance":"0","waterlogged":"true"},"id":11115},{"properties":{"bottom":"false","distance":"0","waterlogged":"false"},"id":11116},{"properties":{"bottom":"false","distance":"1","waterlogged":"true"},"id":11117},{"properties":{"bottom":"false","distance":"1","waterlogged":"false"},"id":11118},{"properties":{"bottom":"false","distance":"2","waterlogged":"true"},"id":11119},{"properties":{"bottom":"false","distance":"2","waterlogged":"false"},"id":11120},{"properties":{"bottom":"false","distance":"3","waterlogged":"true"},"id":11121},{"properties":{"bottom":"false","distance":"3","waterlogged":"false"},"id":11122},{"properties":{"bottom":"false","distance":"4","waterlogged":"true"},"id":11123},{"properties":{"bottom":"false","distance":"4","waterlogged":"false"},"id":11124},{"properties":{"bottom":"false","distance":"5","waterlogged":"true"},"id":11125},{"properties":{"bottom":"false","distance":"5","waterlogged":"false"},"id":11126},{"properties":{"bottom":"false","distance":"6","waterlogged":"true"},"id":11127},{"properties":{"bottom":"false","distance":"6","waterlogged":"false"},"id":11128},{"properties":{"bottom":"false","distance":"7","waterlogged":"true"},"id":11129},{"properties":{"bottom":"false","distance":"7","waterlogged":"false"},"id":11130}]},"loom":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":11131},{"properties":{"facing":"south"},"id":11132},{"properties":{"facing":"west"},"id":11133},{"properties":{"facing":"east"},"id":11134}]},"barrel":{"properties":{"facing":["north","east","south","west","up","down"],"open":["true","false"]},"states":[{"properties":{"facing":"north","open":"true"},"id":11135},{"properties":{"facing":"north","open":"false"},"id":11136},{"properties":{"facing":"east","open":"true"},"id":11137},{"properties":{"facing":"east","open":"false"},"id":11138},{"properties":{"facing":"south","open":"true"},"id":11139},{"properties":{"facing":"south","open":"false"},"id":11140},{"properties":{"facing":"west","open":"true"},"id":11141},{"properties":{"facing":"west","open":"false"},"id":11142},{"properties":{"facing":"up","open":"true"},"id":11143},{"properties":{"facing":"up","open":"false"},"id":11144},{"properties":{"facing":"down","open":"true"},"id":11145},{"properties":{"facing":"down","open":"false"},"id":11146}]},"smoker":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":11147},{"properties":{"facing":"north","lit":"false"},"id":11148},{"properties":{"facing":"south","lit":"true"},"id":11149},{"properties":{"facing":"south","lit":"false"},"id":11150},{"properties":{"facing":"west","lit":"true"},"id":11151},{"properties":{"facing":"west","lit":"false"},"id":11152},{"properties":{"facing":"east","lit":"true"},"id":11153},{"properties":{"facing":"east","lit":"false"},"id":11154}]},"blast_furnace":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":11155},{"properties":{"facing":"north","lit":"false"},"id":11156},{"properties":{"facing":"south","lit":"true"},"id":11157},{"properties":{"facing":"south","lit":"false"},"id":11158},{"properties":{"facing":"west","lit":"true"},"id":11159},{"properties":{"facing":"west","lit":"false"},"id":11160},{"properties":{"facing":"east","lit":"true"},"id":11161},{"properties":{"facing":"east","lit":"false"},"id":11162}]},"cartography_table":{"states":[{"id":11163}]},"fletching_table":{"states":[{"id":11164}]},"grindstone":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"]},"states":[{"properties":{"face":"floor","facing":"north"},"id":11165},{"properties":{"face":"floor","facing":"south"},"id":11166},{"properties":{"face":"floor","facing":"west"},"id":11167},{"properties":{"face":"floor","facing":"east"},"id":11168},{"properties":{"face":"wall","facing":"north"},"id":11169},{"properties":{"face":"wall","facing":"south"},"id":11170},{"properties":{"face":"wall","facing":"west"},"id":11171},{"properties":{"face":"wall","facing":"east"},"id":11172},{"properties":{"face":"ceiling","facing":"north"},"id":11173},{"properties":{"face":"ceiling","facing":"south"},"id":11174},{"properties":{"face":"ceiling","facing":"west"},"id":11175},{"properties":{"face":"ceiling","facing":"east"},"id":11176}]},"lectern":{"properties":{"facing":["north","south","west","east"],"has_book":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","has_book":"true","powered":"true"},"id":11177},{"properties":{"facing":"north","has_book":"true","powered":"false"},"id":11178},{"properties":{"facing":"north","has_book":"false","powered":"true"},"id":11179},{"properties":{"facing":"north","has_book":"false","powered":"false"},"id":11180},{"properties":{"facing":"south","has_book":"true","powered":"true"},"id":11181},{"properties":{"facing":"south","has_book":"true","powered":"false"},"id":11182},{"properties":{"facing":"south","has_book":"false","powered":"true"},"id":11183},{"properties":{"facing":"south","has_book":"false","powered":"false"},"id":11184},{"properties":{"facing":"west","has_book":"true","powered":"true"},"id":11185},{"properties":{"facing":"west","has_book":"true","powered":"false"},"id":11186},{"properties":{"facing":"west","has_book":"false","powered":"true"},"id":11187},{"properties":{"facing":"west","has_book":"false","powered":"false"},"id":11188},{"properties":{"facing":"east","has_book":"true","powered":"true"},"id":11189},{"properties":{"facing":"east","has_book":"true","powered":"false"},"id":11190},{"properties":{"facing":"east","has_book":"false","powered":"true"},"id":11191},{"properties":{"facing":"east","has_book":"false","powered":"false"},"id":11192}]},"smithing_table":{"states":[{"id":11193}]},"stonecutter":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":11194},{"properties":{"facing":"south"},"id":11195},{"properties":{"facing":"west"},"id":11196},{"properties":{"facing":"east"},"id":11197}]},"bell":{"properties":{"attachment":["floor","ceiling","single_wall","double_wall"],"facing":["north","south","west","east"]},"states":[{"properties":{"attachment":"floor","facing":"north"},"id":11198},{"properties":{"attachment":"floor","facing":"south"},"id":11199},{"properties":{"attachment":"floor","facing":"west"},"id":11200},{"properties":{"attachment":"floor","facing":"east"},"id":11201},{"properties":{"attachment":"ceiling","facing":"north"},"id":11202},{"properties":{"attachment":"ceiling","facing":"south"},"id":11203},{"properties":{"attachment":"ceiling","facing":"west"},"id":11204},{"properties":{"attachment":"ceiling","facing":"east"},"id":11205},{"properties":{"attachment":"single_wall","facing":"north"},"id":11206},{"properties":{"attachment":"single_wall","facing":"south"},"id":11207},{"properties":{"attachment":"single_wall","facing":"west"},"id":11208},{"properties":{"attachment":"single_wall","facing":"east"},"id":11209},{"properties":{"attachment":"double_wall","facing":"north"},"id":11210},{"properties":{"attachment":"double_wall","facing":"south"},"id":11211},{"properties":{"attachment":"double_wall","facing":"west"},"id":11212},{"properties":{"attachment":"double_wall","facing":"east"},"id":11213}]},"lantern":{"properties":{"hanging":["true","false"]},"states":[{"properties":{"hanging":"true"},"id":11214},{"properties":{"hanging":"false"},"id":11215}]},"campfire":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"],"signal_fire":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11216},{"properties":{"facing":"north","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11217},{"properties":{"facing":"north","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11218},{"properties":{"facing":"north","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11219},{"properties":{"facing":"north","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11220},{"properties":{"facing":"north","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11221},{"properties":{"facing":"north","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11222},{"properties":{"facing":"north","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11223},{"properties":{"facing":"south","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11224},{"properties":{"facing":"south","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11225},{"properties":{"facing":"south","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11226},{"properties":{"facing":"south","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11227},{"properties":{"facing":"south","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11228},{"properties":{"facing":"south","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11229},{"properties":{"facing":"south","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11230},{"properties":{"facing":"south","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11231},{"properties":{"facing":"west","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11232},{"properties":{"facing":"west","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11233},{"properties":{"facing":"west","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11234},{"properties":{"facing":"west","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11235},{"properties":{"facing":"west","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11236},{"properties":{"facing":"west","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11237},{"properties":{"facing":"west","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11238},{"properties":{"facing":"west","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11239},{"properties":{"facing":"east","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11240},{"properties":{"facing":"east","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11241},{"properties":{"facing":"east","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11242},{"properties":{"facing":"east","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11243},{"properties":{"facing":"east","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11244},{"properties":{"facing":"east","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11245},{"properties":{"facing":"east","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11246},{"properties":{"facing":"east","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11247}]},"sweet_berry_bush":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":11248},{"properties":{"age":"1"},"id":11249},{"properties":{"age":"2"},"id":11250},{"properties":{"age":"3"},"id":11251}]},"structure_block":{"properties":{"mode":["save","load","corner","data"]},"states":[{"properties":{"mode":"save"},"id":11252},{"properties":{"mode":"load"},"id":11253},{"properties":{"mode":"corner"},"id":11254},{"properties":{"mode":"data"},"id":11255}]},"jigsaw":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":11256},{"properties":{"facing":"east"},"id":11257},{"properties":{"facing":"south"},"id":11258},{"properties":{"facing":"west"},"id":11259},{"properties":{"facing":"up"},"id":11260},{"properties":{"facing":"down"},"id":11261}]},"composter":{"properties":{"level":["0","1","2","3","4","5","6","7","8"]},"states":[{"properties":{"level":"0"},"id":11262},{"properties":{"level":"1"},"id":11263},{"properties":{"level":"2"},"id":11264},{"properties":{"level":"3"},"id":11265},{"properties":{"level":"4"},"id":11266},{"properties":{"level":"5"},"id":11267},{"properties":{"level":"6"},"id":11268},{"properties":{"level":"7"},"id":11269},{"properties":{"level":"8"},"id":11270}]}}} \ 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 43fcd22ae..d4e0aa37b 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":{"protocol_id":0,"entries":{"ambient.cave":{"protocol_id":0},"ambient.underwater.enter":{"protocol_id":1},"ambient.underwater.exit":{"protocol_id":2},"ambient.underwater.loop":{"protocol_id":3},"ambient.underwater.loop.additions":{"protocol_id":4},"ambient.underwater.loop.additions.rare":{"protocol_id":5},"ambient.underwater.loop.additions.ultra_rare":{"protocol_id":6},"block.anvil.break":{"protocol_id":7},"block.anvil.destroy":{"protocol_id":8},"block.anvil.fall":{"protocol_id":9},"block.anvil.hit":{"protocol_id":10},"block.anvil.land":{"protocol_id":11},"block.anvil.place":{"protocol_id":12},"block.anvil.step":{"protocol_id":13},"block.anvil.use":{"protocol_id":14},"item.armor.equip_chain":{"protocol_id":15},"item.armor.equip_diamond":{"protocol_id":16},"item.armor.equip_elytra":{"protocol_id":17},"item.armor.equip_generic":{"protocol_id":18},"item.armor.equip_gold":{"protocol_id":19},"item.armor.equip_iron":{"protocol_id":20},"item.armor.equip_leather":{"protocol_id":21},"item.armor.equip_turtle":{"protocol_id":22},"entity.armor_stand.break":{"protocol_id":23},"entity.armor_stand.fall":{"protocol_id":24},"entity.armor_stand.hit":{"protocol_id":25},"entity.armor_stand.place":{"protocol_id":26},"entity.arrow.hit":{"protocol_id":27},"entity.arrow.hit_player":{"protocol_id":28},"entity.arrow.shoot":{"protocol_id":29},"item.axe.strip":{"protocol_id":30},"block.bamboo.break":{"protocol_id":31},"block.bamboo.fall":{"protocol_id":32},"block.bamboo.hit":{"protocol_id":33},"block.bamboo.place":{"protocol_id":34},"block.bamboo.step":{"protocol_id":35},"block.bamboo_sapling.break":{"protocol_id":36},"block.bamboo_sapling.hit":{"protocol_id":37},"block.bamboo_sapling.place":{"protocol_id":38},"block.barrel.close":{"protocol_id":39},"block.barrel.open":{"protocol_id":40},"entity.bat.ambient":{"protocol_id":41},"entity.bat.death":{"protocol_id":42},"entity.bat.hurt":{"protocol_id":43},"entity.bat.loop":{"protocol_id":44},"entity.bat.takeoff":{"protocol_id":45},"block.beacon.activate":{"protocol_id":46},"block.beacon.ambient":{"protocol_id":47},"block.beacon.deactivate":{"protocol_id":48},"block.beacon.power_select":{"protocol_id":49},"block.bell.use":{"protocol_id":50},"block.bell.resonate":{"protocol_id":51},"entity.blaze.ambient":{"protocol_id":52},"entity.blaze.burn":{"protocol_id":53},"entity.blaze.death":{"protocol_id":54},"entity.blaze.hurt":{"protocol_id":55},"entity.blaze.shoot":{"protocol_id":56},"entity.boat.paddle_land":{"protocol_id":57},"entity.boat.paddle_water":{"protocol_id":58},"item.book.page_turn":{"protocol_id":59},"item.book.put":{"protocol_id":60},"entity.fishing_bobber.retrieve":{"protocol_id":61},"entity.fishing_bobber.splash":{"protocol_id":62},"entity.fishing_bobber.throw":{"protocol_id":63},"block.blastfurnace.fire_crackle":{"protocol_id":64},"item.bottle.empty":{"protocol_id":65},"item.bottle.fill":{"protocol_id":66},"item.bottle.fill_dragonbreath":{"protocol_id":67},"block.brewing_stand.brew":{"protocol_id":68},"block.bubble_column.bubble_pop":{"protocol_id":69},"block.bubble_column.upwards_ambient":{"protocol_id":70},"block.bubble_column.upwards_inside":{"protocol_id":71},"block.bubble_column.whirlpool_ambient":{"protocol_id":72},"block.bubble_column.whirlpool_inside":{"protocol_id":73},"item.bucket.empty":{"protocol_id":74},"item.bucket.empty_fish":{"protocol_id":75},"item.bucket.empty_lava":{"protocol_id":76},"item.bucket.fill":{"protocol_id":77},"item.bucket.fill_fish":{"protocol_id":78},"item.bucket.fill_lava":{"protocol_id":79},"block.campfire.crackle":{"protocol_id":80},"entity.cat.ambient":{"protocol_id":81},"entity.cat.stray_ambient":{"protocol_id":82},"entity.cat.death":{"protocol_id":83},"entity.cat.eat":{"protocol_id":84},"entity.cat.hiss":{"protocol_id":85},"entity.cat.beg_for_food":{"protocol_id":86},"entity.cat.hurt":{"protocol_id":87},"entity.cat.purr":{"protocol_id":88},"entity.cat.purreow":{"protocol_id":89},"block.chest.close":{"protocol_id":90},"block.chest.locked":{"protocol_id":91},"block.chest.open":{"protocol_id":92},"entity.chicken.ambient":{"protocol_id":93},"entity.chicken.death":{"protocol_id":94},"entity.chicken.egg":{"protocol_id":95},"entity.chicken.hurt":{"protocol_id":96},"entity.chicken.step":{"protocol_id":97},"block.chorus_flower.death":{"protocol_id":98},"block.chorus_flower.grow":{"protocol_id":99},"item.chorus_fruit.teleport":{"protocol_id":100},"block.wool.break":{"protocol_id":101},"block.wool.fall":{"protocol_id":102},"block.wool.hit":{"protocol_id":103},"block.wool.place":{"protocol_id":104},"block.wool.step":{"protocol_id":105},"entity.cod.ambient":{"protocol_id":106},"entity.cod.death":{"protocol_id":107},"entity.cod.flop":{"protocol_id":108},"entity.cod.hurt":{"protocol_id":109},"block.comparator.click":{"protocol_id":110},"block.composter.empty":{"protocol_id":111},"block.composter.fill":{"protocol_id":112},"block.composter.fill_success":{"protocol_id":113},"block.composter.ready":{"protocol_id":114},"block.conduit.activate":{"protocol_id":115},"block.conduit.ambient":{"protocol_id":116},"block.conduit.ambient.short":{"protocol_id":117},"block.conduit.attack.target":{"protocol_id":118},"block.conduit.deactivate":{"protocol_id":119},"entity.cow.ambient":{"protocol_id":120},"entity.cow.death":{"protocol_id":121},"entity.cow.hurt":{"protocol_id":122},"entity.cow.milk":{"protocol_id":123},"entity.cow.step":{"protocol_id":124},"entity.creeper.death":{"protocol_id":125},"entity.creeper.hurt":{"protocol_id":126},"entity.creeper.primed":{"protocol_id":127},"block.crop.break":{"protocol_id":128},"item.crop.plant":{"protocol_id":129},"item.crossbow.hit":{"protocol_id":130},"item.crossbow.loading_end":{"protocol_id":131},"item.crossbow.loading_middle":{"protocol_id":132},"item.crossbow.loading_start":{"protocol_id":133},"item.crossbow.quick_charge_1":{"protocol_id":134},"item.crossbow.quick_charge_2":{"protocol_id":135},"item.crossbow.quick_charge_3":{"protocol_id":136},"item.crossbow.shoot":{"protocol_id":137},"block.dispenser.dispense":{"protocol_id":138},"block.dispenser.fail":{"protocol_id":139},"block.dispenser.launch":{"protocol_id":140},"entity.dolphin.ambient":{"protocol_id":141},"entity.dolphin.ambient_water":{"protocol_id":142},"entity.dolphin.attack":{"protocol_id":143},"entity.dolphin.death":{"protocol_id":144},"entity.dolphin.eat":{"protocol_id":145},"entity.dolphin.hurt":{"protocol_id":146},"entity.dolphin.jump":{"protocol_id":147},"entity.dolphin.play":{"protocol_id":148},"entity.dolphin.splash":{"protocol_id":149},"entity.dolphin.swim":{"protocol_id":150},"entity.donkey.ambient":{"protocol_id":151},"entity.donkey.angry":{"protocol_id":152},"entity.donkey.chest":{"protocol_id":153},"entity.donkey.death":{"protocol_id":154},"entity.donkey.hurt":{"protocol_id":155},"entity.drowned.ambient":{"protocol_id":156},"entity.drowned.ambient_water":{"protocol_id":157},"entity.drowned.death":{"protocol_id":158},"entity.drowned.death_water":{"protocol_id":159},"entity.drowned.hurt":{"protocol_id":160},"entity.drowned.hurt_water":{"protocol_id":161},"entity.drowned.shoot":{"protocol_id":162},"entity.drowned.step":{"protocol_id":163},"entity.drowned.swim":{"protocol_id":164},"entity.egg.throw":{"protocol_id":165},"entity.elder_guardian.ambient":{"protocol_id":166},"entity.elder_guardian.ambient_land":{"protocol_id":167},"entity.elder_guardian.curse":{"protocol_id":168},"entity.elder_guardian.death":{"protocol_id":169},"entity.elder_guardian.death_land":{"protocol_id":170},"entity.elder_guardian.flop":{"protocol_id":171},"entity.elder_guardian.hurt":{"protocol_id":172},"entity.elder_guardian.hurt_land":{"protocol_id":173},"item.elytra.flying":{"protocol_id":174},"block.enchantment_table.use":{"protocol_id":175},"block.ender_chest.close":{"protocol_id":176},"block.ender_chest.open":{"protocol_id":177},"entity.ender_dragon.ambient":{"protocol_id":178},"entity.ender_dragon.death":{"protocol_id":179},"entity.dragon_fireball.explode":{"protocol_id":180},"entity.ender_dragon.flap":{"protocol_id":181},"entity.ender_dragon.growl":{"protocol_id":182},"entity.ender_dragon.hurt":{"protocol_id":183},"entity.ender_dragon.shoot":{"protocol_id":184},"entity.ender_eye.death":{"protocol_id":185},"entity.ender_eye.launch":{"protocol_id":186},"entity.enderman.ambient":{"protocol_id":187},"entity.enderman.death":{"protocol_id":188},"entity.enderman.hurt":{"protocol_id":189},"entity.enderman.scream":{"protocol_id":190},"entity.enderman.stare":{"protocol_id":191},"entity.enderman.teleport":{"protocol_id":192},"entity.endermite.ambient":{"protocol_id":193},"entity.endermite.death":{"protocol_id":194},"entity.endermite.hurt":{"protocol_id":195},"entity.endermite.step":{"protocol_id":196},"entity.ender_pearl.throw":{"protocol_id":197},"block.end_gateway.spawn":{"protocol_id":198},"block.end_portal_frame.fill":{"protocol_id":199},"block.end_portal.spawn":{"protocol_id":200},"entity.evoker.ambient":{"protocol_id":201},"entity.evoker.cast_spell":{"protocol_id":202},"entity.evoker.celebrate":{"protocol_id":203},"entity.evoker.death":{"protocol_id":204},"entity.evoker_fangs.attack":{"protocol_id":205},"entity.evoker.hurt":{"protocol_id":206},"entity.evoker.prepare_attack":{"protocol_id":207},"entity.evoker.prepare_summon":{"protocol_id":208},"entity.evoker.prepare_wololo":{"protocol_id":209},"entity.experience_bottle.throw":{"protocol_id":210},"entity.experience_orb.pickup":{"protocol_id":211},"block.fence_gate.close":{"protocol_id":212},"block.fence_gate.open":{"protocol_id":213},"item.firecharge.use":{"protocol_id":214},"entity.firework_rocket.blast":{"protocol_id":215},"entity.firework_rocket.blast_far":{"protocol_id":216},"entity.firework_rocket.large_blast":{"protocol_id":217},"entity.firework_rocket.large_blast_far":{"protocol_id":218},"entity.firework_rocket.launch":{"protocol_id":219},"entity.firework_rocket.shoot":{"protocol_id":220},"entity.firework_rocket.twinkle":{"protocol_id":221},"entity.firework_rocket.twinkle_far":{"protocol_id":222},"block.fire.ambient":{"protocol_id":223},"block.fire.extinguish":{"protocol_id":224},"entity.fish.swim":{"protocol_id":225},"item.flintandsteel.use":{"protocol_id":226},"entity.fox.aggro":{"protocol_id":227},"entity.fox.ambient":{"protocol_id":228},"entity.fox.bite":{"protocol_id":229},"entity.fox.death":{"protocol_id":230},"entity.fox.eat":{"protocol_id":231},"entity.fox.hurt":{"protocol_id":232},"entity.fox.screech":{"protocol_id":233},"entity.fox.sleep":{"protocol_id":234},"entity.fox.sniff":{"protocol_id":235},"entity.fox.spit":{"protocol_id":236},"block.furnace.fire_crackle":{"protocol_id":237},"entity.generic.big_fall":{"protocol_id":238},"entity.generic.burn":{"protocol_id":239},"entity.generic.death":{"protocol_id":240},"entity.generic.drink":{"protocol_id":241},"entity.generic.eat":{"protocol_id":242},"entity.generic.explode":{"protocol_id":243},"entity.generic.extinguish_fire":{"protocol_id":244},"entity.generic.hurt":{"protocol_id":245},"entity.generic.small_fall":{"protocol_id":246},"entity.generic.splash":{"protocol_id":247},"entity.generic.swim":{"protocol_id":248},"entity.ghast.ambient":{"protocol_id":249},"entity.ghast.death":{"protocol_id":250},"entity.ghast.hurt":{"protocol_id":251},"entity.ghast.scream":{"protocol_id":252},"entity.ghast.shoot":{"protocol_id":253},"entity.ghast.warn":{"protocol_id":254},"block.glass.break":{"protocol_id":255},"block.glass.fall":{"protocol_id":256},"block.glass.hit":{"protocol_id":257},"block.glass.place":{"protocol_id":258},"block.glass.step":{"protocol_id":259},"block.grass.break":{"protocol_id":260},"block.grass.fall":{"protocol_id":261},"block.grass.hit":{"protocol_id":262},"block.grass.place":{"protocol_id":263},"block.grass.step":{"protocol_id":264},"block.wet_grass.break":{"protocol_id":265},"block.wet_grass.fall":{"protocol_id":266},"block.wet_grass.hit":{"protocol_id":267},"block.wet_grass.place":{"protocol_id":268},"block.wet_grass.step":{"protocol_id":269},"block.coral_block.break":{"protocol_id":270},"block.coral_block.fall":{"protocol_id":271},"block.coral_block.hit":{"protocol_id":272},"block.coral_block.place":{"protocol_id":273},"block.coral_block.step":{"protocol_id":274},"block.gravel.break":{"protocol_id":275},"block.gravel.fall":{"protocol_id":276},"block.gravel.hit":{"protocol_id":277},"block.gravel.place":{"protocol_id":278},"block.gravel.step":{"protocol_id":279},"block.grindstone.use":{"protocol_id":280},"entity.guardian.ambient":{"protocol_id":281},"entity.guardian.ambient_land":{"protocol_id":282},"entity.guardian.attack":{"protocol_id":283},"entity.guardian.death":{"protocol_id":284},"entity.guardian.death_land":{"protocol_id":285},"entity.guardian.flop":{"protocol_id":286},"entity.guardian.hurt":{"protocol_id":287},"entity.guardian.hurt_land":{"protocol_id":288},"item.hoe.till":{"protocol_id":289},"entity.horse.ambient":{"protocol_id":290},"entity.horse.angry":{"protocol_id":291},"entity.horse.armor":{"protocol_id":292},"entity.horse.breathe":{"protocol_id":293},"entity.horse.death":{"protocol_id":294},"entity.horse.eat":{"protocol_id":295},"entity.horse.gallop":{"protocol_id":296},"entity.horse.hurt":{"protocol_id":297},"entity.horse.jump":{"protocol_id":298},"entity.horse.land":{"protocol_id":299},"entity.horse.saddle":{"protocol_id":300},"entity.horse.step":{"protocol_id":301},"entity.horse.step_wood":{"protocol_id":302},"entity.hostile.big_fall":{"protocol_id":303},"entity.hostile.death":{"protocol_id":304},"entity.hostile.hurt":{"protocol_id":305},"entity.hostile.small_fall":{"protocol_id":306},"entity.hostile.splash":{"protocol_id":307},"entity.hostile.swim":{"protocol_id":308},"entity.husk.ambient":{"protocol_id":309},"entity.husk.converted_to_zombie":{"protocol_id":310},"entity.husk.death":{"protocol_id":311},"entity.husk.hurt":{"protocol_id":312},"entity.husk.step":{"protocol_id":313},"entity.ravager.ambient":{"protocol_id":314},"entity.ravager.attack":{"protocol_id":315},"entity.ravager.celebrate":{"protocol_id":316},"entity.ravager.death":{"protocol_id":317},"entity.ravager.hurt":{"protocol_id":318},"entity.ravager.step":{"protocol_id":319},"entity.ravager.stunned":{"protocol_id":320},"entity.ravager.roar":{"protocol_id":321},"entity.illusioner.ambient":{"protocol_id":322},"entity.illusioner.cast_spell":{"protocol_id":323},"entity.illusioner.death":{"protocol_id":324},"entity.illusioner.hurt":{"protocol_id":325},"entity.illusioner.mirror_move":{"protocol_id":326},"entity.illusioner.prepare_blindness":{"protocol_id":327},"entity.illusioner.prepare_mirror":{"protocol_id":328},"block.iron_door.close":{"protocol_id":329},"block.iron_door.open":{"protocol_id":330},"entity.iron_golem.attack":{"protocol_id":331},"entity.iron_golem.death":{"protocol_id":332},"entity.iron_golem.hurt":{"protocol_id":333},"entity.iron_golem.step":{"protocol_id":334},"block.iron_trapdoor.close":{"protocol_id":335},"block.iron_trapdoor.open":{"protocol_id":336},"entity.item_frame.add_item":{"protocol_id":337},"entity.item_frame.break":{"protocol_id":338},"entity.item_frame.place":{"protocol_id":339},"entity.item_frame.remove_item":{"protocol_id":340},"entity.item_frame.rotate_item":{"protocol_id":341},"entity.item.break":{"protocol_id":342},"entity.item.pickup":{"protocol_id":343},"block.ladder.break":{"protocol_id":344},"block.ladder.fall":{"protocol_id":345},"block.ladder.hit":{"protocol_id":346},"block.ladder.place":{"protocol_id":347},"block.ladder.step":{"protocol_id":348},"block.lantern.break":{"protocol_id":349},"block.lantern.fall":{"protocol_id":350},"block.lantern.hit":{"protocol_id":351},"block.lantern.place":{"protocol_id":352},"block.lantern.step":{"protocol_id":353},"block.lava.ambient":{"protocol_id":354},"block.lava.extinguish":{"protocol_id":355},"block.lava.pop":{"protocol_id":356},"entity.leash_knot.break":{"protocol_id":357},"entity.leash_knot.place":{"protocol_id":358},"block.lever.click":{"protocol_id":359},"entity.lightning_bolt.impact":{"protocol_id":360},"entity.lightning_bolt.thunder":{"protocol_id":361},"entity.lingering_potion.throw":{"protocol_id":362},"entity.llama.ambient":{"protocol_id":363},"entity.llama.angry":{"protocol_id":364},"entity.llama.chest":{"protocol_id":365},"entity.llama.death":{"protocol_id":366},"entity.llama.eat":{"protocol_id":367},"entity.llama.hurt":{"protocol_id":368},"entity.llama.spit":{"protocol_id":369},"entity.llama.step":{"protocol_id":370},"entity.llama.swag":{"protocol_id":371},"entity.magma_cube.death":{"protocol_id":372},"entity.magma_cube.hurt":{"protocol_id":373},"entity.magma_cube.jump":{"protocol_id":374},"entity.magma_cube.squish":{"protocol_id":375},"block.metal.break":{"protocol_id":376},"block.metal.fall":{"protocol_id":377},"block.metal.hit":{"protocol_id":378},"block.metal.place":{"protocol_id":379},"block.metal_pressure_plate.click_off":{"protocol_id":380},"block.metal_pressure_plate.click_on":{"protocol_id":381},"block.metal.step":{"protocol_id":382},"entity.minecart.inside":{"protocol_id":383},"entity.minecart.riding":{"protocol_id":384},"entity.mooshroom.convert":{"protocol_id":385},"entity.mooshroom.eat":{"protocol_id":386},"entity.mooshroom.milk":{"protocol_id":387},"entity.mooshroom.suspicious_milk":{"protocol_id":388},"entity.mooshroom.shear":{"protocol_id":389},"entity.mule.ambient":{"protocol_id":390},"entity.mule.chest":{"protocol_id":391},"entity.mule.death":{"protocol_id":392},"entity.mule.hurt":{"protocol_id":393},"music.creative":{"protocol_id":394},"music.credits":{"protocol_id":395},"music.dragon":{"protocol_id":396},"music.end":{"protocol_id":397},"music.game":{"protocol_id":398},"music.menu":{"protocol_id":399},"music.nether":{"protocol_id":400},"music.under_water":{"protocol_id":401},"block.nether_wart.break":{"protocol_id":402},"item.nether_wart.plant":{"protocol_id":403},"block.note_block.basedrum":{"protocol_id":404},"block.note_block.bass":{"protocol_id":405},"block.note_block.bell":{"protocol_id":406},"block.note_block.chime":{"protocol_id":407},"block.note_block.flute":{"protocol_id":408},"block.note_block.guitar":{"protocol_id":409},"block.note_block.harp":{"protocol_id":410},"block.note_block.hat":{"protocol_id":411},"block.note_block.pling":{"protocol_id":412},"block.note_block.snare":{"protocol_id":413},"block.note_block.xylophone":{"protocol_id":414},"block.note_block.iron_xylophone":{"protocol_id":415},"block.note_block.cow_bell":{"protocol_id":416},"block.note_block.didgeridoo":{"protocol_id":417},"block.note_block.bit":{"protocol_id":418},"block.note_block.banjo":{"protocol_id":419},"entity.ocelot.hurt":{"protocol_id":420},"entity.ocelot.ambient":{"protocol_id":421},"entity.ocelot.death":{"protocol_id":422},"entity.painting.break":{"protocol_id":423},"entity.painting.place":{"protocol_id":424},"entity.panda.pre_sneeze":{"protocol_id":425},"entity.panda.sneeze":{"protocol_id":426},"entity.panda.ambient":{"protocol_id":427},"entity.panda.death":{"protocol_id":428},"entity.panda.eat":{"protocol_id":429},"entity.panda.step":{"protocol_id":430},"entity.panda.cant_breed":{"protocol_id":431},"entity.panda.aggressive_ambient":{"protocol_id":432},"entity.panda.worried_ambient":{"protocol_id":433},"entity.panda.hurt":{"protocol_id":434},"entity.panda.bite":{"protocol_id":435},"entity.parrot.ambient":{"protocol_id":436},"entity.parrot.death":{"protocol_id":437},"entity.parrot.eat":{"protocol_id":438},"entity.parrot.fly":{"protocol_id":439},"entity.parrot.hurt":{"protocol_id":440},"entity.parrot.imitate.blaze":{"protocol_id":441},"entity.parrot.imitate.creeper":{"protocol_id":442},"entity.parrot.imitate.drowned":{"protocol_id":443},"entity.parrot.imitate.elder_guardian":{"protocol_id":444},"entity.parrot.imitate.ender_dragon":{"protocol_id":445},"entity.parrot.imitate.enderman":{"protocol_id":446},"entity.parrot.imitate.endermite":{"protocol_id":447},"entity.parrot.imitate.evoker":{"protocol_id":448},"entity.parrot.imitate.ghast":{"protocol_id":449},"entity.parrot.imitate.guardian":{"protocol_id":450},"entity.parrot.imitate.husk":{"protocol_id":451},"entity.parrot.imitate.illusioner":{"protocol_id":452},"entity.parrot.imitate.magma_cube":{"protocol_id":453},"entity.parrot.imitate.panda":{"protocol_id":454},"entity.parrot.imitate.phantom":{"protocol_id":455},"entity.parrot.imitate.pillager":{"protocol_id":456},"entity.parrot.imitate.polar_bear":{"protocol_id":457},"entity.parrot.imitate.ravager":{"protocol_id":458},"entity.parrot.imitate.shulker":{"protocol_id":459},"entity.parrot.imitate.silverfish":{"protocol_id":460},"entity.parrot.imitate.skeleton":{"protocol_id":461},"entity.parrot.imitate.slime":{"protocol_id":462},"entity.parrot.imitate.spider":{"protocol_id":463},"entity.parrot.imitate.stray":{"protocol_id":464},"entity.parrot.imitate.vex":{"protocol_id":465},"entity.parrot.imitate.vindicator":{"protocol_id":466},"entity.parrot.imitate.witch":{"protocol_id":467},"entity.parrot.imitate.wither":{"protocol_id":468},"entity.parrot.imitate.wither_skeleton":{"protocol_id":469},"entity.parrot.imitate.wolf":{"protocol_id":470},"entity.parrot.imitate.zombie":{"protocol_id":471},"entity.parrot.imitate.zombie_pigman":{"protocol_id":472},"entity.parrot.imitate.zombie_villager":{"protocol_id":473},"entity.parrot.step":{"protocol_id":474},"entity.phantom.ambient":{"protocol_id":475},"entity.phantom.bite":{"protocol_id":476},"entity.phantom.death":{"protocol_id":477},"entity.phantom.flap":{"protocol_id":478},"entity.phantom.hurt":{"protocol_id":479},"entity.phantom.swoop":{"protocol_id":480},"entity.pig.ambient":{"protocol_id":481},"entity.pig.death":{"protocol_id":482},"entity.pig.hurt":{"protocol_id":483},"entity.pig.saddle":{"protocol_id":484},"entity.pig.step":{"protocol_id":485},"entity.pillager.ambient":{"protocol_id":486},"entity.pillager.celebrate":{"protocol_id":487},"entity.pillager.death":{"protocol_id":488},"entity.pillager.hurt":{"protocol_id":489},"block.piston.contract":{"protocol_id":490},"block.piston.extend":{"protocol_id":491},"entity.player.attack.crit":{"protocol_id":492},"entity.player.attack.knockback":{"protocol_id":493},"entity.player.attack.nodamage":{"protocol_id":494},"entity.player.attack.strong":{"protocol_id":495},"entity.player.attack.sweep":{"protocol_id":496},"entity.player.attack.weak":{"protocol_id":497},"entity.player.big_fall":{"protocol_id":498},"entity.player.breath":{"protocol_id":499},"entity.player.burp":{"protocol_id":500},"entity.player.death":{"protocol_id":501},"entity.player.hurt":{"protocol_id":502},"entity.player.hurt_drown":{"protocol_id":503},"entity.player.hurt_on_fire":{"protocol_id":504},"entity.player.hurt_sweet_berry_bush":{"protocol_id":505},"entity.player.levelup":{"protocol_id":506},"entity.player.small_fall":{"protocol_id":507},"entity.player.splash":{"protocol_id":508},"entity.player.splash.high_speed":{"protocol_id":509},"entity.player.swim":{"protocol_id":510},"entity.polar_bear.ambient":{"protocol_id":511},"entity.polar_bear.ambient_baby":{"protocol_id":512},"entity.polar_bear.death":{"protocol_id":513},"entity.polar_bear.hurt":{"protocol_id":514},"entity.polar_bear.step":{"protocol_id":515},"entity.polar_bear.warning":{"protocol_id":516},"block.portal.ambient":{"protocol_id":517},"block.portal.travel":{"protocol_id":518},"block.portal.trigger":{"protocol_id":519},"entity.puffer_fish.ambient":{"protocol_id":520},"entity.puffer_fish.blow_out":{"protocol_id":521},"entity.puffer_fish.blow_up":{"protocol_id":522},"entity.puffer_fish.death":{"protocol_id":523},"entity.puffer_fish.flop":{"protocol_id":524},"entity.puffer_fish.hurt":{"protocol_id":525},"entity.puffer_fish.sting":{"protocol_id":526},"block.pumpkin.carve":{"protocol_id":527},"entity.rabbit.ambient":{"protocol_id":528},"entity.rabbit.attack":{"protocol_id":529},"entity.rabbit.death":{"protocol_id":530},"entity.rabbit.hurt":{"protocol_id":531},"entity.rabbit.jump":{"protocol_id":532},"event.raid.horn":{"protocol_id":533},"music_disc.11":{"protocol_id":534},"music_disc.13":{"protocol_id":535},"music_disc.blocks":{"protocol_id":536},"music_disc.cat":{"protocol_id":537},"music_disc.chirp":{"protocol_id":538},"music_disc.far":{"protocol_id":539},"music_disc.mall":{"protocol_id":540},"music_disc.mellohi":{"protocol_id":541},"music_disc.stal":{"protocol_id":542},"music_disc.strad":{"protocol_id":543},"music_disc.wait":{"protocol_id":544},"music_disc.ward":{"protocol_id":545},"block.redstone_torch.burnout":{"protocol_id":546},"entity.salmon.ambient":{"protocol_id":547},"entity.salmon.death":{"protocol_id":548},"entity.salmon.flop":{"protocol_id":549},"entity.salmon.hurt":{"protocol_id":550},"block.sand.break":{"protocol_id":551},"block.sand.fall":{"protocol_id":552},"block.sand.hit":{"protocol_id":553},"block.sand.place":{"protocol_id":554},"block.sand.step":{"protocol_id":555},"block.scaffolding.break":{"protocol_id":556},"block.scaffolding.fall":{"protocol_id":557},"block.scaffolding.hit":{"protocol_id":558},"block.scaffolding.place":{"protocol_id":559},"block.scaffolding.step":{"protocol_id":560},"entity.sheep.ambient":{"protocol_id":561},"entity.sheep.death":{"protocol_id":562},"entity.sheep.hurt":{"protocol_id":563},"entity.sheep.shear":{"protocol_id":564},"entity.sheep.step":{"protocol_id":565},"item.shield.block":{"protocol_id":566},"item.shield.break":{"protocol_id":567},"item.shovel.flatten":{"protocol_id":568},"entity.shulker.ambient":{"protocol_id":569},"block.shulker_box.close":{"protocol_id":570},"block.shulker_box.open":{"protocol_id":571},"entity.shulker_bullet.hit":{"protocol_id":572},"entity.shulker_bullet.hurt":{"protocol_id":573},"entity.shulker.close":{"protocol_id":574},"entity.shulker.death":{"protocol_id":575},"entity.shulker.hurt":{"protocol_id":576},"entity.shulker.hurt_closed":{"protocol_id":577},"entity.shulker.open":{"protocol_id":578},"entity.shulker.shoot":{"protocol_id":579},"entity.shulker.teleport":{"protocol_id":580},"entity.silverfish.ambient":{"protocol_id":581},"entity.silverfish.death":{"protocol_id":582},"entity.silverfish.hurt":{"protocol_id":583},"entity.silverfish.step":{"protocol_id":584},"entity.skeleton.ambient":{"protocol_id":585},"entity.skeleton.death":{"protocol_id":586},"entity.skeleton_horse.ambient":{"protocol_id":587},"entity.skeleton_horse.death":{"protocol_id":588},"entity.skeleton_horse.hurt":{"protocol_id":589},"entity.skeleton_horse.swim":{"protocol_id":590},"entity.skeleton_horse.ambient_water":{"protocol_id":591},"entity.skeleton_horse.gallop_water":{"protocol_id":592},"entity.skeleton_horse.jump_water":{"protocol_id":593},"entity.skeleton_horse.step_water":{"protocol_id":594},"entity.skeleton.hurt":{"protocol_id":595},"entity.skeleton.shoot":{"protocol_id":596},"entity.skeleton.step":{"protocol_id":597},"entity.slime.attack":{"protocol_id":598},"entity.slime.death":{"protocol_id":599},"entity.slime.hurt":{"protocol_id":600},"entity.slime.jump":{"protocol_id":601},"entity.slime.squish":{"protocol_id":602},"block.slime_block.break":{"protocol_id":603},"block.slime_block.fall":{"protocol_id":604},"block.slime_block.hit":{"protocol_id":605},"block.slime_block.place":{"protocol_id":606},"block.slime_block.step":{"protocol_id":607},"entity.magma_cube.death_small":{"protocol_id":608},"entity.magma_cube.hurt_small":{"protocol_id":609},"entity.magma_cube.squish_small":{"protocol_id":610},"entity.slime.death_small":{"protocol_id":611},"entity.slime.hurt_small":{"protocol_id":612},"entity.slime.jump_small":{"protocol_id":613},"entity.slime.squish_small":{"protocol_id":614},"block.smoker.smoke":{"protocol_id":615},"entity.snowball.throw":{"protocol_id":616},"block.snow.break":{"protocol_id":617},"block.snow.fall":{"protocol_id":618},"entity.snow_golem.ambient":{"protocol_id":619},"entity.snow_golem.death":{"protocol_id":620},"entity.snow_golem.hurt":{"protocol_id":621},"entity.snow_golem.shoot":{"protocol_id":622},"block.snow.hit":{"protocol_id":623},"block.snow.place":{"protocol_id":624},"block.snow.step":{"protocol_id":625},"entity.spider.ambient":{"protocol_id":626},"entity.spider.death":{"protocol_id":627},"entity.spider.hurt":{"protocol_id":628},"entity.spider.step":{"protocol_id":629},"entity.splash_potion.break":{"protocol_id":630},"entity.splash_potion.throw":{"protocol_id":631},"entity.squid.ambient":{"protocol_id":632},"entity.squid.death":{"protocol_id":633},"entity.squid.hurt":{"protocol_id":634},"entity.squid.squirt":{"protocol_id":635},"block.stone.break":{"protocol_id":636},"block.stone_button.click_off":{"protocol_id":637},"block.stone_button.click_on":{"protocol_id":638},"block.stone.fall":{"protocol_id":639},"block.stone.hit":{"protocol_id":640},"block.stone.place":{"protocol_id":641},"block.stone_pressure_plate.click_off":{"protocol_id":642},"block.stone_pressure_plate.click_on":{"protocol_id":643},"block.stone.step":{"protocol_id":644},"entity.stray.ambient":{"protocol_id":645},"entity.stray.death":{"protocol_id":646},"entity.stray.hurt":{"protocol_id":647},"entity.stray.step":{"protocol_id":648},"block.sweet_berry_bush.break":{"protocol_id":649},"block.sweet_berry_bush.place":{"protocol_id":650},"item.sweet_berries.pick_from_bush":{"protocol_id":651},"enchant.thorns.hit":{"protocol_id":652},"entity.tnt.primed":{"protocol_id":653},"item.totem.use":{"protocol_id":654},"item.trident.hit":{"protocol_id":655},"item.trident.hit_ground":{"protocol_id":656},"item.trident.return":{"protocol_id":657},"item.trident.riptide_1":{"protocol_id":658},"item.trident.riptide_2":{"protocol_id":659},"item.trident.riptide_3":{"protocol_id":660},"item.trident.throw":{"protocol_id":661},"item.trident.thunder":{"protocol_id":662},"block.tripwire.attach":{"protocol_id":663},"block.tripwire.click_off":{"protocol_id":664},"block.tripwire.click_on":{"protocol_id":665},"block.tripwire.detach":{"protocol_id":666},"entity.tropical_fish.ambient":{"protocol_id":667},"entity.tropical_fish.death":{"protocol_id":668},"entity.tropical_fish.flop":{"protocol_id":669},"entity.tropical_fish.hurt":{"protocol_id":670},"entity.turtle.ambient_land":{"protocol_id":671},"entity.turtle.death":{"protocol_id":672},"entity.turtle.death_baby":{"protocol_id":673},"entity.turtle.egg_break":{"protocol_id":674},"entity.turtle.egg_crack":{"protocol_id":675},"entity.turtle.egg_hatch":{"protocol_id":676},"entity.turtle.hurt":{"protocol_id":677},"entity.turtle.hurt_baby":{"protocol_id":678},"entity.turtle.lay_egg":{"protocol_id":679},"entity.turtle.shamble":{"protocol_id":680},"entity.turtle.shamble_baby":{"protocol_id":681},"entity.turtle.swim":{"protocol_id":682},"ui.button.click":{"protocol_id":683},"ui.loom.select_pattern":{"protocol_id":684},"ui.loom.take_result":{"protocol_id":685},"ui.cartography_table.take_result":{"protocol_id":686},"ui.stonecutter.take_result":{"protocol_id":687},"ui.stonecutter.select_recipe":{"protocol_id":688},"ui.toast.challenge_complete":{"protocol_id":689},"ui.toast.in":{"protocol_id":690},"ui.toast.out":{"protocol_id":691},"entity.vex.ambient":{"protocol_id":692},"entity.vex.charge":{"protocol_id":693},"entity.vex.death":{"protocol_id":694},"entity.vex.hurt":{"protocol_id":695},"entity.villager.ambient":{"protocol_id":696},"entity.villager.celebrate":{"protocol_id":697},"entity.villager.death":{"protocol_id":698},"entity.villager.hurt":{"protocol_id":699},"entity.villager.no":{"protocol_id":700},"entity.villager.trade":{"protocol_id":701},"entity.villager.yes":{"protocol_id":702},"entity.villager.work_armorer":{"protocol_id":703},"entity.villager.work_butcher":{"protocol_id":704},"entity.villager.work_cartographer":{"protocol_id":705},"entity.villager.work_cleric":{"protocol_id":706},"entity.villager.work_farmer":{"protocol_id":707},"entity.villager.work_fisherman":{"protocol_id":708},"entity.villager.work_fletcher":{"protocol_id":709},"entity.villager.work_leatherworker":{"protocol_id":710},"entity.villager.work_librarian":{"protocol_id":711},"entity.villager.work_mason":{"protocol_id":712},"entity.villager.work_shepherd":{"protocol_id":713},"entity.villager.work_toolsmith":{"protocol_id":714},"entity.villager.work_weaponsmith":{"protocol_id":715},"entity.vindicator.ambient":{"protocol_id":716},"entity.vindicator.celebrate":{"protocol_id":717},"entity.vindicator.death":{"protocol_id":718},"entity.vindicator.hurt":{"protocol_id":719},"block.lily_pad.place":{"protocol_id":720},"entity.wandering_trader.ambient":{"protocol_id":721},"entity.wandering_trader.death":{"protocol_id":722},"entity.wandering_trader.disappeared":{"protocol_id":723},"entity.wandering_trader.drink_milk":{"protocol_id":724},"entity.wandering_trader.drink_potion":{"protocol_id":725},"entity.wandering_trader.hurt":{"protocol_id":726},"entity.wandering_trader.no":{"protocol_id":727},"entity.wandering_trader.reappeared":{"protocol_id":728},"entity.wandering_trader.trade":{"protocol_id":729},"entity.wandering_trader.yes":{"protocol_id":730},"block.water.ambient":{"protocol_id":731},"weather.rain":{"protocol_id":732},"weather.rain.above":{"protocol_id":733},"entity.witch.ambient":{"protocol_id":734},"entity.witch.celebrate":{"protocol_id":735},"entity.witch.death":{"protocol_id":736},"entity.witch.drink":{"protocol_id":737},"entity.witch.hurt":{"protocol_id":738},"entity.witch.throw":{"protocol_id":739},"entity.wither.ambient":{"protocol_id":740},"entity.wither.break_block":{"protocol_id":741},"entity.wither.death":{"protocol_id":742},"entity.wither.hurt":{"protocol_id":743},"entity.wither.shoot":{"protocol_id":744},"entity.wither_skeleton.ambient":{"protocol_id":745},"entity.wither_skeleton.death":{"protocol_id":746},"entity.wither_skeleton.hurt":{"protocol_id":747},"entity.wither_skeleton.step":{"protocol_id":748},"entity.wither.spawn":{"protocol_id":749},"entity.wolf.ambient":{"protocol_id":750},"entity.wolf.death":{"protocol_id":751},"entity.wolf.growl":{"protocol_id":752},"entity.wolf.howl":{"protocol_id":753},"entity.wolf.hurt":{"protocol_id":754},"entity.wolf.pant":{"protocol_id":755},"entity.wolf.shake":{"protocol_id":756},"entity.wolf.step":{"protocol_id":757},"entity.wolf.whine":{"protocol_id":758},"block.wooden_door.close":{"protocol_id":759},"block.wooden_door.open":{"protocol_id":760},"block.wooden_trapdoor.close":{"protocol_id":761},"block.wooden_trapdoor.open":{"protocol_id":762},"block.wood.break":{"protocol_id":763},"block.wooden_button.click_off":{"protocol_id":764},"block.wooden_button.click_on":{"protocol_id":765},"block.wood.fall":{"protocol_id":766},"block.wood.hit":{"protocol_id":767},"block.wood.place":{"protocol_id":768},"block.wooden_pressure_plate.click_off":{"protocol_id":769},"block.wooden_pressure_plate.click_on":{"protocol_id":770},"block.wood.step":{"protocol_id":771},"entity.zombie.ambient":{"protocol_id":772},"entity.zombie.attack_wooden_door":{"protocol_id":773},"entity.zombie.attack_iron_door":{"protocol_id":774},"entity.zombie.break_wooden_door":{"protocol_id":775},"entity.zombie.converted_to_drowned":{"protocol_id":776},"entity.zombie.death":{"protocol_id":777},"entity.zombie.destroy_egg":{"protocol_id":778},"entity.zombie_horse.ambient":{"protocol_id":779},"entity.zombie_horse.death":{"protocol_id":780},"entity.zombie_horse.hurt":{"protocol_id":781},"entity.zombie.hurt":{"protocol_id":782},"entity.zombie.infect":{"protocol_id":783},"entity.zombie_pigman.ambient":{"protocol_id":784},"entity.zombie_pigman.angry":{"protocol_id":785},"entity.zombie_pigman.death":{"protocol_id":786},"entity.zombie_pigman.hurt":{"protocol_id":787},"entity.zombie.step":{"protocol_id":788},"entity.zombie_villager.ambient":{"protocol_id":789},"entity.zombie_villager.converted":{"protocol_id":790},"entity.zombie_villager.cure":{"protocol_id":791},"entity.zombie_villager.death":{"protocol_id":792},"entity.zombie_villager.hurt":{"protocol_id":793},"entity.zombie_villager.step":{"protocol_id":794}}},"fluid":{"default":"empty","protocol_id":1,"entries":{"empty":{"protocol_id":0},"flowing_water":{"protocol_id":1},"water":{"protocol_id":2},"flowing_lava":{"protocol_id":3},"lava":{"protocol_id":4}}},"mob_effect":{"protocol_id":2,"entries":{"speed":{"protocol_id":1},"slowness":{"protocol_id":2},"haste":{"protocol_id":3},"mining_fatigue":{"protocol_id":4},"strength":{"protocol_id":5},"instant_health":{"protocol_id":6},"instant_damage":{"protocol_id":7},"jump_boost":{"protocol_id":8},"nausea":{"protocol_id":9},"regeneration":{"protocol_id":10},"resistance":{"protocol_id":11},"fire_resistance":{"protocol_id":12},"water_breathing":{"protocol_id":13},"invisibility":{"protocol_id":14},"blindness":{"protocol_id":15},"night_vision":{"protocol_id":16},"hunger":{"protocol_id":17},"weakness":{"protocol_id":18},"poison":{"protocol_id":19},"wither":{"protocol_id":20},"health_boost":{"protocol_id":21},"absorption":{"protocol_id":22},"saturation":{"protocol_id":23},"glowing":{"protocol_id":24},"levitation":{"protocol_id":25},"luck":{"protocol_id":26},"unluck":{"protocol_id":27},"slow_falling":{"protocol_id":28},"conduit_power":{"protocol_id":29},"dolphins_grace":{"protocol_id":30},"bad_omen":{"protocol_id":31},"hero_of_the_village":{"protocol_id":32}}},"block":{"default":"air","protocol_id":3,"entries":{"air":{"protocol_id":0},"stone":{"protocol_id":1},"granite":{"protocol_id":2},"polished_granite":{"protocol_id":3},"diorite":{"protocol_id":4},"polished_diorite":{"protocol_id":5},"andesite":{"protocol_id":6},"polished_andesite":{"protocol_id":7},"grass_block":{"protocol_id":8},"dirt":{"protocol_id":9},"coarse_dirt":{"protocol_id":10},"podzol":{"protocol_id":11},"cobblestone":{"protocol_id":12},"oak_planks":{"protocol_id":13},"spruce_planks":{"protocol_id":14},"birch_planks":{"protocol_id":15},"jungle_planks":{"protocol_id":16},"acacia_planks":{"protocol_id":17},"dark_oak_planks":{"protocol_id":18},"oak_sapling":{"protocol_id":19},"spruce_sapling":{"protocol_id":20},"birch_sapling":{"protocol_id":21},"jungle_sapling":{"protocol_id":22},"acacia_sapling":{"protocol_id":23},"dark_oak_sapling":{"protocol_id":24},"bedrock":{"protocol_id":25},"water":{"protocol_id":26},"lava":{"protocol_id":27},"sand":{"protocol_id":28},"red_sand":{"protocol_id":29},"gravel":{"protocol_id":30},"gold_ore":{"protocol_id":31},"iron_ore":{"protocol_id":32},"coal_ore":{"protocol_id":33},"oak_log":{"protocol_id":34},"spruce_log":{"protocol_id":35},"birch_log":{"protocol_id":36},"jungle_log":{"protocol_id":37},"acacia_log":{"protocol_id":38},"dark_oak_log":{"protocol_id":39},"stripped_spruce_log":{"protocol_id":40},"stripped_birch_log":{"protocol_id":41},"stripped_jungle_log":{"protocol_id":42},"stripped_acacia_log":{"protocol_id":43},"stripped_dark_oak_log":{"protocol_id":44},"stripped_oak_log":{"protocol_id":45},"oak_wood":{"protocol_id":46},"spruce_wood":{"protocol_id":47},"birch_wood":{"protocol_id":48},"jungle_wood":{"protocol_id":49},"acacia_wood":{"protocol_id":50},"dark_oak_wood":{"protocol_id":51},"stripped_oak_wood":{"protocol_id":52},"stripped_spruce_wood":{"protocol_id":53},"stripped_birch_wood":{"protocol_id":54},"stripped_jungle_wood":{"protocol_id":55},"stripped_acacia_wood":{"protocol_id":56},"stripped_dark_oak_wood":{"protocol_id":57},"oak_leaves":{"protocol_id":58},"spruce_leaves":{"protocol_id":59},"birch_leaves":{"protocol_id":60},"jungle_leaves":{"protocol_id":61},"acacia_leaves":{"protocol_id":62},"dark_oak_leaves":{"protocol_id":63},"sponge":{"protocol_id":64},"wet_sponge":{"protocol_id":65},"glass":{"protocol_id":66},"lapis_ore":{"protocol_id":67},"lapis_block":{"protocol_id":68},"dispenser":{"protocol_id":69},"sandstone":{"protocol_id":70},"chiseled_sandstone":{"protocol_id":71},"cut_sandstone":{"protocol_id":72},"note_block":{"protocol_id":73},"white_bed":{"protocol_id":74},"orange_bed":{"protocol_id":75},"magenta_bed":{"protocol_id":76},"light_blue_bed":{"protocol_id":77},"yellow_bed":{"protocol_id":78},"lime_bed":{"protocol_id":79},"pink_bed":{"protocol_id":80},"gray_bed":{"protocol_id":81},"light_gray_bed":{"protocol_id":82},"cyan_bed":{"protocol_id":83},"purple_bed":{"protocol_id":84},"blue_bed":{"protocol_id":85},"brown_bed":{"protocol_id":86},"green_bed":{"protocol_id":87},"red_bed":{"protocol_id":88},"black_bed":{"protocol_id":89},"powered_rail":{"protocol_id":90},"detector_rail":{"protocol_id":91},"sticky_piston":{"protocol_id":92},"cobweb":{"protocol_id":93},"grass":{"protocol_id":94},"fern":{"protocol_id":95},"dead_bush":{"protocol_id":96},"seagrass":{"protocol_id":97},"tall_seagrass":{"protocol_id":98},"piston":{"protocol_id":99},"piston_head":{"protocol_id":100},"white_wool":{"protocol_id":101},"orange_wool":{"protocol_id":102},"magenta_wool":{"protocol_id":103},"light_blue_wool":{"protocol_id":104},"yellow_wool":{"protocol_id":105},"lime_wool":{"protocol_id":106},"pink_wool":{"protocol_id":107},"gray_wool":{"protocol_id":108},"light_gray_wool":{"protocol_id":109},"cyan_wool":{"protocol_id":110},"purple_wool":{"protocol_id":111},"blue_wool":{"protocol_id":112},"brown_wool":{"protocol_id":113},"green_wool":{"protocol_id":114},"red_wool":{"protocol_id":115},"black_wool":{"protocol_id":116},"moving_piston":{"protocol_id":117},"dandelion":{"protocol_id":118},"poppy":{"protocol_id":119},"blue_orchid":{"protocol_id":120},"allium":{"protocol_id":121},"azure_bluet":{"protocol_id":122},"red_tulip":{"protocol_id":123},"orange_tulip":{"protocol_id":124},"white_tulip":{"protocol_id":125},"pink_tulip":{"protocol_id":126},"oxeye_daisy":{"protocol_id":127},"cornflower":{"protocol_id":128},"wither_rose":{"protocol_id":129},"lily_of_the_valley":{"protocol_id":130},"brown_mushroom":{"protocol_id":131},"red_mushroom":{"protocol_id":132},"gold_block":{"protocol_id":133},"iron_block":{"protocol_id":134},"bricks":{"protocol_id":135},"tnt":{"protocol_id":136},"bookshelf":{"protocol_id":137},"mossy_cobblestone":{"protocol_id":138},"obsidian":{"protocol_id":139},"torch":{"protocol_id":140},"wall_torch":{"protocol_id":141},"fire":{"protocol_id":142},"spawner":{"protocol_id":143},"oak_stairs":{"protocol_id":144},"chest":{"protocol_id":145},"redstone_wire":{"protocol_id":146},"diamond_ore":{"protocol_id":147},"diamond_block":{"protocol_id":148},"crafting_table":{"protocol_id":149},"wheat":{"protocol_id":150},"farmland":{"protocol_id":151},"furnace":{"protocol_id":152},"oak_sign":{"protocol_id":153},"spruce_sign":{"protocol_id":154},"birch_sign":{"protocol_id":155},"acacia_sign":{"protocol_id":156},"jungle_sign":{"protocol_id":157},"dark_oak_sign":{"protocol_id":158},"oak_door":{"protocol_id":159},"ladder":{"protocol_id":160},"rail":{"protocol_id":161},"cobblestone_stairs":{"protocol_id":162},"oak_wall_sign":{"protocol_id":163},"spruce_wall_sign":{"protocol_id":164},"birch_wall_sign":{"protocol_id":165},"acacia_wall_sign":{"protocol_id":166},"jungle_wall_sign":{"protocol_id":167},"dark_oak_wall_sign":{"protocol_id":168},"lever":{"protocol_id":169},"stone_pressure_plate":{"protocol_id":170},"iron_door":{"protocol_id":171},"oak_pressure_plate":{"protocol_id":172},"spruce_pressure_plate":{"protocol_id":173},"birch_pressure_plate":{"protocol_id":174},"jungle_pressure_plate":{"protocol_id":175},"acacia_pressure_plate":{"protocol_id":176},"dark_oak_pressure_plate":{"protocol_id":177},"redstone_ore":{"protocol_id":178},"redstone_torch":{"protocol_id":179},"redstone_wall_torch":{"protocol_id":180},"stone_button":{"protocol_id":181},"snow":{"protocol_id":182},"ice":{"protocol_id":183},"snow_block":{"protocol_id":184},"cactus":{"protocol_id":185},"clay":{"protocol_id":186},"sugar_cane":{"protocol_id":187},"jukebox":{"protocol_id":188},"oak_fence":{"protocol_id":189},"pumpkin":{"protocol_id":190},"netherrack":{"protocol_id":191},"soul_sand":{"protocol_id":192},"glowstone":{"protocol_id":193},"nether_portal":{"protocol_id":194},"carved_pumpkin":{"protocol_id":195},"jack_o_lantern":{"protocol_id":196},"cake":{"protocol_id":197},"repeater":{"protocol_id":198},"white_stained_glass":{"protocol_id":199},"orange_stained_glass":{"protocol_id":200},"magenta_stained_glass":{"protocol_id":201},"light_blue_stained_glass":{"protocol_id":202},"yellow_stained_glass":{"protocol_id":203},"lime_stained_glass":{"protocol_id":204},"pink_stained_glass":{"protocol_id":205},"gray_stained_glass":{"protocol_id":206},"light_gray_stained_glass":{"protocol_id":207},"cyan_stained_glass":{"protocol_id":208},"purple_stained_glass":{"protocol_id":209},"blue_stained_glass":{"protocol_id":210},"brown_stained_glass":{"protocol_id":211},"green_stained_glass":{"protocol_id":212},"red_stained_glass":{"protocol_id":213},"black_stained_glass":{"protocol_id":214},"oak_trapdoor":{"protocol_id":215},"spruce_trapdoor":{"protocol_id":216},"birch_trapdoor":{"protocol_id":217},"jungle_trapdoor":{"protocol_id":218},"acacia_trapdoor":{"protocol_id":219},"dark_oak_trapdoor":{"protocol_id":220},"stone_bricks":{"protocol_id":221},"mossy_stone_bricks":{"protocol_id":222},"cracked_stone_bricks":{"protocol_id":223},"chiseled_stone_bricks":{"protocol_id":224},"infested_stone":{"protocol_id":225},"infested_cobblestone":{"protocol_id":226},"infested_stone_bricks":{"protocol_id":227},"infested_mossy_stone_bricks":{"protocol_id":228},"infested_cracked_stone_bricks":{"protocol_id":229},"infested_chiseled_stone_bricks":{"protocol_id":230},"brown_mushroom_block":{"protocol_id":231},"red_mushroom_block":{"protocol_id":232},"mushroom_stem":{"protocol_id":233},"iron_bars":{"protocol_id":234},"glass_pane":{"protocol_id":235},"melon":{"protocol_id":236},"attached_pumpkin_stem":{"protocol_id":237},"attached_melon_stem":{"protocol_id":238},"pumpkin_stem":{"protocol_id":239},"melon_stem":{"protocol_id":240},"vine":{"protocol_id":241},"oak_fence_gate":{"protocol_id":242},"brick_stairs":{"protocol_id":243},"stone_brick_stairs":{"protocol_id":244},"mycelium":{"protocol_id":245},"lily_pad":{"protocol_id":246},"nether_bricks":{"protocol_id":247},"nether_brick_fence":{"protocol_id":248},"nether_brick_stairs":{"protocol_id":249},"nether_wart":{"protocol_id":250},"enchanting_table":{"protocol_id":251},"brewing_stand":{"protocol_id":252},"cauldron":{"protocol_id":253},"end_portal":{"protocol_id":254},"end_portal_frame":{"protocol_id":255},"end_stone":{"protocol_id":256},"dragon_egg":{"protocol_id":257},"redstone_lamp":{"protocol_id":258},"cocoa":{"protocol_id":259},"sandstone_stairs":{"protocol_id":260},"emerald_ore":{"protocol_id":261},"ender_chest":{"protocol_id":262},"tripwire_hook":{"protocol_id":263},"tripwire":{"protocol_id":264},"emerald_block":{"protocol_id":265},"spruce_stairs":{"protocol_id":266},"birch_stairs":{"protocol_id":267},"jungle_stairs":{"protocol_id":268},"command_block":{"protocol_id":269},"beacon":{"protocol_id":270},"cobblestone_wall":{"protocol_id":271},"mossy_cobblestone_wall":{"protocol_id":272},"flower_pot":{"protocol_id":273},"potted_oak_sapling":{"protocol_id":274},"potted_spruce_sapling":{"protocol_id":275},"potted_birch_sapling":{"protocol_id":276},"potted_jungle_sapling":{"protocol_id":277},"potted_acacia_sapling":{"protocol_id":278},"potted_dark_oak_sapling":{"protocol_id":279},"potted_fern":{"protocol_id":280},"potted_dandelion":{"protocol_id":281},"potted_poppy":{"protocol_id":282},"potted_blue_orchid":{"protocol_id":283},"potted_allium":{"protocol_id":284},"potted_azure_bluet":{"protocol_id":285},"potted_red_tulip":{"protocol_id":286},"potted_orange_tulip":{"protocol_id":287},"potted_white_tulip":{"protocol_id":288},"potted_pink_tulip":{"protocol_id":289},"potted_oxeye_daisy":{"protocol_id":290},"potted_cornflower":{"protocol_id":291},"potted_lily_of_the_valley":{"protocol_id":292},"potted_wither_rose":{"protocol_id":293},"potted_red_mushroom":{"protocol_id":294},"potted_brown_mushroom":{"protocol_id":295},"potted_dead_bush":{"protocol_id":296},"potted_cactus":{"protocol_id":297},"carrots":{"protocol_id":298},"potatoes":{"protocol_id":299},"oak_button":{"protocol_id":300},"spruce_button":{"protocol_id":301},"birch_button":{"protocol_id":302},"jungle_button":{"protocol_id":303},"acacia_button":{"protocol_id":304},"dark_oak_button":{"protocol_id":305},"skeleton_skull":{"protocol_id":306},"skeleton_wall_skull":{"protocol_id":307},"wither_skeleton_skull":{"protocol_id":308},"wither_skeleton_wall_skull":{"protocol_id":309},"zombie_head":{"protocol_id":310},"zombie_wall_head":{"protocol_id":311},"player_head":{"protocol_id":312},"player_wall_head":{"protocol_id":313},"creeper_head":{"protocol_id":314},"creeper_wall_head":{"protocol_id":315},"dragon_head":{"protocol_id":316},"dragon_wall_head":{"protocol_id":317},"anvil":{"protocol_id":318},"chipped_anvil":{"protocol_id":319},"damaged_anvil":{"protocol_id":320},"trapped_chest":{"protocol_id":321},"light_weighted_pressure_plate":{"protocol_id":322},"heavy_weighted_pressure_plate":{"protocol_id":323},"comparator":{"protocol_id":324},"daylight_detector":{"protocol_id":325},"redstone_block":{"protocol_id":326},"nether_quartz_ore":{"protocol_id":327},"hopper":{"protocol_id":328},"quartz_block":{"protocol_id":329},"chiseled_quartz_block":{"protocol_id":330},"quartz_pillar":{"protocol_id":331},"quartz_stairs":{"protocol_id":332},"activator_rail":{"protocol_id":333},"dropper":{"protocol_id":334},"white_terracotta":{"protocol_id":335},"orange_terracotta":{"protocol_id":336},"magenta_terracotta":{"protocol_id":337},"light_blue_terracotta":{"protocol_id":338},"yellow_terracotta":{"protocol_id":339},"lime_terracotta":{"protocol_id":340},"pink_terracotta":{"protocol_id":341},"gray_terracotta":{"protocol_id":342},"light_gray_terracotta":{"protocol_id":343},"cyan_terracotta":{"protocol_id":344},"purple_terracotta":{"protocol_id":345},"blue_terracotta":{"protocol_id":346},"brown_terracotta":{"protocol_id":347},"green_terracotta":{"protocol_id":348},"red_terracotta":{"protocol_id":349},"black_terracotta":{"protocol_id":350},"white_stained_glass_pane":{"protocol_id":351},"orange_stained_glass_pane":{"protocol_id":352},"magenta_stained_glass_pane":{"protocol_id":353},"light_blue_stained_glass_pane":{"protocol_id":354},"yellow_stained_glass_pane":{"protocol_id":355},"lime_stained_glass_pane":{"protocol_id":356},"pink_stained_glass_pane":{"protocol_id":357},"gray_stained_glass_pane":{"protocol_id":358},"light_gray_stained_glass_pane":{"protocol_id":359},"cyan_stained_glass_pane":{"protocol_id":360},"purple_stained_glass_pane":{"protocol_id":361},"blue_stained_glass_pane":{"protocol_id":362},"brown_stained_glass_pane":{"protocol_id":363},"green_stained_glass_pane":{"protocol_id":364},"red_stained_glass_pane":{"protocol_id":365},"black_stained_glass_pane":{"protocol_id":366},"acacia_stairs":{"protocol_id":367},"dark_oak_stairs":{"protocol_id":368},"slime_block":{"protocol_id":369},"barrier":{"protocol_id":370},"iron_trapdoor":{"protocol_id":371},"prismarine":{"protocol_id":372},"prismarine_bricks":{"protocol_id":373},"dark_prismarine":{"protocol_id":374},"prismarine_stairs":{"protocol_id":375},"prismarine_brick_stairs":{"protocol_id":376},"dark_prismarine_stairs":{"protocol_id":377},"prismarine_slab":{"protocol_id":378},"prismarine_brick_slab":{"protocol_id":379},"dark_prismarine_slab":{"protocol_id":380},"sea_lantern":{"protocol_id":381},"hay_block":{"protocol_id":382},"white_carpet":{"protocol_id":383},"orange_carpet":{"protocol_id":384},"magenta_carpet":{"protocol_id":385},"light_blue_carpet":{"protocol_id":386},"yellow_carpet":{"protocol_id":387},"lime_carpet":{"protocol_id":388},"pink_carpet":{"protocol_id":389},"gray_carpet":{"protocol_id":390},"light_gray_carpet":{"protocol_id":391},"cyan_carpet":{"protocol_id":392},"purple_carpet":{"protocol_id":393},"blue_carpet":{"protocol_id":394},"brown_carpet":{"protocol_id":395},"green_carpet":{"protocol_id":396},"red_carpet":{"protocol_id":397},"black_carpet":{"protocol_id":398},"terracotta":{"protocol_id":399},"coal_block":{"protocol_id":400},"packed_ice":{"protocol_id":401},"sunflower":{"protocol_id":402},"lilac":{"protocol_id":403},"rose_bush":{"protocol_id":404},"peony":{"protocol_id":405},"tall_grass":{"protocol_id":406},"large_fern":{"protocol_id":407},"white_banner":{"protocol_id":408},"orange_banner":{"protocol_id":409},"magenta_banner":{"protocol_id":410},"light_blue_banner":{"protocol_id":411},"yellow_banner":{"protocol_id":412},"lime_banner":{"protocol_id":413},"pink_banner":{"protocol_id":414},"gray_banner":{"protocol_id":415},"light_gray_banner":{"protocol_id":416},"cyan_banner":{"protocol_id":417},"purple_banner":{"protocol_id":418},"blue_banner":{"protocol_id":419},"brown_banner":{"protocol_id":420},"green_banner":{"protocol_id":421},"red_banner":{"protocol_id":422},"black_banner":{"protocol_id":423},"white_wall_banner":{"protocol_id":424},"orange_wall_banner":{"protocol_id":425},"magenta_wall_banner":{"protocol_id":426},"light_blue_wall_banner":{"protocol_id":427},"yellow_wall_banner":{"protocol_id":428},"lime_wall_banner":{"protocol_id":429},"pink_wall_banner":{"protocol_id":430},"gray_wall_banner":{"protocol_id":431},"light_gray_wall_banner":{"protocol_id":432},"cyan_wall_banner":{"protocol_id":433},"purple_wall_banner":{"protocol_id":434},"blue_wall_banner":{"protocol_id":435},"brown_wall_banner":{"protocol_id":436},"green_wall_banner":{"protocol_id":437},"red_wall_banner":{"protocol_id":438},"black_wall_banner":{"protocol_id":439},"red_sandstone":{"protocol_id":440},"chiseled_red_sandstone":{"protocol_id":441},"cut_red_sandstone":{"protocol_id":442},"red_sandstone_stairs":{"protocol_id":443},"oak_slab":{"protocol_id":444},"spruce_slab":{"protocol_id":445},"birch_slab":{"protocol_id":446},"jungle_slab":{"protocol_id":447},"acacia_slab":{"protocol_id":448},"dark_oak_slab":{"protocol_id":449},"stone_slab":{"protocol_id":450},"smooth_stone_slab":{"protocol_id":451},"sandstone_slab":{"protocol_id":452},"cut_sandstone_slab":{"protocol_id":453},"petrified_oak_slab":{"protocol_id":454},"cobblestone_slab":{"protocol_id":455},"brick_slab":{"protocol_id":456},"stone_brick_slab":{"protocol_id":457},"nether_brick_slab":{"protocol_id":458},"quartz_slab":{"protocol_id":459},"red_sandstone_slab":{"protocol_id":460},"cut_red_sandstone_slab":{"protocol_id":461},"purpur_slab":{"protocol_id":462},"smooth_stone":{"protocol_id":463},"smooth_sandstone":{"protocol_id":464},"smooth_quartz":{"protocol_id":465},"smooth_red_sandstone":{"protocol_id":466},"spruce_fence_gate":{"protocol_id":467},"birch_fence_gate":{"protocol_id":468},"jungle_fence_gate":{"protocol_id":469},"acacia_fence_gate":{"protocol_id":470},"dark_oak_fence_gate":{"protocol_id":471},"spruce_fence":{"protocol_id":472},"birch_fence":{"protocol_id":473},"jungle_fence":{"protocol_id":474},"acacia_fence":{"protocol_id":475},"dark_oak_fence":{"protocol_id":476},"spruce_door":{"protocol_id":477},"birch_door":{"protocol_id":478},"jungle_door":{"protocol_id":479},"acacia_door":{"protocol_id":480},"dark_oak_door":{"protocol_id":481},"end_rod":{"protocol_id":482},"chorus_plant":{"protocol_id":483},"chorus_flower":{"protocol_id":484},"purpur_block":{"protocol_id":485},"purpur_pillar":{"protocol_id":486},"purpur_stairs":{"protocol_id":487},"end_stone_bricks":{"protocol_id":488},"beetroots":{"protocol_id":489},"grass_path":{"protocol_id":490},"end_gateway":{"protocol_id":491},"repeating_command_block":{"protocol_id":492},"chain_command_block":{"protocol_id":493},"frosted_ice":{"protocol_id":494},"magma_block":{"protocol_id":495},"nether_wart_block":{"protocol_id":496},"red_nether_bricks":{"protocol_id":497},"bone_block":{"protocol_id":498},"structure_void":{"protocol_id":499},"observer":{"protocol_id":500},"shulker_box":{"protocol_id":501},"white_shulker_box":{"protocol_id":502},"orange_shulker_box":{"protocol_id":503},"magenta_shulker_box":{"protocol_id":504},"light_blue_shulker_box":{"protocol_id":505},"yellow_shulker_box":{"protocol_id":506},"lime_shulker_box":{"protocol_id":507},"pink_shulker_box":{"protocol_id":508},"gray_shulker_box":{"protocol_id":509},"light_gray_shulker_box":{"protocol_id":510},"cyan_shulker_box":{"protocol_id":511},"purple_shulker_box":{"protocol_id":512},"blue_shulker_box":{"protocol_id":513},"brown_shulker_box":{"protocol_id":514},"green_shulker_box":{"protocol_id":515},"red_shulker_box":{"protocol_id":516},"black_shulker_box":{"protocol_id":517},"white_glazed_terracotta":{"protocol_id":518},"orange_glazed_terracotta":{"protocol_id":519},"magenta_glazed_terracotta":{"protocol_id":520},"light_blue_glazed_terracotta":{"protocol_id":521},"yellow_glazed_terracotta":{"protocol_id":522},"lime_glazed_terracotta":{"protocol_id":523},"pink_glazed_terracotta":{"protocol_id":524},"gray_glazed_terracotta":{"protocol_id":525},"light_gray_glazed_terracotta":{"protocol_id":526},"cyan_glazed_terracotta":{"protocol_id":527},"purple_glazed_terracotta":{"protocol_id":528},"blue_glazed_terracotta":{"protocol_id":529},"brown_glazed_terracotta":{"protocol_id":530},"green_glazed_terracotta":{"protocol_id":531},"red_glazed_terracotta":{"protocol_id":532},"black_glazed_terracotta":{"protocol_id":533},"white_concrete":{"protocol_id":534},"orange_concrete":{"protocol_id":535},"magenta_concrete":{"protocol_id":536},"light_blue_concrete":{"protocol_id":537},"yellow_concrete":{"protocol_id":538},"lime_concrete":{"protocol_id":539},"pink_concrete":{"protocol_id":540},"gray_concrete":{"protocol_id":541},"light_gray_concrete":{"protocol_id":542},"cyan_concrete":{"protocol_id":543},"purple_concrete":{"protocol_id":544},"blue_concrete":{"protocol_id":545},"brown_concrete":{"protocol_id":546},"green_concrete":{"protocol_id":547},"red_concrete":{"protocol_id":548},"black_concrete":{"protocol_id":549},"white_concrete_powder":{"protocol_id":550},"orange_concrete_powder":{"protocol_id":551},"magenta_concrete_powder":{"protocol_id":552},"light_blue_concrete_powder":{"protocol_id":553},"yellow_concrete_powder":{"protocol_id":554},"lime_concrete_powder":{"protocol_id":555},"pink_concrete_powder":{"protocol_id":556},"gray_concrete_powder":{"protocol_id":557},"light_gray_concrete_powder":{"protocol_id":558},"cyan_concrete_powder":{"protocol_id":559},"purple_concrete_powder":{"protocol_id":560},"blue_concrete_powder":{"protocol_id":561},"brown_concrete_powder":{"protocol_id":562},"green_concrete_powder":{"protocol_id":563},"red_concrete_powder":{"protocol_id":564},"black_concrete_powder":{"protocol_id":565},"kelp":{"protocol_id":566},"kelp_plant":{"protocol_id":567},"dried_kelp_block":{"protocol_id":568},"turtle_egg":{"protocol_id":569},"dead_tube_coral_block":{"protocol_id":570},"dead_brain_coral_block":{"protocol_id":571},"dead_bubble_coral_block":{"protocol_id":572},"dead_fire_coral_block":{"protocol_id":573},"dead_horn_coral_block":{"protocol_id":574},"tube_coral_block":{"protocol_id":575},"brain_coral_block":{"protocol_id":576},"bubble_coral_block":{"protocol_id":577},"fire_coral_block":{"protocol_id":578},"horn_coral_block":{"protocol_id":579},"dead_tube_coral":{"protocol_id":580},"dead_brain_coral":{"protocol_id":581},"dead_bubble_coral":{"protocol_id":582},"dead_fire_coral":{"protocol_id":583},"dead_horn_coral":{"protocol_id":584},"tube_coral":{"protocol_id":585},"brain_coral":{"protocol_id":586},"bubble_coral":{"protocol_id":587},"fire_coral":{"protocol_id":588},"horn_coral":{"protocol_id":589},"dead_tube_coral_fan":{"protocol_id":590},"dead_brain_coral_fan":{"protocol_id":591},"dead_bubble_coral_fan":{"protocol_id":592},"dead_fire_coral_fan":{"protocol_id":593},"dead_horn_coral_fan":{"protocol_id":594},"tube_coral_fan":{"protocol_id":595},"brain_coral_fan":{"protocol_id":596},"bubble_coral_fan":{"protocol_id":597},"fire_coral_fan":{"protocol_id":598},"horn_coral_fan":{"protocol_id":599},"dead_tube_coral_wall_fan":{"protocol_id":600},"dead_brain_coral_wall_fan":{"protocol_id":601},"dead_bubble_coral_wall_fan":{"protocol_id":602},"dead_fire_coral_wall_fan":{"protocol_id":603},"dead_horn_coral_wall_fan":{"protocol_id":604},"tube_coral_wall_fan":{"protocol_id":605},"brain_coral_wall_fan":{"protocol_id":606},"bubble_coral_wall_fan":{"protocol_id":607},"fire_coral_wall_fan":{"protocol_id":608},"horn_coral_wall_fan":{"protocol_id":609},"sea_pickle":{"protocol_id":610},"blue_ice":{"protocol_id":611},"conduit":{"protocol_id":612},"bamboo_sapling":{"protocol_id":613},"bamboo":{"protocol_id":614},"potted_bamboo":{"protocol_id":615},"void_air":{"protocol_id":616},"cave_air":{"protocol_id":617},"bubble_column":{"protocol_id":618},"polished_granite_stairs":{"protocol_id":619},"smooth_red_sandstone_stairs":{"protocol_id":620},"mossy_stone_brick_stairs":{"protocol_id":621},"polished_diorite_stairs":{"protocol_id":622},"mossy_cobblestone_stairs":{"protocol_id":623},"end_stone_brick_stairs":{"protocol_id":624},"stone_stairs":{"protocol_id":625},"smooth_sandstone_stairs":{"protocol_id":626},"smooth_quartz_stairs":{"protocol_id":627},"granite_stairs":{"protocol_id":628},"andesite_stairs":{"protocol_id":629},"red_nether_brick_stairs":{"protocol_id":630},"polished_andesite_stairs":{"protocol_id":631},"diorite_stairs":{"protocol_id":632},"polished_granite_slab":{"protocol_id":633},"smooth_red_sandstone_slab":{"protocol_id":634},"mossy_stone_brick_slab":{"protocol_id":635},"polished_diorite_slab":{"protocol_id":636},"mossy_cobblestone_slab":{"protocol_id":637},"end_stone_brick_slab":{"protocol_id":638},"smooth_sandstone_slab":{"protocol_id":639},"smooth_quartz_slab":{"protocol_id":640},"granite_slab":{"protocol_id":641},"andesite_slab":{"protocol_id":642},"red_nether_brick_slab":{"protocol_id":643},"polished_andesite_slab":{"protocol_id":644},"diorite_slab":{"protocol_id":645},"brick_wall":{"protocol_id":646},"prismarine_wall":{"protocol_id":647},"red_sandstone_wall":{"protocol_id":648},"mossy_stone_brick_wall":{"protocol_id":649},"granite_wall":{"protocol_id":650},"stone_brick_wall":{"protocol_id":651},"nether_brick_wall":{"protocol_id":652},"andesite_wall":{"protocol_id":653},"red_nether_brick_wall":{"protocol_id":654},"sandstone_wall":{"protocol_id":655},"end_stone_brick_wall":{"protocol_id":656},"diorite_wall":{"protocol_id":657},"scaffolding":{"protocol_id":658},"loom":{"protocol_id":659},"barrel":{"protocol_id":660},"smoker":{"protocol_id":661},"blast_furnace":{"protocol_id":662},"cartography_table":{"protocol_id":663},"fletching_table":{"protocol_id":664},"grindstone":{"protocol_id":665},"lectern":{"protocol_id":666},"smithing_table":{"protocol_id":667},"stonecutter":{"protocol_id":668},"bell":{"protocol_id":669},"lantern":{"protocol_id":670},"campfire":{"protocol_id":671},"sweet_berry_bush":{"protocol_id":672},"structure_block":{"protocol_id":673},"jigsaw":{"protocol_id":674},"composter":{"protocol_id":675}}},"enchantment":{"protocol_id":4,"entries":{"protection":{"protocol_id":0},"fire_protection":{"protocol_id":1},"feather_falling":{"protocol_id":2},"blast_protection":{"protocol_id":3},"projectile_protection":{"protocol_id":4},"respiration":{"protocol_id":5},"aqua_affinity":{"protocol_id":6},"thorns":{"protocol_id":7},"depth_strider":{"protocol_id":8},"frost_walker":{"protocol_id":9},"binding_curse":{"protocol_id":10},"sharpness":{"protocol_id":11},"smite":{"protocol_id":12},"bane_of_arthropods":{"protocol_id":13},"knockback":{"protocol_id":14},"fire_aspect":{"protocol_id":15},"looting":{"protocol_id":16},"sweeping":{"protocol_id":17},"efficiency":{"protocol_id":18},"silk_touch":{"protocol_id":19},"unbreaking":{"protocol_id":20},"fortune":{"protocol_id":21},"power":{"protocol_id":22},"punch":{"protocol_id":23},"flame":{"protocol_id":24},"infinity":{"protocol_id":25},"luck_of_the_sea":{"protocol_id":26},"lure":{"protocol_id":27},"loyalty":{"protocol_id":28},"impaling":{"protocol_id":29},"riptide":{"protocol_id":30},"channeling":{"protocol_id":31},"multishot":{"protocol_id":32},"quick_charge":{"protocol_id":33},"piercing":{"protocol_id":34},"mending":{"protocol_id":35},"vanishing_curse":{"protocol_id":36}}},"entity_type":{"default":"pig","protocol_id":5,"entries":{"area_effect_cloud":{"protocol_id":0},"armor_stand":{"protocol_id":1},"arrow":{"protocol_id":2},"bat":{"protocol_id":3},"blaze":{"protocol_id":4},"boat":{"protocol_id":5},"cat":{"protocol_id":6},"cave_spider":{"protocol_id":7},"chicken":{"protocol_id":8},"cod":{"protocol_id":9},"cow":{"protocol_id":10},"creeper":{"protocol_id":11},"donkey":{"protocol_id":12},"dolphin":{"protocol_id":13},"dragon_fireball":{"protocol_id":14},"drowned":{"protocol_id":15},"elder_guardian":{"protocol_id":16},"end_crystal":{"protocol_id":17},"ender_dragon":{"protocol_id":18},"enderman":{"protocol_id":19},"endermite":{"protocol_id":20},"evoker_fangs":{"protocol_id":21},"evoker":{"protocol_id":22},"experience_orb":{"protocol_id":23},"eye_of_ender":{"protocol_id":24},"falling_block":{"protocol_id":25},"firework_rocket":{"protocol_id":26},"fox":{"protocol_id":27},"ghast":{"protocol_id":28},"giant":{"protocol_id":29},"guardian":{"protocol_id":30},"horse":{"protocol_id":31},"husk":{"protocol_id":32},"illusioner":{"protocol_id":33},"item":{"protocol_id":34},"item_frame":{"protocol_id":35},"fireball":{"protocol_id":36},"leash_knot":{"protocol_id":37},"llama":{"protocol_id":38},"llama_spit":{"protocol_id":39},"magma_cube":{"protocol_id":40},"minecart":{"protocol_id":41},"chest_minecart":{"protocol_id":42},"command_block_minecart":{"protocol_id":43},"furnace_minecart":{"protocol_id":44},"hopper_minecart":{"protocol_id":45},"spawner_minecart":{"protocol_id":46},"tnt_minecart":{"protocol_id":47},"mule":{"protocol_id":48},"mooshroom":{"protocol_id":49},"ocelot":{"protocol_id":50},"painting":{"protocol_id":51},"panda":{"protocol_id":52},"parrot":{"protocol_id":53},"pig":{"protocol_id":54},"pufferfish":{"protocol_id":55},"zombie_pigman":{"protocol_id":56},"polar_bear":{"protocol_id":57},"tnt":{"protocol_id":58},"rabbit":{"protocol_id":59},"salmon":{"protocol_id":60},"sheep":{"protocol_id":61},"shulker":{"protocol_id":62},"shulker_bullet":{"protocol_id":63},"silverfish":{"protocol_id":64},"skeleton":{"protocol_id":65},"skeleton_horse":{"protocol_id":66},"slime":{"protocol_id":67},"small_fireball":{"protocol_id":68},"snow_golem":{"protocol_id":69},"snowball":{"protocol_id":70},"spectral_arrow":{"protocol_id":71},"spider":{"protocol_id":72},"squid":{"protocol_id":73},"stray":{"protocol_id":74},"trader_llama":{"protocol_id":75},"tropical_fish":{"protocol_id":76},"turtle":{"protocol_id":77},"egg":{"protocol_id":78},"ender_pearl":{"protocol_id":79},"experience_bottle":{"protocol_id":80},"potion":{"protocol_id":81},"trident":{"protocol_id":82},"vex":{"protocol_id":83},"villager":{"protocol_id":84},"iron_golem":{"protocol_id":85},"vindicator":{"protocol_id":86},"pillager":{"protocol_id":87},"wandering_trader":{"protocol_id":88},"witch":{"protocol_id":89},"wither":{"protocol_id":90},"wither_skeleton":{"protocol_id":91},"wither_skull":{"protocol_id":92},"wolf":{"protocol_id":93},"zombie":{"protocol_id":94},"zombie_horse":{"protocol_id":95},"zombie_villager":{"protocol_id":96},"phantom":{"protocol_id":97},"ravager":{"protocol_id":98},"lightning_bolt":{"protocol_id":99},"player":{"protocol_id":100},"fishing_bobber":{"protocol_id":101}}},"item":{"default":"air","protocol_id":6,"entries":{"air":{"protocol_id":0},"stone":{"protocol_id":1},"granite":{"protocol_id":2},"polished_granite":{"protocol_id":3},"diorite":{"protocol_id":4},"polished_diorite":{"protocol_id":5},"andesite":{"protocol_id":6},"polished_andesite":{"protocol_id":7},"grass_block":{"protocol_id":8},"dirt":{"protocol_id":9},"coarse_dirt":{"protocol_id":10},"podzol":{"protocol_id":11},"cobblestone":{"protocol_id":12},"oak_planks":{"protocol_id":13},"spruce_planks":{"protocol_id":14},"birch_planks":{"protocol_id":15},"jungle_planks":{"protocol_id":16},"acacia_planks":{"protocol_id":17},"dark_oak_planks":{"protocol_id":18},"oak_sapling":{"protocol_id":19},"spruce_sapling":{"protocol_id":20},"birch_sapling":{"protocol_id":21},"jungle_sapling":{"protocol_id":22},"acacia_sapling":{"protocol_id":23},"dark_oak_sapling":{"protocol_id":24},"bedrock":{"protocol_id":25},"sand":{"protocol_id":26},"red_sand":{"protocol_id":27},"gravel":{"protocol_id":28},"gold_ore":{"protocol_id":29},"iron_ore":{"protocol_id":30},"coal_ore":{"protocol_id":31},"oak_log":{"protocol_id":32},"spruce_log":{"protocol_id":33},"birch_log":{"protocol_id":34},"jungle_log":{"protocol_id":35},"acacia_log":{"protocol_id":36},"dark_oak_log":{"protocol_id":37},"stripped_oak_log":{"protocol_id":38},"stripped_spruce_log":{"protocol_id":39},"stripped_birch_log":{"protocol_id":40},"stripped_jungle_log":{"protocol_id":41},"stripped_acacia_log":{"protocol_id":42},"stripped_dark_oak_log":{"protocol_id":43},"stripped_oak_wood":{"protocol_id":44},"stripped_spruce_wood":{"protocol_id":45},"stripped_birch_wood":{"protocol_id":46},"stripped_jungle_wood":{"protocol_id":47},"stripped_acacia_wood":{"protocol_id":48},"stripped_dark_oak_wood":{"protocol_id":49},"oak_wood":{"protocol_id":50},"spruce_wood":{"protocol_id":51},"birch_wood":{"protocol_id":52},"jungle_wood":{"protocol_id":53},"acacia_wood":{"protocol_id":54},"dark_oak_wood":{"protocol_id":55},"oak_leaves":{"protocol_id":56},"spruce_leaves":{"protocol_id":57},"birch_leaves":{"protocol_id":58},"jungle_leaves":{"protocol_id":59},"acacia_leaves":{"protocol_id":60},"dark_oak_leaves":{"protocol_id":61},"sponge":{"protocol_id":62},"wet_sponge":{"protocol_id":63},"glass":{"protocol_id":64},"lapis_ore":{"protocol_id":65},"lapis_block":{"protocol_id":66},"dispenser":{"protocol_id":67},"sandstone":{"protocol_id":68},"chiseled_sandstone":{"protocol_id":69},"cut_sandstone":{"protocol_id":70},"note_block":{"protocol_id":71},"powered_rail":{"protocol_id":72},"detector_rail":{"protocol_id":73},"sticky_piston":{"protocol_id":74},"cobweb":{"protocol_id":75},"grass":{"protocol_id":76},"fern":{"protocol_id":77},"dead_bush":{"protocol_id":78},"seagrass":{"protocol_id":79},"sea_pickle":{"protocol_id":80},"piston":{"protocol_id":81},"white_wool":{"protocol_id":82},"orange_wool":{"protocol_id":83},"magenta_wool":{"protocol_id":84},"light_blue_wool":{"protocol_id":85},"yellow_wool":{"protocol_id":86},"lime_wool":{"protocol_id":87},"pink_wool":{"protocol_id":88},"gray_wool":{"protocol_id":89},"light_gray_wool":{"protocol_id":90},"cyan_wool":{"protocol_id":91},"purple_wool":{"protocol_id":92},"blue_wool":{"protocol_id":93},"brown_wool":{"protocol_id":94},"green_wool":{"protocol_id":95},"red_wool":{"protocol_id":96},"black_wool":{"protocol_id":97},"dandelion":{"protocol_id":98},"poppy":{"protocol_id":99},"blue_orchid":{"protocol_id":100},"allium":{"protocol_id":101},"azure_bluet":{"protocol_id":102},"red_tulip":{"protocol_id":103},"orange_tulip":{"protocol_id":104},"white_tulip":{"protocol_id":105},"pink_tulip":{"protocol_id":106},"oxeye_daisy":{"protocol_id":107},"cornflower":{"protocol_id":108},"lily_of_the_valley":{"protocol_id":109},"wither_rose":{"protocol_id":110},"brown_mushroom":{"protocol_id":111},"red_mushroom":{"protocol_id":112},"gold_block":{"protocol_id":113},"iron_block":{"protocol_id":114},"oak_slab":{"protocol_id":115},"spruce_slab":{"protocol_id":116},"birch_slab":{"protocol_id":117},"jungle_slab":{"protocol_id":118},"acacia_slab":{"protocol_id":119},"dark_oak_slab":{"protocol_id":120},"stone_slab":{"protocol_id":121},"smooth_stone_slab":{"protocol_id":122},"sandstone_slab":{"protocol_id":123},"cut_sandstone_slab":{"protocol_id":124},"petrified_oak_slab":{"protocol_id":125},"cobblestone_slab":{"protocol_id":126},"brick_slab":{"protocol_id":127},"stone_brick_slab":{"protocol_id":128},"nether_brick_slab":{"protocol_id":129},"quartz_slab":{"protocol_id":130},"red_sandstone_slab":{"protocol_id":131},"cut_red_sandstone_slab":{"protocol_id":132},"purpur_slab":{"protocol_id":133},"prismarine_slab":{"protocol_id":134},"prismarine_brick_slab":{"protocol_id":135},"dark_prismarine_slab":{"protocol_id":136},"smooth_quartz":{"protocol_id":137},"smooth_red_sandstone":{"protocol_id":138},"smooth_sandstone":{"protocol_id":139},"smooth_stone":{"protocol_id":140},"bricks":{"protocol_id":141},"tnt":{"protocol_id":142},"bookshelf":{"protocol_id":143},"mossy_cobblestone":{"protocol_id":144},"obsidian":{"protocol_id":145},"torch":{"protocol_id":146},"end_rod":{"protocol_id":147},"chorus_plant":{"protocol_id":148},"chorus_flower":{"protocol_id":149},"purpur_block":{"protocol_id":150},"purpur_pillar":{"protocol_id":151},"purpur_stairs":{"protocol_id":152},"spawner":{"protocol_id":153},"oak_stairs":{"protocol_id":154},"chest":{"protocol_id":155},"diamond_ore":{"protocol_id":156},"diamond_block":{"protocol_id":157},"crafting_table":{"protocol_id":158},"farmland":{"protocol_id":159},"furnace":{"protocol_id":160},"ladder":{"protocol_id":161},"rail":{"protocol_id":162},"cobblestone_stairs":{"protocol_id":163},"lever":{"protocol_id":164},"stone_pressure_plate":{"protocol_id":165},"oak_pressure_plate":{"protocol_id":166},"spruce_pressure_plate":{"protocol_id":167},"birch_pressure_plate":{"protocol_id":168},"jungle_pressure_plate":{"protocol_id":169},"acacia_pressure_plate":{"protocol_id":170},"dark_oak_pressure_plate":{"protocol_id":171},"redstone_ore":{"protocol_id":172},"redstone_torch":{"protocol_id":173},"stone_button":{"protocol_id":174},"snow":{"protocol_id":175},"ice":{"protocol_id":176},"snow_block":{"protocol_id":177},"cactus":{"protocol_id":178},"clay":{"protocol_id":179},"jukebox":{"protocol_id":180},"oak_fence":{"protocol_id":181},"spruce_fence":{"protocol_id":182},"birch_fence":{"protocol_id":183},"jungle_fence":{"protocol_id":184},"acacia_fence":{"protocol_id":185},"dark_oak_fence":{"protocol_id":186},"pumpkin":{"protocol_id":187},"carved_pumpkin":{"protocol_id":188},"netherrack":{"protocol_id":189},"soul_sand":{"protocol_id":190},"glowstone":{"protocol_id":191},"jack_o_lantern":{"protocol_id":192},"oak_trapdoor":{"protocol_id":193},"spruce_trapdoor":{"protocol_id":194},"birch_trapdoor":{"protocol_id":195},"jungle_trapdoor":{"protocol_id":196},"acacia_trapdoor":{"protocol_id":197},"dark_oak_trapdoor":{"protocol_id":198},"infested_stone":{"protocol_id":199},"infested_cobblestone":{"protocol_id":200},"infested_stone_bricks":{"protocol_id":201},"infested_mossy_stone_bricks":{"protocol_id":202},"infested_cracked_stone_bricks":{"protocol_id":203},"infested_chiseled_stone_bricks":{"protocol_id":204},"stone_bricks":{"protocol_id":205},"mossy_stone_bricks":{"protocol_id":206},"cracked_stone_bricks":{"protocol_id":207},"chiseled_stone_bricks":{"protocol_id":208},"brown_mushroom_block":{"protocol_id":209},"red_mushroom_block":{"protocol_id":210},"mushroom_stem":{"protocol_id":211},"iron_bars":{"protocol_id":212},"glass_pane":{"protocol_id":213},"melon":{"protocol_id":214},"vine":{"protocol_id":215},"oak_fence_gate":{"protocol_id":216},"spruce_fence_gate":{"protocol_id":217},"birch_fence_gate":{"protocol_id":218},"jungle_fence_gate":{"protocol_id":219},"acacia_fence_gate":{"protocol_id":220},"dark_oak_fence_gate":{"protocol_id":221},"brick_stairs":{"protocol_id":222},"stone_brick_stairs":{"protocol_id":223},"mycelium":{"protocol_id":224},"lily_pad":{"protocol_id":225},"nether_bricks":{"protocol_id":226},"nether_brick_fence":{"protocol_id":227},"nether_brick_stairs":{"protocol_id":228},"enchanting_table":{"protocol_id":229},"end_portal_frame":{"protocol_id":230},"end_stone":{"protocol_id":231},"end_stone_bricks":{"protocol_id":232},"dragon_egg":{"protocol_id":233},"redstone_lamp":{"protocol_id":234},"sandstone_stairs":{"protocol_id":235},"emerald_ore":{"protocol_id":236},"ender_chest":{"protocol_id":237},"tripwire_hook":{"protocol_id":238},"emerald_block":{"protocol_id":239},"spruce_stairs":{"protocol_id":240},"birch_stairs":{"protocol_id":241},"jungle_stairs":{"protocol_id":242},"command_block":{"protocol_id":243},"beacon":{"protocol_id":244},"cobblestone_wall":{"protocol_id":245},"mossy_cobblestone_wall":{"protocol_id":246},"brick_wall":{"protocol_id":247},"prismarine_wall":{"protocol_id":248},"red_sandstone_wall":{"protocol_id":249},"mossy_stone_brick_wall":{"protocol_id":250},"granite_wall":{"protocol_id":251},"stone_brick_wall":{"protocol_id":252},"nether_brick_wall":{"protocol_id":253},"andesite_wall":{"protocol_id":254},"red_nether_brick_wall":{"protocol_id":255},"sandstone_wall":{"protocol_id":256},"end_stone_brick_wall":{"protocol_id":257},"diorite_wall":{"protocol_id":258},"oak_button":{"protocol_id":259},"spruce_button":{"protocol_id":260},"birch_button":{"protocol_id":261},"jungle_button":{"protocol_id":262},"acacia_button":{"protocol_id":263},"dark_oak_button":{"protocol_id":264},"anvil":{"protocol_id":265},"chipped_anvil":{"protocol_id":266},"damaged_anvil":{"protocol_id":267},"trapped_chest":{"protocol_id":268},"light_weighted_pressure_plate":{"protocol_id":269},"heavy_weighted_pressure_plate":{"protocol_id":270},"daylight_detector":{"protocol_id":271},"redstone_block":{"protocol_id":272},"nether_quartz_ore":{"protocol_id":273},"hopper":{"protocol_id":274},"chiseled_quartz_block":{"protocol_id":275},"quartz_block":{"protocol_id":276},"quartz_pillar":{"protocol_id":277},"quartz_stairs":{"protocol_id":278},"activator_rail":{"protocol_id":279},"dropper":{"protocol_id":280},"white_terracotta":{"protocol_id":281},"orange_terracotta":{"protocol_id":282},"magenta_terracotta":{"protocol_id":283},"light_blue_terracotta":{"protocol_id":284},"yellow_terracotta":{"protocol_id":285},"lime_terracotta":{"protocol_id":286},"pink_terracotta":{"protocol_id":287},"gray_terracotta":{"protocol_id":288},"light_gray_terracotta":{"protocol_id":289},"cyan_terracotta":{"protocol_id":290},"purple_terracotta":{"protocol_id":291},"blue_terracotta":{"protocol_id":292},"brown_terracotta":{"protocol_id":293},"green_terracotta":{"protocol_id":294},"red_terracotta":{"protocol_id":295},"black_terracotta":{"protocol_id":296},"barrier":{"protocol_id":297},"iron_trapdoor":{"protocol_id":298},"hay_block":{"protocol_id":299},"white_carpet":{"protocol_id":300},"orange_carpet":{"protocol_id":301},"magenta_carpet":{"protocol_id":302},"light_blue_carpet":{"protocol_id":303},"yellow_carpet":{"protocol_id":304},"lime_carpet":{"protocol_id":305},"pink_carpet":{"protocol_id":306},"gray_carpet":{"protocol_id":307},"light_gray_carpet":{"protocol_id":308},"cyan_carpet":{"protocol_id":309},"purple_carpet":{"protocol_id":310},"blue_carpet":{"protocol_id":311},"brown_carpet":{"protocol_id":312},"green_carpet":{"protocol_id":313},"red_carpet":{"protocol_id":314},"black_carpet":{"protocol_id":315},"terracotta":{"protocol_id":316},"coal_block":{"protocol_id":317},"packed_ice":{"protocol_id":318},"acacia_stairs":{"protocol_id":319},"dark_oak_stairs":{"protocol_id":320},"slime_block":{"protocol_id":321},"grass_path":{"protocol_id":322},"sunflower":{"protocol_id":323},"lilac":{"protocol_id":324},"rose_bush":{"protocol_id":325},"peony":{"protocol_id":326},"tall_grass":{"protocol_id":327},"large_fern":{"protocol_id":328},"white_stained_glass":{"protocol_id":329},"orange_stained_glass":{"protocol_id":330},"magenta_stained_glass":{"protocol_id":331},"light_blue_stained_glass":{"protocol_id":332},"yellow_stained_glass":{"protocol_id":333},"lime_stained_glass":{"protocol_id":334},"pink_stained_glass":{"protocol_id":335},"gray_stained_glass":{"protocol_id":336},"light_gray_stained_glass":{"protocol_id":337},"cyan_stained_glass":{"protocol_id":338},"purple_stained_glass":{"protocol_id":339},"blue_stained_glass":{"protocol_id":340},"brown_stained_glass":{"protocol_id":341},"green_stained_glass":{"protocol_id":342},"red_stained_glass":{"protocol_id":343},"black_stained_glass":{"protocol_id":344},"white_stained_glass_pane":{"protocol_id":345},"orange_stained_glass_pane":{"protocol_id":346},"magenta_stained_glass_pane":{"protocol_id":347},"light_blue_stained_glass_pane":{"protocol_id":348},"yellow_stained_glass_pane":{"protocol_id":349},"lime_stained_glass_pane":{"protocol_id":350},"pink_stained_glass_pane":{"protocol_id":351},"gray_stained_glass_pane":{"protocol_id":352},"light_gray_stained_glass_pane":{"protocol_id":353},"cyan_stained_glass_pane":{"protocol_id":354},"purple_stained_glass_pane":{"protocol_id":355},"blue_stained_glass_pane":{"protocol_id":356},"brown_stained_glass_pane":{"protocol_id":357},"green_stained_glass_pane":{"protocol_id":358},"red_stained_glass_pane":{"protocol_id":359},"black_stained_glass_pane":{"protocol_id":360},"prismarine":{"protocol_id":361},"prismarine_bricks":{"protocol_id":362},"dark_prismarine":{"protocol_id":363},"prismarine_stairs":{"protocol_id":364},"prismarine_brick_stairs":{"protocol_id":365},"dark_prismarine_stairs":{"protocol_id":366},"sea_lantern":{"protocol_id":367},"red_sandstone":{"protocol_id":368},"chiseled_red_sandstone":{"protocol_id":369},"cut_red_sandstone":{"protocol_id":370},"red_sandstone_stairs":{"protocol_id":371},"repeating_command_block":{"protocol_id":372},"chain_command_block":{"protocol_id":373},"magma_block":{"protocol_id":374},"nether_wart_block":{"protocol_id":375},"red_nether_bricks":{"protocol_id":376},"bone_block":{"protocol_id":377},"structure_void":{"protocol_id":378},"observer":{"protocol_id":379},"shulker_box":{"protocol_id":380},"white_shulker_box":{"protocol_id":381},"orange_shulker_box":{"protocol_id":382},"magenta_shulker_box":{"protocol_id":383},"light_blue_shulker_box":{"protocol_id":384},"yellow_shulker_box":{"protocol_id":385},"lime_shulker_box":{"protocol_id":386},"pink_shulker_box":{"protocol_id":387},"gray_shulker_box":{"protocol_id":388},"light_gray_shulker_box":{"protocol_id":389},"cyan_shulker_box":{"protocol_id":390},"purple_shulker_box":{"protocol_id":391},"blue_shulker_box":{"protocol_id":392},"brown_shulker_box":{"protocol_id":393},"green_shulker_box":{"protocol_id":394},"red_shulker_box":{"protocol_id":395},"black_shulker_box":{"protocol_id":396},"white_glazed_terracotta":{"protocol_id":397},"orange_glazed_terracotta":{"protocol_id":398},"magenta_glazed_terracotta":{"protocol_id":399},"light_blue_glazed_terracotta":{"protocol_id":400},"yellow_glazed_terracotta":{"protocol_id":401},"lime_glazed_terracotta":{"protocol_id":402},"pink_glazed_terracotta":{"protocol_id":403},"gray_glazed_terracotta":{"protocol_id":404},"light_gray_glazed_terracotta":{"protocol_id":405},"cyan_glazed_terracotta":{"protocol_id":406},"purple_glazed_terracotta":{"protocol_id":407},"blue_glazed_terracotta":{"protocol_id":408},"brown_glazed_terracotta":{"protocol_id":409},"green_glazed_terracotta":{"protocol_id":410},"red_glazed_terracotta":{"protocol_id":411},"black_glazed_terracotta":{"protocol_id":412},"white_concrete":{"protocol_id":413},"orange_concrete":{"protocol_id":414},"magenta_concrete":{"protocol_id":415},"light_blue_concrete":{"protocol_id":416},"yellow_concrete":{"protocol_id":417},"lime_concrete":{"protocol_id":418},"pink_concrete":{"protocol_id":419},"gray_concrete":{"protocol_id":420},"light_gray_concrete":{"protocol_id":421},"cyan_concrete":{"protocol_id":422},"purple_concrete":{"protocol_id":423},"blue_concrete":{"protocol_id":424},"brown_concrete":{"protocol_id":425},"green_concrete":{"protocol_id":426},"red_concrete":{"protocol_id":427},"black_concrete":{"protocol_id":428},"white_concrete_powder":{"protocol_id":429},"orange_concrete_powder":{"protocol_id":430},"magenta_concrete_powder":{"protocol_id":431},"light_blue_concrete_powder":{"protocol_id":432},"yellow_concrete_powder":{"protocol_id":433},"lime_concrete_powder":{"protocol_id":434},"pink_concrete_powder":{"protocol_id":435},"gray_concrete_powder":{"protocol_id":436},"light_gray_concrete_powder":{"protocol_id":437},"cyan_concrete_powder":{"protocol_id":438},"purple_concrete_powder":{"protocol_id":439},"blue_concrete_powder":{"protocol_id":440},"brown_concrete_powder":{"protocol_id":441},"green_concrete_powder":{"protocol_id":442},"red_concrete_powder":{"protocol_id":443},"black_concrete_powder":{"protocol_id":444},"turtle_egg":{"protocol_id":445},"dead_tube_coral_block":{"protocol_id":446},"dead_brain_coral_block":{"protocol_id":447},"dead_bubble_coral_block":{"protocol_id":448},"dead_fire_coral_block":{"protocol_id":449},"dead_horn_coral_block":{"protocol_id":450},"tube_coral_block":{"protocol_id":451},"brain_coral_block":{"protocol_id":452},"bubble_coral_block":{"protocol_id":453},"fire_coral_block":{"protocol_id":454},"horn_coral_block":{"protocol_id":455},"tube_coral":{"protocol_id":456},"brain_coral":{"protocol_id":457},"bubble_coral":{"protocol_id":458},"fire_coral":{"protocol_id":459},"horn_coral":{"protocol_id":460},"dead_brain_coral":{"protocol_id":461},"dead_bubble_coral":{"protocol_id":462},"dead_fire_coral":{"protocol_id":463},"dead_horn_coral":{"protocol_id":464},"dead_tube_coral":{"protocol_id":465},"tube_coral_fan":{"protocol_id":466},"brain_coral_fan":{"protocol_id":467},"bubble_coral_fan":{"protocol_id":468},"fire_coral_fan":{"protocol_id":469},"horn_coral_fan":{"protocol_id":470},"dead_tube_coral_fan":{"protocol_id":471},"dead_brain_coral_fan":{"protocol_id":472},"dead_bubble_coral_fan":{"protocol_id":473},"dead_fire_coral_fan":{"protocol_id":474},"dead_horn_coral_fan":{"protocol_id":475},"blue_ice":{"protocol_id":476},"conduit":{"protocol_id":477},"polished_granite_stairs":{"protocol_id":478},"smooth_red_sandstone_stairs":{"protocol_id":479},"mossy_stone_brick_stairs":{"protocol_id":480},"polished_diorite_stairs":{"protocol_id":481},"mossy_cobblestone_stairs":{"protocol_id":482},"end_stone_brick_stairs":{"protocol_id":483},"stone_stairs":{"protocol_id":484},"smooth_sandstone_stairs":{"protocol_id":485},"smooth_quartz_stairs":{"protocol_id":486},"granite_stairs":{"protocol_id":487},"andesite_stairs":{"protocol_id":488},"red_nether_brick_stairs":{"protocol_id":489},"polished_andesite_stairs":{"protocol_id":490},"diorite_stairs":{"protocol_id":491},"polished_granite_slab":{"protocol_id":492},"smooth_red_sandstone_slab":{"protocol_id":493},"mossy_stone_brick_slab":{"protocol_id":494},"polished_diorite_slab":{"protocol_id":495},"mossy_cobblestone_slab":{"protocol_id":496},"end_stone_brick_slab":{"protocol_id":497},"smooth_sandstone_slab":{"protocol_id":498},"smooth_quartz_slab":{"protocol_id":499},"granite_slab":{"protocol_id":500},"andesite_slab":{"protocol_id":501},"red_nether_brick_slab":{"protocol_id":502},"polished_andesite_slab":{"protocol_id":503},"diorite_slab":{"protocol_id":504},"scaffolding":{"protocol_id":505},"iron_door":{"protocol_id":506},"oak_door":{"protocol_id":507},"spruce_door":{"protocol_id":508},"birch_door":{"protocol_id":509},"jungle_door":{"protocol_id":510},"acacia_door":{"protocol_id":511},"dark_oak_door":{"protocol_id":512},"repeater":{"protocol_id":513},"comparator":{"protocol_id":514},"structure_block":{"protocol_id":515},"jigsaw":{"protocol_id":516},"composter":{"protocol_id":517},"turtle_helmet":{"protocol_id":518},"scute":{"protocol_id":519},"iron_shovel":{"protocol_id":520},"iron_pickaxe":{"protocol_id":521},"iron_axe":{"protocol_id":522},"flint_and_steel":{"protocol_id":523},"apple":{"protocol_id":524},"bow":{"protocol_id":525},"arrow":{"protocol_id":526},"coal":{"protocol_id":527},"charcoal":{"protocol_id":528},"diamond":{"protocol_id":529},"iron_ingot":{"protocol_id":530},"gold_ingot":{"protocol_id":531},"iron_sword":{"protocol_id":532},"wooden_sword":{"protocol_id":533},"wooden_shovel":{"protocol_id":534},"wooden_pickaxe":{"protocol_id":535},"wooden_axe":{"protocol_id":536},"stone_sword":{"protocol_id":537},"stone_shovel":{"protocol_id":538},"stone_pickaxe":{"protocol_id":539},"stone_axe":{"protocol_id":540},"diamond_sword":{"protocol_id":541},"diamond_shovel":{"protocol_id":542},"diamond_pickaxe":{"protocol_id":543},"diamond_axe":{"protocol_id":544},"stick":{"protocol_id":545},"bowl":{"protocol_id":546},"mushroom_stew":{"protocol_id":547},"golden_sword":{"protocol_id":548},"golden_shovel":{"protocol_id":549},"golden_pickaxe":{"protocol_id":550},"golden_axe":{"protocol_id":551},"string":{"protocol_id":552},"feather":{"protocol_id":553},"gunpowder":{"protocol_id":554},"wooden_hoe":{"protocol_id":555},"stone_hoe":{"protocol_id":556},"iron_hoe":{"protocol_id":557},"diamond_hoe":{"protocol_id":558},"golden_hoe":{"protocol_id":559},"wheat_seeds":{"protocol_id":560},"wheat":{"protocol_id":561},"bread":{"protocol_id":562},"leather_helmet":{"protocol_id":563},"leather_chestplate":{"protocol_id":564},"leather_leggings":{"protocol_id":565},"leather_boots":{"protocol_id":566},"chainmail_helmet":{"protocol_id":567},"chainmail_chestplate":{"protocol_id":568},"chainmail_leggings":{"protocol_id":569},"chainmail_boots":{"protocol_id":570},"iron_helmet":{"protocol_id":571},"iron_chestplate":{"protocol_id":572},"iron_leggings":{"protocol_id":573},"iron_boots":{"protocol_id":574},"diamond_helmet":{"protocol_id":575},"diamond_chestplate":{"protocol_id":576},"diamond_leggings":{"protocol_id":577},"diamond_boots":{"protocol_id":578},"golden_helmet":{"protocol_id":579},"golden_chestplate":{"protocol_id":580},"golden_leggings":{"protocol_id":581},"golden_boots":{"protocol_id":582},"flint":{"protocol_id":583},"porkchop":{"protocol_id":584},"cooked_porkchop":{"protocol_id":585},"painting":{"protocol_id":586},"golden_apple":{"protocol_id":587},"enchanted_golden_apple":{"protocol_id":588},"oak_sign":{"protocol_id":589},"spruce_sign":{"protocol_id":590},"birch_sign":{"protocol_id":591},"jungle_sign":{"protocol_id":592},"acacia_sign":{"protocol_id":593},"dark_oak_sign":{"protocol_id":594},"bucket":{"protocol_id":595},"water_bucket":{"protocol_id":596},"lava_bucket":{"protocol_id":597},"minecart":{"protocol_id":598},"saddle":{"protocol_id":599},"redstone":{"protocol_id":600},"snowball":{"protocol_id":601},"oak_boat":{"protocol_id":602},"leather":{"protocol_id":603},"milk_bucket":{"protocol_id":604},"pufferfish_bucket":{"protocol_id":605},"salmon_bucket":{"protocol_id":606},"cod_bucket":{"protocol_id":607},"tropical_fish_bucket":{"protocol_id":608},"brick":{"protocol_id":609},"clay_ball":{"protocol_id":610},"sugar_cane":{"protocol_id":611},"kelp":{"protocol_id":612},"dried_kelp_block":{"protocol_id":613},"bamboo":{"protocol_id":614},"paper":{"protocol_id":615},"book":{"protocol_id":616},"slime_ball":{"protocol_id":617},"chest_minecart":{"protocol_id":618},"furnace_minecart":{"protocol_id":619},"egg":{"protocol_id":620},"compass":{"protocol_id":621},"fishing_rod":{"protocol_id":622},"clock":{"protocol_id":623},"glowstone_dust":{"protocol_id":624},"cod":{"protocol_id":625},"salmon":{"protocol_id":626},"tropical_fish":{"protocol_id":627},"pufferfish":{"protocol_id":628},"cooked_cod":{"protocol_id":629},"cooked_salmon":{"protocol_id":630},"ink_sac":{"protocol_id":631},"red_dye":{"protocol_id":632},"green_dye":{"protocol_id":633},"cocoa_beans":{"protocol_id":634},"lapis_lazuli":{"protocol_id":635},"purple_dye":{"protocol_id":636},"cyan_dye":{"protocol_id":637},"light_gray_dye":{"protocol_id":638},"gray_dye":{"protocol_id":639},"pink_dye":{"protocol_id":640},"lime_dye":{"protocol_id":641},"yellow_dye":{"protocol_id":642},"light_blue_dye":{"protocol_id":643},"magenta_dye":{"protocol_id":644},"orange_dye":{"protocol_id":645},"bone_meal":{"protocol_id":646},"blue_dye":{"protocol_id":647},"brown_dye":{"protocol_id":648},"black_dye":{"protocol_id":649},"white_dye":{"protocol_id":650},"bone":{"protocol_id":651},"sugar":{"protocol_id":652},"cake":{"protocol_id":653},"white_bed":{"protocol_id":654},"orange_bed":{"protocol_id":655},"magenta_bed":{"protocol_id":656},"light_blue_bed":{"protocol_id":657},"yellow_bed":{"protocol_id":658},"lime_bed":{"protocol_id":659},"pink_bed":{"protocol_id":660},"gray_bed":{"protocol_id":661},"light_gray_bed":{"protocol_id":662},"cyan_bed":{"protocol_id":663},"purple_bed":{"protocol_id":664},"blue_bed":{"protocol_id":665},"brown_bed":{"protocol_id":666},"green_bed":{"protocol_id":667},"red_bed":{"protocol_id":668},"black_bed":{"protocol_id":669},"cookie":{"protocol_id":670},"filled_map":{"protocol_id":671},"shears":{"protocol_id":672},"melon_slice":{"protocol_id":673},"dried_kelp":{"protocol_id":674},"pumpkin_seeds":{"protocol_id":675},"melon_seeds":{"protocol_id":676},"beef":{"protocol_id":677},"cooked_beef":{"protocol_id":678},"chicken":{"protocol_id":679},"cooked_chicken":{"protocol_id":680},"rotten_flesh":{"protocol_id":681},"ender_pearl":{"protocol_id":682},"blaze_rod":{"protocol_id":683},"ghast_tear":{"protocol_id":684},"gold_nugget":{"protocol_id":685},"nether_wart":{"protocol_id":686},"potion":{"protocol_id":687},"glass_bottle":{"protocol_id":688},"spider_eye":{"protocol_id":689},"fermented_spider_eye":{"protocol_id":690},"blaze_powder":{"protocol_id":691},"magma_cream":{"protocol_id":692},"brewing_stand":{"protocol_id":693},"cauldron":{"protocol_id":694},"ender_eye":{"protocol_id":695},"glistering_melon_slice":{"protocol_id":696},"bat_spawn_egg":{"protocol_id":697},"blaze_spawn_egg":{"protocol_id":698},"cat_spawn_egg":{"protocol_id":699},"cave_spider_spawn_egg":{"protocol_id":700},"chicken_spawn_egg":{"protocol_id":701},"cod_spawn_egg":{"protocol_id":702},"cow_spawn_egg":{"protocol_id":703},"creeper_spawn_egg":{"protocol_id":704},"dolphin_spawn_egg":{"protocol_id":705},"donkey_spawn_egg":{"protocol_id":706},"drowned_spawn_egg":{"protocol_id":707},"elder_guardian_spawn_egg":{"protocol_id":708},"enderman_spawn_egg":{"protocol_id":709},"endermite_spawn_egg":{"protocol_id":710},"evoker_spawn_egg":{"protocol_id":711},"fox_spawn_egg":{"protocol_id":712},"ghast_spawn_egg":{"protocol_id":713},"guardian_spawn_egg":{"protocol_id":714},"horse_spawn_egg":{"protocol_id":715},"husk_spawn_egg":{"protocol_id":716},"llama_spawn_egg":{"protocol_id":717},"magma_cube_spawn_egg":{"protocol_id":718},"mooshroom_spawn_egg":{"protocol_id":719},"mule_spawn_egg":{"protocol_id":720},"ocelot_spawn_egg":{"protocol_id":721},"panda_spawn_egg":{"protocol_id":722},"parrot_spawn_egg":{"protocol_id":723},"phantom_spawn_egg":{"protocol_id":724},"pig_spawn_egg":{"protocol_id":725},"pillager_spawn_egg":{"protocol_id":726},"polar_bear_spawn_egg":{"protocol_id":727},"pufferfish_spawn_egg":{"protocol_id":728},"rabbit_spawn_egg":{"protocol_id":729},"ravager_spawn_egg":{"protocol_id":730},"salmon_spawn_egg":{"protocol_id":731},"sheep_spawn_egg":{"protocol_id":732},"shulker_spawn_egg":{"protocol_id":733},"silverfish_spawn_egg":{"protocol_id":734},"skeleton_spawn_egg":{"protocol_id":735},"skeleton_horse_spawn_egg":{"protocol_id":736},"slime_spawn_egg":{"protocol_id":737},"spider_spawn_egg":{"protocol_id":738},"squid_spawn_egg":{"protocol_id":739},"stray_spawn_egg":{"protocol_id":740},"trader_llama_spawn_egg":{"protocol_id":741},"tropical_fish_spawn_egg":{"protocol_id":742},"turtle_spawn_egg":{"protocol_id":743},"vex_spawn_egg":{"protocol_id":744},"villager_spawn_egg":{"protocol_id":745},"vindicator_spawn_egg":{"protocol_id":746},"wandering_trader_spawn_egg":{"protocol_id":747},"witch_spawn_egg":{"protocol_id":748},"wither_skeleton_spawn_egg":{"protocol_id":749},"wolf_spawn_egg":{"protocol_id":750},"zombie_spawn_egg":{"protocol_id":751},"zombie_horse_spawn_egg":{"protocol_id":752},"zombie_pigman_spawn_egg":{"protocol_id":753},"zombie_villager_spawn_egg":{"protocol_id":754},"experience_bottle":{"protocol_id":755},"fire_charge":{"protocol_id":756},"writable_book":{"protocol_id":757},"written_book":{"protocol_id":758},"emerald":{"protocol_id":759},"item_frame":{"protocol_id":760},"flower_pot":{"protocol_id":761},"carrot":{"protocol_id":762},"potato":{"protocol_id":763},"baked_potato":{"protocol_id":764},"poisonous_potato":{"protocol_id":765},"map":{"protocol_id":766},"golden_carrot":{"protocol_id":767},"skeleton_skull":{"protocol_id":768},"wither_skeleton_skull":{"protocol_id":769},"player_head":{"protocol_id":770},"zombie_head":{"protocol_id":771},"creeper_head":{"protocol_id":772},"dragon_head":{"protocol_id":773},"carrot_on_a_stick":{"protocol_id":774},"nether_star":{"protocol_id":775},"pumpkin_pie":{"protocol_id":776},"firework_rocket":{"protocol_id":777},"firework_star":{"protocol_id":778},"enchanted_book":{"protocol_id":779},"nether_brick":{"protocol_id":780},"quartz":{"protocol_id":781},"tnt_minecart":{"protocol_id":782},"hopper_minecart":{"protocol_id":783},"prismarine_shard":{"protocol_id":784},"prismarine_crystals":{"protocol_id":785},"rabbit":{"protocol_id":786},"cooked_rabbit":{"protocol_id":787},"rabbit_stew":{"protocol_id":788},"rabbit_foot":{"protocol_id":789},"rabbit_hide":{"protocol_id":790},"armor_stand":{"protocol_id":791},"iron_horse_armor":{"protocol_id":792},"golden_horse_armor":{"protocol_id":793},"diamond_horse_armor":{"protocol_id":794},"leather_horse_armor":{"protocol_id":795},"lead":{"protocol_id":796},"name_tag":{"protocol_id":797},"command_block_minecart":{"protocol_id":798},"mutton":{"protocol_id":799},"cooked_mutton":{"protocol_id":800},"white_banner":{"protocol_id":801},"orange_banner":{"protocol_id":802},"magenta_banner":{"protocol_id":803},"light_blue_banner":{"protocol_id":804},"yellow_banner":{"protocol_id":805},"lime_banner":{"protocol_id":806},"pink_banner":{"protocol_id":807},"gray_banner":{"protocol_id":808},"light_gray_banner":{"protocol_id":809},"cyan_banner":{"protocol_id":810},"purple_banner":{"protocol_id":811},"blue_banner":{"protocol_id":812},"brown_banner":{"protocol_id":813},"green_banner":{"protocol_id":814},"red_banner":{"protocol_id":815},"black_banner":{"protocol_id":816},"end_crystal":{"protocol_id":817},"chorus_fruit":{"protocol_id":818},"popped_chorus_fruit":{"protocol_id":819},"beetroot":{"protocol_id":820},"beetroot_seeds":{"protocol_id":821},"beetroot_soup":{"protocol_id":822},"dragon_breath":{"protocol_id":823},"splash_potion":{"protocol_id":824},"spectral_arrow":{"protocol_id":825},"tipped_arrow":{"protocol_id":826},"lingering_potion":{"protocol_id":827},"shield":{"protocol_id":828},"elytra":{"protocol_id":829},"spruce_boat":{"protocol_id":830},"birch_boat":{"protocol_id":831},"jungle_boat":{"protocol_id":832},"acacia_boat":{"protocol_id":833},"dark_oak_boat":{"protocol_id":834},"totem_of_undying":{"protocol_id":835},"shulker_shell":{"protocol_id":836},"iron_nugget":{"protocol_id":837},"knowledge_book":{"protocol_id":838},"debug_stick":{"protocol_id":839},"music_disc_13":{"protocol_id":840},"music_disc_cat":{"protocol_id":841},"music_disc_blocks":{"protocol_id":842},"music_disc_chirp":{"protocol_id":843},"music_disc_far":{"protocol_id":844},"music_disc_mall":{"protocol_id":845},"music_disc_mellohi":{"protocol_id":846},"music_disc_stal":{"protocol_id":847},"music_disc_strad":{"protocol_id":848},"music_disc_ward":{"protocol_id":849},"music_disc_11":{"protocol_id":850},"music_disc_wait":{"protocol_id":851},"trident":{"protocol_id":852},"phantom_membrane":{"protocol_id":853},"nautilus_shell":{"protocol_id":854},"heart_of_the_sea":{"protocol_id":855},"crossbow":{"protocol_id":856},"suspicious_stew":{"protocol_id":857},"loom":{"protocol_id":858},"flower_banner_pattern":{"protocol_id":859},"creeper_banner_pattern":{"protocol_id":860},"skull_banner_pattern":{"protocol_id":861},"mojang_banner_pattern":{"protocol_id":862},"globe_banner_pattern":{"protocol_id":863},"barrel":{"protocol_id":864},"smoker":{"protocol_id":865},"blast_furnace":{"protocol_id":866},"cartography_table":{"protocol_id":867},"fletching_table":{"protocol_id":868},"grindstone":{"protocol_id":869},"lectern":{"protocol_id":870},"smithing_table":{"protocol_id":871},"stonecutter":{"protocol_id":872},"bell":{"protocol_id":873},"lantern":{"protocol_id":874},"sweet_berries":{"protocol_id":875},"campfire":{"protocol_id":876}}},"potion":{"default":"empty","protocol_id":7,"entries":{"empty":{"protocol_id":0},"water":{"protocol_id":1},"mundane":{"protocol_id":2},"thick":{"protocol_id":3},"awkward":{"protocol_id":4},"night_vision":{"protocol_id":5},"long_night_vision":{"protocol_id":6},"invisibility":{"protocol_id":7},"long_invisibility":{"protocol_id":8},"leaping":{"protocol_id":9},"long_leaping":{"protocol_id":10},"strong_leaping":{"protocol_id":11},"fire_resistance":{"protocol_id":12},"long_fire_resistance":{"protocol_id":13},"swiftness":{"protocol_id":14},"long_swiftness":{"protocol_id":15},"strong_swiftness":{"protocol_id":16},"slowness":{"protocol_id":17},"long_slowness":{"protocol_id":18},"strong_slowness":{"protocol_id":19},"turtle_master":{"protocol_id":20},"long_turtle_master":{"protocol_id":21},"strong_turtle_master":{"protocol_id":22},"water_breathing":{"protocol_id":23},"long_water_breathing":{"protocol_id":24},"healing":{"protocol_id":25},"strong_healing":{"protocol_id":26},"harming":{"protocol_id":27},"strong_harming":{"protocol_id":28},"poison":{"protocol_id":29},"long_poison":{"protocol_id":30},"strong_poison":{"protocol_id":31},"regeneration":{"protocol_id":32},"long_regeneration":{"protocol_id":33},"strong_regeneration":{"protocol_id":34},"strength":{"protocol_id":35},"long_strength":{"protocol_id":36},"strong_strength":{"protocol_id":37},"weakness":{"protocol_id":38},"long_weakness":{"protocol_id":39},"luck":{"protocol_id":40},"slow_falling":{"protocol_id":41},"long_slow_falling":{"protocol_id":42}}},"carver":{"protocol_id":8,"entries":{"cave":{"protocol_id":0},"hell_cave":{"protocol_id":1},"canyon":{"protocol_id":2},"underwater_canyon":{"protocol_id":3},"underwater_cave":{"protocol_id":4}}},"surface_builder":{"protocol_id":9,"entries":{"default":{"protocol_id":0},"mountain":{"protocol_id":1},"shattered_savanna":{"protocol_id":2},"gravelly_mountain":{"protocol_id":3},"giant_tree_taiga":{"protocol_id":4},"swamp":{"protocol_id":5},"badlands":{"protocol_id":6},"wooded_badlands":{"protocol_id":7},"eroded_badlands":{"protocol_id":8},"frozen_ocean":{"protocol_id":9},"nether":{"protocol_id":10},"nope":{"protocol_id":11}}},"feature":{"protocol_id":10,"entries":{"pillager_outpost":{"protocol_id":0},"mineshaft":{"protocol_id":1},"woodland_mansion":{"protocol_id":2},"jungle_temple":{"protocol_id":3},"desert_pyramid":{"protocol_id":4},"igloo":{"protocol_id":5},"shipwreck":{"protocol_id":6},"swamp_hut":{"protocol_id":7},"stronghold":{"protocol_id":8},"ocean_monument":{"protocol_id":9},"ocean_ruin":{"protocol_id":10},"nether_bridge":{"protocol_id":11},"end_city":{"protocol_id":12},"buried_treasure":{"protocol_id":13},"village":{"protocol_id":14},"fancy_tree":{"protocol_id":15},"birch_tree":{"protocol_id":16},"super_birch_tree":{"protocol_id":17},"jungle_ground_bush":{"protocol_id":18},"jungle_tree":{"protocol_id":19},"pine_tree":{"protocol_id":20},"dark_oak_tree":{"protocol_id":21},"savanna_tree":{"protocol_id":22},"spruce_tree":{"protocol_id":23},"swamp_tree":{"protocol_id":24},"normal_tree":{"protocol_id":25},"mega_jungle_tree":{"protocol_id":26},"mega_pine_tree":{"protocol_id":27},"mega_spruce_tree":{"protocol_id":28},"default_flower":{"protocol_id":29},"forest_flower":{"protocol_id":30},"plain_flower":{"protocol_id":31},"swamp_flower":{"protocol_id":32},"general_forest_flower":{"protocol_id":33},"jungle_grass":{"protocol_id":34},"taiga_grass":{"protocol_id":35},"grass":{"protocol_id":36},"void_start_platform":{"protocol_id":37},"cactus":{"protocol_id":38},"dead_bush":{"protocol_id":39},"desert_well":{"protocol_id":40},"fossil":{"protocol_id":41},"hell_fire":{"protocol_id":42},"huge_red_mushroom":{"protocol_id":43},"huge_brown_mushroom":{"protocol_id":44},"ice_spike":{"protocol_id":45},"glowstone_blob":{"protocol_id":46},"melon":{"protocol_id":47},"pumpkin":{"protocol_id":48},"reed":{"protocol_id":49},"freeze_top_layer":{"protocol_id":50},"vines":{"protocol_id":51},"waterlily":{"protocol_id":52},"monster_room":{"protocol_id":53},"blue_ice":{"protocol_id":54},"iceberg":{"protocol_id":55},"forest_rock":{"protocol_id":56},"hay_pile":{"protocol_id":57},"snow_pile":{"protocol_id":58},"ice_pile":{"protocol_id":59},"melon_pile":{"protocol_id":60},"pumpkin_pile":{"protocol_id":61},"bush":{"protocol_id":62},"disk":{"protocol_id":63},"double_plant":{"protocol_id":64},"nether_spring":{"protocol_id":65},"ice_patch":{"protocol_id":66},"lake":{"protocol_id":67},"ore":{"protocol_id":68},"random_random_selector":{"protocol_id":69},"random_selector":{"protocol_id":70},"simple_random_selector":{"protocol_id":71},"random_boolean_selector":{"protocol_id":72},"emerald_ore":{"protocol_id":73},"spring_feature":{"protocol_id":74},"end_spike":{"protocol_id":75},"end_island":{"protocol_id":76},"chorus_plant":{"protocol_id":77},"end_gateway":{"protocol_id":78},"seagrass":{"protocol_id":79},"kelp":{"protocol_id":80},"coral_tree":{"protocol_id":81},"coral_mushroom":{"protocol_id":82},"coral_claw":{"protocol_id":83},"sea_pickle":{"protocol_id":84},"simple_block":{"protocol_id":85},"bamboo":{"protocol_id":86},"decorated":{"protocol_id":87},"decorated_flower":{"protocol_id":88},"sweet_berry_bush":{"protocol_id":89},"fill_layer":{"protocol_id":90},"bonus_chest":{"protocol_id":91}}},"decorator":{"protocol_id":11,"entries":{"count_heightmap":{"protocol_id":0},"count_top_solid":{"protocol_id":1},"count_heightmap_32":{"protocol_id":2},"count_heightmap_double":{"protocol_id":3},"count_height_64":{"protocol_id":4},"noise_heightmap_32":{"protocol_id":5},"noise_heightmap_double":{"protocol_id":6},"nope":{"protocol_id":7},"chance_heightmap":{"protocol_id":8},"chance_heightmap_double":{"protocol_id":9},"chance_passthrough":{"protocol_id":10},"chance_top_solid_heightmap":{"protocol_id":11},"count_extra_heightmap":{"protocol_id":12},"count_range":{"protocol_id":13},"count_biased_range":{"protocol_id":14},"count_very_biased_range":{"protocol_id":15},"random_count_range":{"protocol_id":16},"chance_range":{"protocol_id":17},"count_chance_heightmap":{"protocol_id":18},"count_chance_heightmap_double":{"protocol_id":19},"count_depth_average":{"protocol_id":20},"top_solid_heightmap":{"protocol_id":21},"top_solid_heightmap_range":{"protocol_id":22},"top_solid_heightmap_noise_biased":{"protocol_id":23},"carving_mask":{"protocol_id":24},"forest_rock":{"protocol_id":25},"hell_fire":{"protocol_id":26},"magma":{"protocol_id":27},"emerald_ore":{"protocol_id":28},"lava_lake":{"protocol_id":29},"water_lake":{"protocol_id":30},"dungeons":{"protocol_id":31},"dark_oak_tree":{"protocol_id":32},"iceberg":{"protocol_id":33},"light_gem_chance":{"protocol_id":34},"end_island":{"protocol_id":35},"chorus_plant":{"protocol_id":36},"end_gateway":{"protocol_id":37}}},"biome":{"protocol_id":12,"entries":{"ocean":{"protocol_id":0},"plains":{"protocol_id":1},"desert":{"protocol_id":2},"mountains":{"protocol_id":3},"forest":{"protocol_id":4},"taiga":{"protocol_id":5},"swamp":{"protocol_id":6},"river":{"protocol_id":7},"nether":{"protocol_id":8},"the_end":{"protocol_id":9},"frozen_ocean":{"protocol_id":10},"frozen_river":{"protocol_id":11},"snowy_tundra":{"protocol_id":12},"snowy_mountains":{"protocol_id":13},"mushroom_fields":{"protocol_id":14},"mushroom_field_shore":{"protocol_id":15},"beach":{"protocol_id":16},"desert_hills":{"protocol_id":17},"wooded_hills":{"protocol_id":18},"taiga_hills":{"protocol_id":19},"mountain_edge":{"protocol_id":20},"jungle":{"protocol_id":21},"jungle_hills":{"protocol_id":22},"jungle_edge":{"protocol_id":23},"deep_ocean":{"protocol_id":24},"stone_shore":{"protocol_id":25},"snowy_beach":{"protocol_id":26},"birch_forest":{"protocol_id":27},"birch_forest_hills":{"protocol_id":28},"dark_forest":{"protocol_id":29},"snowy_taiga":{"protocol_id":30},"snowy_taiga_hills":{"protocol_id":31},"giant_tree_taiga":{"protocol_id":32},"giant_tree_taiga_hills":{"protocol_id":33},"wooded_mountains":{"protocol_id":34},"savanna":{"protocol_id":35},"savanna_plateau":{"protocol_id":36},"badlands":{"protocol_id":37},"wooded_badlands_plateau":{"protocol_id":38},"badlands_plateau":{"protocol_id":39},"small_end_islands":{"protocol_id":40},"end_midlands":{"protocol_id":41},"end_highlands":{"protocol_id":42},"end_barrens":{"protocol_id":43},"warm_ocean":{"protocol_id":44},"lukewarm_ocean":{"protocol_id":45},"cold_ocean":{"protocol_id":46},"deep_warm_ocean":{"protocol_id":47},"deep_lukewarm_ocean":{"protocol_id":48},"deep_cold_ocean":{"protocol_id":49},"deep_frozen_ocean":{"protocol_id":50},"the_void":{"protocol_id":127},"sunflower_plains":{"protocol_id":129},"desert_lakes":{"protocol_id":130},"gravelly_mountains":{"protocol_id":131},"flower_forest":{"protocol_id":132},"taiga_mountains":{"protocol_id":133},"swamp_hills":{"protocol_id":134},"ice_spikes":{"protocol_id":140},"modified_jungle":{"protocol_id":149},"modified_jungle_edge":{"protocol_id":151},"tall_birch_forest":{"protocol_id":155},"tall_birch_hills":{"protocol_id":156},"dark_forest_hills":{"protocol_id":157},"snowy_taiga_mountains":{"protocol_id":158},"giant_spruce_taiga":{"protocol_id":160},"giant_spruce_taiga_hills":{"protocol_id":161},"modified_gravelly_mountains":{"protocol_id":162},"shattered_savanna":{"protocol_id":163},"shattered_savanna_plateau":{"protocol_id":164},"eroded_badlands":{"protocol_id":165},"modified_wooded_badlands_plateau":{"protocol_id":166},"modified_badlands_plateau":{"protocol_id":167},"bamboo_jungle":{"protocol_id":168},"bamboo_jungle_hills":{"protocol_id":169}}},"particle_type":{"protocol_id":13,"entries":{"ambient_entity_effect":{"protocol_id":0},"angry_villager":{"protocol_id":1},"barrier":{"protocol_id":2},"block":{"protocol_id":3},"bubble":{"protocol_id":4},"cloud":{"protocol_id":5},"crit":{"protocol_id":6},"damage_indicator":{"protocol_id":7},"dragon_breath":{"protocol_id":8},"dripping_lava":{"protocol_id":9},"falling_lava":{"protocol_id":10},"landing_lava":{"protocol_id":11},"dripping_water":{"protocol_id":12},"falling_water":{"protocol_id":13},"dust":{"protocol_id":14},"effect":{"protocol_id":15},"elder_guardian":{"protocol_id":16},"enchanted_hit":{"protocol_id":17},"enchant":{"protocol_id":18},"end_rod":{"protocol_id":19},"entity_effect":{"protocol_id":20},"explosion_emitter":{"protocol_id":21},"explosion":{"protocol_id":22},"falling_dust":{"protocol_id":23},"firework":{"protocol_id":24},"fishing":{"protocol_id":25},"flame":{"protocol_id":26},"flash":{"protocol_id":27},"happy_villager":{"protocol_id":28},"composter":{"protocol_id":29},"heart":{"protocol_id":30},"instant_effect":{"protocol_id":31},"item":{"protocol_id":32},"item_slime":{"protocol_id":33},"item_snowball":{"protocol_id":34},"large_smoke":{"protocol_id":35},"lava":{"protocol_id":36},"mycelium":{"protocol_id":37},"note":{"protocol_id":38},"poof":{"protocol_id":39},"portal":{"protocol_id":40},"rain":{"protocol_id":41},"smoke":{"protocol_id":42},"sneeze":{"protocol_id":43},"spit":{"protocol_id":44},"squid_ink":{"protocol_id":45},"sweep_attack":{"protocol_id":46},"totem_of_undying":{"protocol_id":47},"underwater":{"protocol_id":48},"splash":{"protocol_id":49},"witch":{"protocol_id":50},"bubble_pop":{"protocol_id":51},"current_down":{"protocol_id":52},"bubble_column_up":{"protocol_id":53},"nautilus":{"protocol_id":54},"dolphin":{"protocol_id":55},"campfire_cosy_smoke":{"protocol_id":56},"campfire_signal_smoke":{"protocol_id":57}}},"biome_source_type":{"protocol_id":14,"entries":{"checkerboard":{"protocol_id":0},"fixed":{"protocol_id":1},"vanilla_layered":{"protocol_id":2},"the_end":{"protocol_id":3}}},"block_entity_type":{"protocol_id":15,"entries":{"furnace":{"protocol_id":0},"chest":{"protocol_id":1},"trapped_chest":{"protocol_id":2},"ender_chest":{"protocol_id":3},"jukebox":{"protocol_id":4},"dispenser":{"protocol_id":5},"dropper":{"protocol_id":6},"sign":{"protocol_id":7},"mob_spawner":{"protocol_id":8},"piston":{"protocol_id":9},"brewing_stand":{"protocol_id":10},"enchanting_table":{"protocol_id":11},"end_portal":{"protocol_id":12},"beacon":{"protocol_id":13},"skull":{"protocol_id":14},"daylight_detector":{"protocol_id":15},"hopper":{"protocol_id":16},"comparator":{"protocol_id":17},"banner":{"protocol_id":18},"structure_block":{"protocol_id":19},"end_gateway":{"protocol_id":20},"command_block":{"protocol_id":21},"shulker_box":{"protocol_id":22},"bed":{"protocol_id":23},"conduit":{"protocol_id":24},"barrel":{"protocol_id":25},"smoker":{"protocol_id":26},"blast_furnace":{"protocol_id":27},"lectern":{"protocol_id":28},"bell":{"protocol_id":29},"jigsaw":{"protocol_id":30},"campfire":{"protocol_id":31}}},"chunk_generator_type":{"protocol_id":16,"entries":{"surface":{"protocol_id":0},"caves":{"protocol_id":1},"floating_islands":{"protocol_id":2},"debug":{"protocol_id":3},"flat":{"protocol_id":4}}},"dimension_type":{"protocol_id":17,"entries":{"overworld":{"protocol_id":1},"the_nether":{"protocol_id":0},"the_end":{"protocol_id":2}}},"motive":{"default":"kebab","protocol_id":18,"entries":{"kebab":{"protocol_id":0},"aztec":{"protocol_id":1},"alban":{"protocol_id":2},"aztec2":{"protocol_id":3},"bomb":{"protocol_id":4},"plant":{"protocol_id":5},"wasteland":{"protocol_id":6},"pool":{"protocol_id":7},"courbet":{"protocol_id":8},"sea":{"protocol_id":9},"sunset":{"protocol_id":10},"creebet":{"protocol_id":11},"wanderer":{"protocol_id":12},"graham":{"protocol_id":13},"match":{"protocol_id":14},"bust":{"protocol_id":15},"stage":{"protocol_id":16},"void":{"protocol_id":17},"skull_and_roses":{"protocol_id":18},"wither":{"protocol_id":19},"fighters":{"protocol_id":20},"pointer":{"protocol_id":21},"pigscene":{"protocol_id":22},"burning_skull":{"protocol_id":23},"skeleton":{"protocol_id":24},"donkey_kong":{"protocol_id":25}}},"custom_stat":{"protocol_id":19,"entries":{"leave_game":{"protocol_id":0},"play_one_minute":{"protocol_id":1},"time_since_death":{"protocol_id":2},"time_since_rest":{"protocol_id":3},"sneak_time":{"protocol_id":4},"walk_one_cm":{"protocol_id":5},"crouch_one_cm":{"protocol_id":6},"sprint_one_cm":{"protocol_id":7},"walk_on_water_one_cm":{"protocol_id":8},"fall_one_cm":{"protocol_id":9},"climb_one_cm":{"protocol_id":10},"fly_one_cm":{"protocol_id":11},"walk_under_water_one_cm":{"protocol_id":12},"minecart_one_cm":{"protocol_id":13},"boat_one_cm":{"protocol_id":14},"pig_one_cm":{"protocol_id":15},"horse_one_cm":{"protocol_id":16},"aviate_one_cm":{"protocol_id":17},"swim_one_cm":{"protocol_id":18},"jump":{"protocol_id":19},"drop":{"protocol_id":20},"damage_dealt":{"protocol_id":21},"damage_dealt_absorbed":{"protocol_id":22},"damage_dealt_resisted":{"protocol_id":23},"damage_taken":{"protocol_id":24},"damage_blocked_by_shield":{"protocol_id":25},"damage_absorbed":{"protocol_id":26},"damage_resisted":{"protocol_id":27},"deaths":{"protocol_id":28},"mob_kills":{"protocol_id":29},"animals_bred":{"protocol_id":30},"player_kills":{"protocol_id":31},"fish_caught":{"protocol_id":32},"talked_to_villager":{"protocol_id":33},"traded_with_villager":{"protocol_id":34},"eat_cake_slice":{"protocol_id":35},"fill_cauldron":{"protocol_id":36},"use_cauldron":{"protocol_id":37},"clean_armor":{"protocol_id":38},"clean_banner":{"protocol_id":39},"clean_shulker_box":{"protocol_id":40},"interact_with_brewingstand":{"protocol_id":41},"interact_with_beacon":{"protocol_id":42},"inspect_dropper":{"protocol_id":43},"inspect_hopper":{"protocol_id":44},"inspect_dispenser":{"protocol_id":45},"play_noteblock":{"protocol_id":46},"tune_noteblock":{"protocol_id":47},"pot_flower":{"protocol_id":48},"trigger_trapped_chest":{"protocol_id":49},"open_enderchest":{"protocol_id":50},"enchant_item":{"protocol_id":51},"play_record":{"protocol_id":52},"interact_with_furnace":{"protocol_id":53},"interact_with_crafting_table":{"protocol_id":54},"open_chest":{"protocol_id":55},"sleep_in_bed":{"protocol_id":56},"open_shulker_box":{"protocol_id":57},"open_barrel":{"protocol_id":58},"interact_with_blast_furnace":{"protocol_id":59},"interact_with_smoker":{"protocol_id":60},"interact_with_lectern":{"protocol_id":61},"interact_with_campfire":{"protocol_id":62},"interact_with_cartography_table":{"protocol_id":63},"interact_with_loom":{"protocol_id":64},"interact_with_stonecutter":{"protocol_id":65},"bell_ring":{"protocol_id":66},"raid_trigger":{"protocol_id":67},"raid_win":{"protocol_id":68}}},"chunk_status":{"default":"empty","protocol_id":20,"entries":{"empty":{"protocol_id":0},"structure_starts":{"protocol_id":1},"structure_references":{"protocol_id":2},"biomes":{"protocol_id":3},"noise":{"protocol_id":4},"surface":{"protocol_id":5},"carvers":{"protocol_id":6},"liquid_carvers":{"protocol_id":7},"features":{"protocol_id":8},"light":{"protocol_id":9},"spawn":{"protocol_id":10},"heightmaps":{"protocol_id":11},"full":{"protocol_id":12}}},"structure_feature":{"protocol_id":21,"entries":{"mineshaft":{"protocol_id":0},"pillager_outpost":{"protocol_id":1},"fortress":{"protocol_id":2},"stronghold":{"protocol_id":3},"jungle_pyramid":{"protocol_id":4},"ocean_ruin":{"protocol_id":5},"desert_pyramid":{"protocol_id":6},"igloo":{"protocol_id":7},"swamp_hut":{"protocol_id":8},"monument":{"protocol_id":9},"endcity":{"protocol_id":10},"mansion":{"protocol_id":11},"buried_treasure":{"protocol_id":12},"shipwreck":{"protocol_id":13},"village":{"protocol_id":14}}},"structure_piece":{"protocol_id":22,"entries":{"mscorridor":{"protocol_id":0},"mscrossing":{"protocol_id":1},"msroom":{"protocol_id":2},"msstairs":{"protocol_id":3},"pcp":{"protocol_id":4},"nvi":{"protocol_id":5},"nebcr":{"protocol_id":6},"nebef":{"protocol_id":7},"nebs":{"protocol_id":8},"neccs":{"protocol_id":9},"nectb":{"protocol_id":10},"nece":{"protocol_id":11},"nescsc":{"protocol_id":12},"nesclt":{"protocol_id":13},"nesc":{"protocol_id":14},"nescrt":{"protocol_id":15},"necsr":{"protocol_id":16},"nemt":{"protocol_id":17},"nerc":{"protocol_id":18},"nesr":{"protocol_id":19},"nestart":{"protocol_id":20},"shcc":{"protocol_id":21},"shfc":{"protocol_id":22},"sh5c":{"protocol_id":23},"shlt":{"protocol_id":24},"shli":{"protocol_id":25},"shpr":{"protocol_id":26},"shph":{"protocol_id":27},"shrt":{"protocol_id":28},"shrc":{"protocol_id":29},"shsd":{"protocol_id":30},"shstart":{"protocol_id":31},"shs":{"protocol_id":32},"shssd":{"protocol_id":33},"tejp":{"protocol_id":34},"orp":{"protocol_id":35},"iglu":{"protocol_id":36},"tesh":{"protocol_id":37},"tedp":{"protocol_id":38},"omb":{"protocol_id":39},"omcr":{"protocol_id":40},"omdxr":{"protocol_id":41},"omdxyr":{"protocol_id":42},"omdyr":{"protocol_id":43},"omdyzr":{"protocol_id":44},"omdzr":{"protocol_id":45},"omentry":{"protocol_id":46},"ompenthouse":{"protocol_id":47},"omsimple":{"protocol_id":48},"omsimplet":{"protocol_id":49},"omwr":{"protocol_id":50},"ecp":{"protocol_id":51},"wmp":{"protocol_id":52},"btp":{"protocol_id":53},"shipwreck":{"protocol_id":54}}},"rule_test":{"protocol_id":23,"entries":{"always_true":{"protocol_id":0},"block_match":{"protocol_id":1},"blockstate_match":{"protocol_id":2},"tag_match":{"protocol_id":3},"random_block_match":{"protocol_id":4},"random_blockstate_match":{"protocol_id":5}}},"structure_processor":{"protocol_id":24,"entries":{"block_ignore":{"protocol_id":0},"block_rot":{"protocol_id":1},"gravity":{"protocol_id":2},"jigsaw_replacement":{"protocol_id":3},"rule":{"protocol_id":4},"nop":{"protocol_id":5}}},"structure_pool_element":{"protocol_id":25,"entries":{"single_pool_element":{"protocol_id":0},"list_pool_element":{"protocol_id":1},"feature_pool_element":{"protocol_id":2},"empty_pool_element":{"protocol_id":3}}},"menu":{"protocol_id":26,"entries":{"generic_9x1":{"protocol_id":0},"generic_9x2":{"protocol_id":1},"generic_9x3":{"protocol_id":2},"generic_9x4":{"protocol_id":3},"generic_9x5":{"protocol_id":4},"generic_9x6":{"protocol_id":5},"generic_3x3":{"protocol_id":6},"anvil":{"protocol_id":7},"beacon":{"protocol_id":8},"blast_furnace":{"protocol_id":9},"brewing_stand":{"protocol_id":10},"crafting":{"protocol_id":11},"enchantment":{"protocol_id":12},"furnace":{"protocol_id":13},"grindstone":{"protocol_id":14},"hopper":{"protocol_id":15},"lectern":{"protocol_id":16},"loom":{"protocol_id":17},"merchant":{"protocol_id":18},"shulker_box":{"protocol_id":19},"smoker":{"protocol_id":20},"cartography":{"protocol_id":21},"stonecutter":{"protocol_id":22}}},"recipe_type":{"protocol_id":27,"entries":{"crafting":{"protocol_id":0},"smelting":{"protocol_id":1},"blasting":{"protocol_id":2},"smoking":{"protocol_id":3},"campfire_cooking":{"protocol_id":4},"stonecutting":{"protocol_id":5}}},"recipe_serializer":{"protocol_id":28,"entries":{"crafting_shaped":{"protocol_id":0},"crafting_shapeless":{"protocol_id":1},"crafting_special_armordye":{"protocol_id":2},"crafting_special_bookcloning":{"protocol_id":3},"crafting_special_mapcloning":{"protocol_id":4},"crafting_special_mapextending":{"protocol_id":5},"crafting_special_firework_rocket":{"protocol_id":6},"crafting_special_firework_star":{"protocol_id":7},"crafting_special_firework_star_fade":{"protocol_id":8},"crafting_special_tippedarrow":{"protocol_id":9},"crafting_special_bannerduplicate":{"protocol_id":10},"crafting_special_shielddecoration":{"protocol_id":11},"crafting_special_shulkerboxcoloring":{"protocol_id":12},"crafting_special_suspiciousstew":{"protocol_id":13},"crafting_special_repairitem":{"protocol_id":14},"smelting":{"protocol_id":15},"blasting":{"protocol_id":16},"smoking":{"protocol_id":17},"campfire_cooking":{"protocol_id":18},"stonecutting":{"protocol_id":19}}},"stat_type":{"protocol_id":29,"entries":{"mined":{"protocol_id":0},"crafted":{"protocol_id":1},"used":{"protocol_id":2},"broken":{"protocol_id":3},"picked_up":{"protocol_id":4},"dropped":{"protocol_id":5},"killed":{"protocol_id":6},"killed_by":{"protocol_id":7},"custom":{"protocol_id":8}}},"villager_type":{"default":"plains","protocol_id":30,"entries":{"desert":{"protocol_id":0},"jungle":{"protocol_id":1},"plains":{"protocol_id":2},"savanna":{"protocol_id":3},"snow":{"protocol_id":4},"swamp":{"protocol_id":5},"taiga":{"protocol_id":6}}},"villager_profession":{"default":"none","protocol_id":31,"entries":{"none":{"protocol_id":0},"armorer":{"protocol_id":1},"butcher":{"protocol_id":2},"cartographer":{"protocol_id":3},"cleric":{"protocol_id":4},"farmer":{"protocol_id":5},"fisherman":{"protocol_id":6},"fletcher":{"protocol_id":7},"leatherworker":{"protocol_id":8},"librarian":{"protocol_id":9},"mason":{"protocol_id":10},"nitwit":{"protocol_id":11},"shepherd":{"protocol_id":12},"toolsmith":{"protocol_id":13},"weaponsmith":{"protocol_id":14}}},"point_of_interest_type":{"default":"unemployed","protocol_id":32,"entries":{"unemployed":{"protocol_id":0},"armorer":{"protocol_id":1},"butcher":{"protocol_id":2},"cartographer":{"protocol_id":3},"cleric":{"protocol_id":4},"farmer":{"protocol_id":5},"fisherman":{"protocol_id":6},"fletcher":{"protocol_id":7},"leatherworker":{"protocol_id":8},"librarian":{"protocol_id":9},"mason":{"protocol_id":10},"nitwit":{"protocol_id":11},"shepherd":{"protocol_id":12},"toolsmith":{"protocol_id":13},"weaponsmith":{"protocol_id":14},"home":{"protocol_id":15},"meeting":{"protocol_id":16}}},"memory_module_type":{"default":"dummy","protocol_id":33,"entries":{"dummy":{"protocol_id":0},"home":{"protocol_id":1},"job_site":{"protocol_id":2},"meeting_point":{"protocol_id":3},"secondary_job_site":{"protocol_id":4},"mobs":{"protocol_id":5},"visible_mobs":{"protocol_id":6},"visible_villager_babies":{"protocol_id":7},"nearest_players":{"protocol_id":8},"nearest_visible_player":{"protocol_id":9},"walk_target":{"protocol_id":10},"look_target":{"protocol_id":11},"interaction_target":{"protocol_id":12},"breed_target":{"protocol_id":13},"path":{"protocol_id":14},"interactable_doors":{"protocol_id":15},"opened_doors":{"protocol_id":16},"nearest_bed":{"protocol_id":17},"hurt_by":{"protocol_id":18},"hurt_by_entity":{"protocol_id":19},"nearest_hostile":{"protocol_id":20},"hiding_place":{"protocol_id":21},"heard_bell_time":{"protocol_id":22},"cant_reach_walk_target_since":{"protocol_id":23},"golem_last_seen_time":{"protocol_id":24},"last_slept":{"protocol_id":25},"last_worked_at_poi":{"protocol_id":26}}},"sensor_type":{"default":"dummy","protocol_id":34,"entries":{"dummy":{"protocol_id":0},"nearest_living_entities":{"protocol_id":1},"nearest_players":{"protocol_id":2},"interactable_doors":{"protocol_id":3},"nearest_bed":{"protocol_id":4},"hurt_by":{"protocol_id":5},"villager_hostiles":{"protocol_id":6},"villager_babies":{"protocol_id":7},"secondary_pois":{"protocol_id":8},"golem_last_seen":{"protocol_id":9}}},"schedule":{"protocol_id":35,"entries":{"empty":{"protocol_id":0},"simple":{"protocol_id":1},"villager_baby":{"protocol_id":2},"villager_default":{"protocol_id":3}}},"activity":{"protocol_id":36,"entries":{"core":{"protocol_id":0},"idle":{"protocol_id":1},"work":{"protocol_id":2},"play":{"protocol_id":3},"rest":{"protocol_id":4},"meet":{"protocol_id":5},"panic":{"protocol_id":6},"raid":{"protocol_id":7},"pre_raid":{"protocol_id":8},"hide":{"protocol_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":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 diff --git a/src/main/resources/assets/mapping/1.15.2/blocks.json b/src/main/resources/assets/mapping/1.15.2/blocks.json new file mode 100644 index 000000000..94a3b8053 --- /dev/null +++ b/src/main/resources/assets/mapping/1.15.2/blocks.json @@ -0,0 +1 @@ +{"minecraft":{"air":{"states":[{"id":0}]},"stone":{"states":[{"id":1}]},"granite":{"states":[{"id":2}]},"polished_granite":{"states":[{"id":3}]},"diorite":{"states":[{"id":4}]},"polished_diorite":{"states":[{"id":5}]},"andesite":{"states":[{"id":6}]},"polished_andesite":{"states":[{"id":7}]},"grass_block":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":8},{"properties":{"snowy":"false"},"id":9}]},"dirt":{"states":[{"id":10}]},"coarse_dirt":{"states":[{"id":11}]},"podzol":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":12},{"properties":{"snowy":"false"},"id":13}]},"cobblestone":{"states":[{"id":14}]},"oak_planks":{"states":[{"id":15}]},"spruce_planks":{"states":[{"id":16}]},"birch_planks":{"states":[{"id":17}]},"jungle_planks":{"states":[{"id":18}]},"acacia_planks":{"states":[{"id":19}]},"dark_oak_planks":{"states":[{"id":20}]},"oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":21},{"properties":{"stage":"1"},"id":22}]},"spruce_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":23},{"properties":{"stage":"1"},"id":24}]},"birch_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":25},{"properties":{"stage":"1"},"id":26}]},"jungle_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":27},{"properties":{"stage":"1"},"id":28}]},"acacia_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":29},{"properties":{"stage":"1"},"id":30}]},"dark_oak_sapling":{"properties":{"stage":["0","1"]},"states":[{"properties":{"stage":"0"},"id":31},{"properties":{"stage":"1"},"id":32}]},"bedrock":{"states":[{"id":33}]},"water":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":34},{"properties":{"level":"1"},"id":35},{"properties":{"level":"2"},"id":36},{"properties":{"level":"3"},"id":37},{"properties":{"level":"4"},"id":38},{"properties":{"level":"5"},"id":39},{"properties":{"level":"6"},"id":40},{"properties":{"level":"7"},"id":41},{"properties":{"level":"8"},"id":42},{"properties":{"level":"9"},"id":43},{"properties":{"level":"10"},"id":44},{"properties":{"level":"11"},"id":45},{"properties":{"level":"12"},"id":46},{"properties":{"level":"13"},"id":47},{"properties":{"level":"14"},"id":48},{"properties":{"level":"15"},"id":49}]},"lava":{"properties":{"level":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"level":"0"},"id":50},{"properties":{"level":"1"},"id":51},{"properties":{"level":"2"},"id":52},{"properties":{"level":"3"},"id":53},{"properties":{"level":"4"},"id":54},{"properties":{"level":"5"},"id":55},{"properties":{"level":"6"},"id":56},{"properties":{"level":"7"},"id":57},{"properties":{"level":"8"},"id":58},{"properties":{"level":"9"},"id":59},{"properties":{"level":"10"},"id":60},{"properties":{"level":"11"},"id":61},{"properties":{"level":"12"},"id":62},{"properties":{"level":"13"},"id":63},{"properties":{"level":"14"},"id":64},{"properties":{"level":"15"},"id":65}]},"sand":{"states":[{"id":66}]},"red_sand":{"states":[{"id":67}]},"gravel":{"states":[{"id":68}]},"gold_ore":{"states":[{"id":69}]},"iron_ore":{"states":[{"id":70}]},"coal_ore":{"states":[{"id":71}]},"oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":72},{"properties":{"axis":"y"},"id":73},{"properties":{"axis":"z"},"id":74}]},"spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":75},{"properties":{"axis":"y"},"id":76},{"properties":{"axis":"z"},"id":77}]},"birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":78},{"properties":{"axis":"y"},"id":79},{"properties":{"axis":"z"},"id":80}]},"jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":81},{"properties":{"axis":"y"},"id":82},{"properties":{"axis":"z"},"id":83}]},"acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":84},{"properties":{"axis":"y"},"id":85},{"properties":{"axis":"z"},"id":86}]},"dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":87},{"properties":{"axis":"y"},"id":88},{"properties":{"axis":"z"},"id":89}]},"stripped_spruce_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":90},{"properties":{"axis":"y"},"id":91},{"properties":{"axis":"z"},"id":92}]},"stripped_birch_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":93},{"properties":{"axis":"y"},"id":94},{"properties":{"axis":"z"},"id":95}]},"stripped_jungle_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":96},{"properties":{"axis":"y"},"id":97},{"properties":{"axis":"z"},"id":98}]},"stripped_acacia_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":99},{"properties":{"axis":"y"},"id":100},{"properties":{"axis":"z"},"id":101}]},"stripped_dark_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":102},{"properties":{"axis":"y"},"id":103},{"properties":{"axis":"z"},"id":104}]},"stripped_oak_log":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":105},{"properties":{"axis":"y"},"id":106},{"properties":{"axis":"z"},"id":107}]},"oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":108},{"properties":{"axis":"y"},"id":109},{"properties":{"axis":"z"},"id":110}]},"spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":111},{"properties":{"axis":"y"},"id":112},{"properties":{"axis":"z"},"id":113}]},"birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":114},{"properties":{"axis":"y"},"id":115},{"properties":{"axis":"z"},"id":116}]},"jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":117},{"properties":{"axis":"y"},"id":118},{"properties":{"axis":"z"},"id":119}]},"acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":120},{"properties":{"axis":"y"},"id":121},{"properties":{"axis":"z"},"id":122}]},"dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":123},{"properties":{"axis":"y"},"id":124},{"properties":{"axis":"z"},"id":125}]},"stripped_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":126},{"properties":{"axis":"y"},"id":127},{"properties":{"axis":"z"},"id":128}]},"stripped_spruce_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":129},{"properties":{"axis":"y"},"id":130},{"properties":{"axis":"z"},"id":131}]},"stripped_birch_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":132},{"properties":{"axis":"y"},"id":133},{"properties":{"axis":"z"},"id":134}]},"stripped_jungle_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":135},{"properties":{"axis":"y"},"id":136},{"properties":{"axis":"z"},"id":137}]},"stripped_acacia_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":138},{"properties":{"axis":"y"},"id":139},{"properties":{"axis":"z"},"id":140}]},"stripped_dark_oak_wood":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":141},{"properties":{"axis":"y"},"id":142},{"properties":{"axis":"z"},"id":143}]},"oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":144},{"properties":{"distance":"1","persistent":"false"},"id":145},{"properties":{"distance":"2","persistent":"true"},"id":146},{"properties":{"distance":"2","persistent":"false"},"id":147},{"properties":{"distance":"3","persistent":"true"},"id":148},{"properties":{"distance":"3","persistent":"false"},"id":149},{"properties":{"distance":"4","persistent":"true"},"id":150},{"properties":{"distance":"4","persistent":"false"},"id":151},{"properties":{"distance":"5","persistent":"true"},"id":152},{"properties":{"distance":"5","persistent":"false"},"id":153},{"properties":{"distance":"6","persistent":"true"},"id":154},{"properties":{"distance":"6","persistent":"false"},"id":155},{"properties":{"distance":"7","persistent":"true"},"id":156},{"properties":{"distance":"7","persistent":"false"},"id":157}]},"spruce_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":158},{"properties":{"distance":"1","persistent":"false"},"id":159},{"properties":{"distance":"2","persistent":"true"},"id":160},{"properties":{"distance":"2","persistent":"false"},"id":161},{"properties":{"distance":"3","persistent":"true"},"id":162},{"properties":{"distance":"3","persistent":"false"},"id":163},{"properties":{"distance":"4","persistent":"true"},"id":164},{"properties":{"distance":"4","persistent":"false"},"id":165},{"properties":{"distance":"5","persistent":"true"},"id":166},{"properties":{"distance":"5","persistent":"false"},"id":167},{"properties":{"distance":"6","persistent":"true"},"id":168},{"properties":{"distance":"6","persistent":"false"},"id":169},{"properties":{"distance":"7","persistent":"true"},"id":170},{"properties":{"distance":"7","persistent":"false"},"id":171}]},"birch_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":172},{"properties":{"distance":"1","persistent":"false"},"id":173},{"properties":{"distance":"2","persistent":"true"},"id":174},{"properties":{"distance":"2","persistent":"false"},"id":175},{"properties":{"distance":"3","persistent":"true"},"id":176},{"properties":{"distance":"3","persistent":"false"},"id":177},{"properties":{"distance":"4","persistent":"true"},"id":178},{"properties":{"distance":"4","persistent":"false"},"id":179},{"properties":{"distance":"5","persistent":"true"},"id":180},{"properties":{"distance":"5","persistent":"false"},"id":181},{"properties":{"distance":"6","persistent":"true"},"id":182},{"properties":{"distance":"6","persistent":"false"},"id":183},{"properties":{"distance":"7","persistent":"true"},"id":184},{"properties":{"distance":"7","persistent":"false"},"id":185}]},"jungle_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":186},{"properties":{"distance":"1","persistent":"false"},"id":187},{"properties":{"distance":"2","persistent":"true"},"id":188},{"properties":{"distance":"2","persistent":"false"},"id":189},{"properties":{"distance":"3","persistent":"true"},"id":190},{"properties":{"distance":"3","persistent":"false"},"id":191},{"properties":{"distance":"4","persistent":"true"},"id":192},{"properties":{"distance":"4","persistent":"false"},"id":193},{"properties":{"distance":"5","persistent":"true"},"id":194},{"properties":{"distance":"5","persistent":"false"},"id":195},{"properties":{"distance":"6","persistent":"true"},"id":196},{"properties":{"distance":"6","persistent":"false"},"id":197},{"properties":{"distance":"7","persistent":"true"},"id":198},{"properties":{"distance":"7","persistent":"false"},"id":199}]},"acacia_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":200},{"properties":{"distance":"1","persistent":"false"},"id":201},{"properties":{"distance":"2","persistent":"true"},"id":202},{"properties":{"distance":"2","persistent":"false"},"id":203},{"properties":{"distance":"3","persistent":"true"},"id":204},{"properties":{"distance":"3","persistent":"false"},"id":205},{"properties":{"distance":"4","persistent":"true"},"id":206},{"properties":{"distance":"4","persistent":"false"},"id":207},{"properties":{"distance":"5","persistent":"true"},"id":208},{"properties":{"distance":"5","persistent":"false"},"id":209},{"properties":{"distance":"6","persistent":"true"},"id":210},{"properties":{"distance":"6","persistent":"false"},"id":211},{"properties":{"distance":"7","persistent":"true"},"id":212},{"properties":{"distance":"7","persistent":"false"},"id":213}]},"dark_oak_leaves":{"properties":{"distance":["1","2","3","4","5","6","7"],"persistent":["true","false"]},"states":[{"properties":{"distance":"1","persistent":"true"},"id":214},{"properties":{"distance":"1","persistent":"false"},"id":215},{"properties":{"distance":"2","persistent":"true"},"id":216},{"properties":{"distance":"2","persistent":"false"},"id":217},{"properties":{"distance":"3","persistent":"true"},"id":218},{"properties":{"distance":"3","persistent":"false"},"id":219},{"properties":{"distance":"4","persistent":"true"},"id":220},{"properties":{"distance":"4","persistent":"false"},"id":221},{"properties":{"distance":"5","persistent":"true"},"id":222},{"properties":{"distance":"5","persistent":"false"},"id":223},{"properties":{"distance":"6","persistent":"true"},"id":224},{"properties":{"distance":"6","persistent":"false"},"id":225},{"properties":{"distance":"7","persistent":"true"},"id":226},{"properties":{"distance":"7","persistent":"false"},"id":227}]},"sponge":{"states":[{"id":228}]},"wet_sponge":{"states":[{"id":229}]},"glass":{"states":[{"id":230}]},"lapis_ore":{"states":[{"id":231}]},"lapis_block":{"states":[{"id":232}]},"dispenser":{"properties":{"facing":["north","s","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":233},{"properties":{"facing":"north","triggered":"false"},"id":234},{"properties":{"facing":"east","triggered":"true"},"id":235},{"properties":{"facing":"east","triggered":"false"},"id":236},{"properties":{"facing":"south","triggered":"true"},"id":237},{"properties":{"facing":"south","triggered":"false"},"id":238},{"properties":{"facing":"west","triggered":"true"},"id":239},{"properties":{"facing":"west","triggered":"false"},"id":240},{"properties":{"facing":"up","triggered":"true"},"id":241},{"properties":{"facing":"up","triggered":"false"},"id":242},{"properties":{"facing":"down","triggered":"true"},"id":243},{"properties":{"facing":"down","triggered":"false"},"id":244}]},"sandstone":{"states":[{"id":245}]},"chiseled_sandstone":{"states":[{"id":246}]},"cut_sandstone":{"states":[{"id":247}]},"note_block":{"properties":{"instrument":["harp","basedrum","snare","hat","bass","flute","bell","guitar","chime","xylophone","iron_xylophone","cow_bell","didgeridoo","bit","banjo","pling"],"note":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24"],"powered":["true","false"]},"states":[{"properties":{"instrument":"harp","note":"0","powered":"true"},"id":248},{"properties":{"instrument":"harp","note":"0","powered":"false"},"id":249},{"properties":{"instrument":"harp","note":"1","powered":"true"},"id":250},{"properties":{"instrument":"harp","note":"1","powered":"false"},"id":251},{"properties":{"instrument":"harp","note":"2","powered":"true"},"id":252},{"properties":{"instrument":"harp","note":"2","powered":"false"},"id":253},{"properties":{"instrument":"harp","note":"3","powered":"true"},"id":254},{"properties":{"instrument":"harp","note":"3","powered":"false"},"id":255},{"properties":{"instrument":"harp","note":"4","powered":"true"},"id":256},{"properties":{"instrument":"harp","note":"4","powered":"false"},"id":257},{"properties":{"instrument":"harp","note":"5","powered":"true"},"id":258},{"properties":{"instrument":"harp","note":"5","powered":"false"},"id":259},{"properties":{"instrument":"harp","note":"6","powered":"true"},"id":260},{"properties":{"instrument":"harp","note":"6","powered":"false"},"id":261},{"properties":{"instrument":"harp","note":"7","powered":"true"},"id":262},{"properties":{"instrument":"harp","note":"7","powered":"false"},"id":263},{"properties":{"instrument":"harp","note":"8","powered":"true"},"id":264},{"properties":{"instrument":"harp","note":"8","powered":"false"},"id":265},{"properties":{"instrument":"harp","note":"9","powered":"true"},"id":266},{"properties":{"instrument":"harp","note":"9","powered":"false"},"id":267},{"properties":{"instrument":"harp","note":"10","powered":"true"},"id":268},{"properties":{"instrument":"harp","note":"10","powered":"false"},"id":269},{"properties":{"instrument":"harp","note":"11","powered":"true"},"id":270},{"properties":{"instrument":"harp","note":"11","powered":"false"},"id":271},{"properties":{"instrument":"harp","note":"12","powered":"true"},"id":272},{"properties":{"instrument":"harp","note":"12","powered":"false"},"id":273},{"properties":{"instrument":"harp","note":"13","powered":"true"},"id":274},{"properties":{"instrument":"harp","note":"13","powered":"false"},"id":275},{"properties":{"instrument":"harp","note":"14","powered":"true"},"id":276},{"properties":{"instrument":"harp","note":"14","powered":"false"},"id":277},{"properties":{"instrument":"harp","note":"15","powered":"true"},"id":278},{"properties":{"instrument":"harp","note":"15","powered":"false"},"id":279},{"properties":{"instrument":"harp","note":"16","powered":"true"},"id":280},{"properties":{"instrument":"harp","note":"16","powered":"false"},"id":281},{"properties":{"instrument":"harp","note":"17","powered":"true"},"id":282},{"properties":{"instrument":"harp","note":"17","powered":"false"},"id":283},{"properties":{"instrument":"harp","note":"18","powered":"true"},"id":284},{"properties":{"instrument":"harp","note":"18","powered":"false"},"id":285},{"properties":{"instrument":"harp","note":"19","powered":"true"},"id":286},{"properties":{"instrument":"harp","note":"19","powered":"false"},"id":287},{"properties":{"instrument":"harp","note":"20","powered":"true"},"id":288},{"properties":{"instrument":"harp","note":"20","powered":"false"},"id":289},{"properties":{"instrument":"harp","note":"21","powered":"true"},"id":290},{"properties":{"instrument":"harp","note":"21","powered":"false"},"id":291},{"properties":{"instrument":"harp","note":"22","powered":"true"},"id":292},{"properties":{"instrument":"harp","note":"22","powered":"false"},"id":293},{"properties":{"instrument":"harp","note":"23","powered":"true"},"id":294},{"properties":{"instrument":"harp","note":"23","powered":"false"},"id":295},{"properties":{"instrument":"harp","note":"24","powered":"true"},"id":296},{"properties":{"instrument":"harp","note":"24","powered":"false"},"id":297},{"properties":{"instrument":"basedrum","note":"0","powered":"true"},"id":298},{"properties":{"instrument":"basedrum","note":"0","powered":"false"},"id":299},{"properties":{"instrument":"basedrum","note":"1","powered":"true"},"id":300},{"properties":{"instrument":"basedrum","note":"1","powered":"false"},"id":301},{"properties":{"instrument":"basedrum","note":"2","powered":"true"},"id":302},{"properties":{"instrument":"basedrum","note":"2","powered":"false"},"id":303},{"properties":{"instrument":"basedrum","note":"3","powered":"true"},"id":304},{"properties":{"instrument":"basedrum","note":"3","powered":"false"},"id":305},{"properties":{"instrument":"basedrum","note":"4","powered":"true"},"id":306},{"properties":{"instrument":"basedrum","note":"4","powered":"false"},"id":307},{"properties":{"instrument":"basedrum","note":"5","powered":"true"},"id":308},{"properties":{"instrument":"basedrum","note":"5","powered":"false"},"id":309},{"properties":{"instrument":"basedrum","note":"6","powered":"true"},"id":310},{"properties":{"instrument":"basedrum","note":"6","powered":"false"},"id":311},{"properties":{"instrument":"basedrum","note":"7","powered":"true"},"id":312},{"properties":{"instrument":"basedrum","note":"7","powered":"false"},"id":313},{"properties":{"instrument":"basedrum","note":"8","powered":"true"},"id":314},{"properties":{"instrument":"basedrum","note":"8","powered":"false"},"id":315},{"properties":{"instrument":"basedrum","note":"9","powered":"true"},"id":316},{"properties":{"instrument":"basedrum","note":"9","powered":"false"},"id":317},{"properties":{"instrument":"basedrum","note":"10","powered":"true"},"id":318},{"properties":{"instrument":"basedrum","note":"10","powered":"false"},"id":319},{"properties":{"instrument":"basedrum","note":"11","powered":"true"},"id":320},{"properties":{"instrument":"basedrum","note":"11","powered":"false"},"id":321},{"properties":{"instrument":"basedrum","note":"12","powered":"true"},"id":322},{"properties":{"instrument":"basedrum","note":"12","powered":"false"},"id":323},{"properties":{"instrument":"basedrum","note":"13","powered":"true"},"id":324},{"properties":{"instrument":"basedrum","note":"13","powered":"false"},"id":325},{"properties":{"instrument":"basedrum","note":"14","powered":"true"},"id":326},{"properties":{"instrument":"basedrum","note":"14","powered":"false"},"id":327},{"properties":{"instrument":"basedrum","note":"15","powered":"true"},"id":328},{"properties":{"instrument":"basedrum","note":"15","powered":"false"},"id":329},{"properties":{"instrument":"basedrum","note":"16","powered":"true"},"id":330},{"properties":{"instrument":"basedrum","note":"16","powered":"false"},"id":331},{"properties":{"instrument":"basedrum","note":"17","powered":"true"},"id":332},{"properties":{"instrument":"basedrum","note":"17","powered":"false"},"id":333},{"properties":{"instrument":"basedrum","note":"18","powered":"true"},"id":334},{"properties":{"instrument":"basedrum","note":"18","powered":"false"},"id":335},{"properties":{"instrument":"basedrum","note":"19","powered":"true"},"id":336},{"properties":{"instrument":"basedrum","note":"19","powered":"false"},"id":337},{"properties":{"instrument":"basedrum","note":"20","powered":"true"},"id":338},{"properties":{"instrument":"basedrum","note":"20","powered":"false"},"id":339},{"properties":{"instrument":"basedrum","note":"21","powered":"true"},"id":340},{"properties":{"instrument":"basedrum","note":"21","powered":"false"},"id":341},{"properties":{"instrument":"basedrum","note":"22","powered":"true"},"id":342},{"properties":{"instrument":"basedrum","note":"22","powered":"false"},"id":343},{"properties":{"instrument":"basedrum","note":"23","powered":"true"},"id":344},{"properties":{"instrument":"basedrum","note":"23","powered":"false"},"id":345},{"properties":{"instrument":"basedrum","note":"24","powered":"true"},"id":346},{"properties":{"instrument":"basedrum","note":"24","powered":"false"},"id":347},{"properties":{"instrument":"snare","note":"0","powered":"true"},"id":348},{"properties":{"instrument":"snare","note":"0","powered":"false"},"id":349},{"properties":{"instrument":"snare","note":"1","powered":"true"},"id":350},{"properties":{"instrument":"snare","note":"1","powered":"false"},"id":351},{"properties":{"instrument":"snare","note":"2","powered":"true"},"id":352},{"properties":{"instrument":"snare","note":"2","powered":"false"},"id":353},{"properties":{"instrument":"snare","note":"3","powered":"true"},"id":354},{"properties":{"instrument":"snare","note":"3","powered":"false"},"id":355},{"properties":{"instrument":"snare","note":"4","powered":"true"},"id":356},{"properties":{"instrument":"snare","note":"4","powered":"false"},"id":357},{"properties":{"instrument":"snare","note":"5","powered":"true"},"id":358},{"properties":{"instrument":"snare","note":"5","powered":"false"},"id":359},{"properties":{"instrument":"snare","note":"6","powered":"true"},"id":360},{"properties":{"instrument":"snare","note":"6","powered":"false"},"id":361},{"properties":{"instrument":"snare","note":"7","powered":"true"},"id":362},{"properties":{"instrument":"snare","note":"7","powered":"false"},"id":363},{"properties":{"instrument":"snare","note":"8","powered":"true"},"id":364},{"properties":{"instrument":"snare","note":"8","powered":"false"},"id":365},{"properties":{"instrument":"snare","note":"9","powered":"true"},"id":366},{"properties":{"instrument":"snare","note":"9","powered":"false"},"id":367},{"properties":{"instrument":"snare","note":"10","powered":"true"},"id":368},{"properties":{"instrument":"snare","note":"10","powered":"false"},"id":369},{"properties":{"instrument":"snare","note":"11","powered":"true"},"id":370},{"properties":{"instrument":"snare","note":"11","powered":"false"},"id":371},{"properties":{"instrument":"snare","note":"12","powered":"true"},"id":372},{"properties":{"instrument":"snare","note":"12","powered":"false"},"id":373},{"properties":{"instrument":"snare","note":"13","powered":"true"},"id":374},{"properties":{"instrument":"snare","note":"13","powered":"false"},"id":375},{"properties":{"instrument":"snare","note":"14","powered":"true"},"id":376},{"properties":{"instrument":"snare","note":"14","powered":"false"},"id":377},{"properties":{"instrument":"snare","note":"15","powered":"true"},"id":378},{"properties":{"instrument":"snare","note":"15","powered":"false"},"id":379},{"properties":{"instrument":"snare","note":"16","powered":"true"},"id":380},{"properties":{"instrument":"snare","note":"16","powered":"false"},"id":381},{"properties":{"instrument":"snare","note":"17","powered":"true"},"id":382},{"properties":{"instrument":"snare","note":"17","powered":"false"},"id":383},{"properties":{"instrument":"snare","note":"18","powered":"true"},"id":384},{"properties":{"instrument":"snare","note":"18","powered":"false"},"id":385},{"properties":{"instrument":"snare","note":"19","powered":"true"},"id":386},{"properties":{"instrument":"snare","note":"19","powered":"false"},"id":387},{"properties":{"instrument":"snare","note":"20","powered":"true"},"id":388},{"properties":{"instrument":"snare","note":"20","powered":"false"},"id":389},{"properties":{"instrument":"snare","note":"21","powered":"true"},"id":390},{"properties":{"instrument":"snare","note":"21","powered":"false"},"id":391},{"properties":{"instrument":"snare","note":"22","powered":"true"},"id":392},{"properties":{"instrument":"snare","note":"22","powered":"false"},"id":393},{"properties":{"instrument":"snare","note":"23","powered":"true"},"id":394},{"properties":{"instrument":"snare","note":"23","powered":"false"},"id":395},{"properties":{"instrument":"snare","note":"24","powered":"true"},"id":396},{"properties":{"instrument":"snare","note":"24","powered":"false"},"id":397},{"properties":{"instrument":"hat","note":"0","powered":"true"},"id":398},{"properties":{"instrument":"hat","note":"0","powered":"false"},"id":399},{"properties":{"instrument":"hat","note":"1","powered":"true"},"id":400},{"properties":{"instrument":"hat","note":"1","powered":"false"},"id":401},{"properties":{"instrument":"hat","note":"2","powered":"true"},"id":402},{"properties":{"instrument":"hat","note":"2","powered":"false"},"id":403},{"properties":{"instrument":"hat","note":"3","powered":"true"},"id":404},{"properties":{"instrument":"hat","note":"3","powered":"false"},"id":405},{"properties":{"instrument":"hat","note":"4","powered":"true"},"id":406},{"properties":{"instrument":"hat","note":"4","powered":"false"},"id":407},{"properties":{"instrument":"hat","note":"5","powered":"true"},"id":408},{"properties":{"instrument":"hat","note":"5","powered":"false"},"id":409},{"properties":{"instrument":"hat","note":"6","powered":"true"},"id":410},{"properties":{"instrument":"hat","note":"6","powered":"false"},"id":411},{"properties":{"instrument":"hat","note":"7","powered":"true"},"id":412},{"properties":{"instrument":"hat","note":"7","powered":"false"},"id":413},{"properties":{"instrument":"hat","note":"8","powered":"true"},"id":414},{"properties":{"instrument":"hat","note":"8","powered":"false"},"id":415},{"properties":{"instrument":"hat","note":"9","powered":"true"},"id":416},{"properties":{"instrument":"hat","note":"9","powered":"false"},"id":417},{"properties":{"instrument":"hat","note":"10","powered":"true"},"id":418},{"properties":{"instrument":"hat","note":"10","powered":"false"},"id":419},{"properties":{"instrument":"hat","note":"11","powered":"true"},"id":420},{"properties":{"instrument":"hat","note":"11","powered":"false"},"id":421},{"properties":{"instrument":"hat","note":"12","powered":"true"},"id":422},{"properties":{"instrument":"hat","note":"12","powered":"false"},"id":423},{"properties":{"instrument":"hat","note":"13","powered":"true"},"id":424},{"properties":{"instrument":"hat","note":"13","powered":"false"},"id":425},{"properties":{"instrument":"hat","note":"14","powered":"true"},"id":426},{"properties":{"instrument":"hat","note":"14","powered":"false"},"id":427},{"properties":{"instrument":"hat","note":"15","powered":"true"},"id":428},{"properties":{"instrument":"hat","note":"15","powered":"false"},"id":429},{"properties":{"instrument":"hat","note":"16","powered":"true"},"id":430},{"properties":{"instrument":"hat","note":"16","powered":"false"},"id":431},{"properties":{"instrument":"hat","note":"17","powered":"true"},"id":432},{"properties":{"instrument":"hat","note":"17","powered":"false"},"id":433},{"properties":{"instrument":"hat","note":"18","powered":"true"},"id":434},{"properties":{"instrument":"hat","note":"18","powered":"false"},"id":435},{"properties":{"instrument":"hat","note":"19","powered":"true"},"id":436},{"properties":{"instrument":"hat","note":"19","powered":"false"},"id":437},{"properties":{"instrument":"hat","note":"20","powered":"true"},"id":438},{"properties":{"instrument":"hat","note":"20","powered":"false"},"id":439},{"properties":{"instrument":"hat","note":"21","powered":"true"},"id":440},{"properties":{"instrument":"hat","note":"21","powered":"false"},"id":441},{"properties":{"instrument":"hat","note":"22","powered":"true"},"id":442},{"properties":{"instrument":"hat","note":"22","powered":"false"},"id":443},{"properties":{"instrument":"hat","note":"23","powered":"true"},"id":444},{"properties":{"instrument":"hat","note":"23","powered":"false"},"id":445},{"properties":{"instrument":"hat","note":"24","powered":"true"},"id":446},{"properties":{"instrument":"hat","note":"24","powered":"false"},"id":447},{"properties":{"instrument":"bass","note":"0","powered":"true"},"id":448},{"properties":{"instrument":"bass","note":"0","powered":"false"},"id":449},{"properties":{"instrument":"bass","note":"1","powered":"true"},"id":450},{"properties":{"instrument":"bass","note":"1","powered":"false"},"id":451},{"properties":{"instrument":"bass","note":"2","powered":"true"},"id":452},{"properties":{"instrument":"bass","note":"2","powered":"false"},"id":453},{"properties":{"instrument":"bass","note":"3","powered":"true"},"id":454},{"properties":{"instrument":"bass","note":"3","powered":"false"},"id":455},{"properties":{"instrument":"bass","note":"4","powered":"true"},"id":456},{"properties":{"instrument":"bass","note":"4","powered":"false"},"id":457},{"properties":{"instrument":"bass","note":"5","powered":"true"},"id":458},{"properties":{"instrument":"bass","note":"5","powered":"false"},"id":459},{"properties":{"instrument":"bass","note":"6","powered":"true"},"id":460},{"properties":{"instrument":"bass","note":"6","powered":"false"},"id":461},{"properties":{"instrument":"bass","note":"7","powered":"true"},"id":462},{"properties":{"instrument":"bass","note":"7","powered":"false"},"id":463},{"properties":{"instrument":"bass","note":"8","powered":"true"},"id":464},{"properties":{"instrument":"bass","note":"8","powered":"false"},"id":465},{"properties":{"instrument":"bass","note":"9","powered":"true"},"id":466},{"properties":{"instrument":"bass","note":"9","powered":"false"},"id":467},{"properties":{"instrument":"bass","note":"10","powered":"true"},"id":468},{"properties":{"instrument":"bass","note":"10","powered":"false"},"id":469},{"properties":{"instrument":"bass","note":"11","powered":"true"},"id":470},{"properties":{"instrument":"bass","note":"11","powered":"false"},"id":471},{"properties":{"instrument":"bass","note":"12","powered":"true"},"id":472},{"properties":{"instrument":"bass","note":"12","powered":"false"},"id":473},{"properties":{"instrument":"bass","note":"13","powered":"true"},"id":474},{"properties":{"instrument":"bass","note":"13","powered":"false"},"id":475},{"properties":{"instrument":"bass","note":"14","powered":"true"},"id":476},{"properties":{"instrument":"bass","note":"14","powered":"false"},"id":477},{"properties":{"instrument":"bass","note":"15","powered":"true"},"id":478},{"properties":{"instrument":"bass","note":"15","powered":"false"},"id":479},{"properties":{"instrument":"bass","note":"16","powered":"true"},"id":480},{"properties":{"instrument":"bass","note":"16","powered":"false"},"id":481},{"properties":{"instrument":"bass","note":"17","powered":"true"},"id":482},{"properties":{"instrument":"bass","note":"17","powered":"false"},"id":483},{"properties":{"instrument":"bass","note":"18","powered":"true"},"id":484},{"properties":{"instrument":"bass","note":"18","powered":"false"},"id":485},{"properties":{"instrument":"bass","note":"19","powered":"true"},"id":486},{"properties":{"instrument":"bass","note":"19","powered":"false"},"id":487},{"properties":{"instrument":"bass","note":"20","powered":"true"},"id":488},{"properties":{"instrument":"bass","note":"20","powered":"false"},"id":489},{"properties":{"instrument":"bass","note":"21","powered":"true"},"id":490},{"properties":{"instrument":"bass","note":"21","powered":"false"},"id":491},{"properties":{"instrument":"bass","note":"22","powered":"true"},"id":492},{"properties":{"instrument":"bass","note":"22","powered":"false"},"id":493},{"properties":{"instrument":"bass","note":"23","powered":"true"},"id":494},{"properties":{"instrument":"bass","note":"23","powered":"false"},"id":495},{"properties":{"instrument":"bass","note":"24","powered":"true"},"id":496},{"properties":{"instrument":"bass","note":"24","powered":"false"},"id":497},{"properties":{"instrument":"flute","note":"0","powered":"true"},"id":498},{"properties":{"instrument":"flute","note":"0","powered":"false"},"id":499},{"properties":{"instrument":"flute","note":"1","powered":"true"},"id":500},{"properties":{"instrument":"flute","note":"1","powered":"false"},"id":501},{"properties":{"instrument":"flute","note":"2","powered":"true"},"id":502},{"properties":{"instrument":"flute","note":"2","powered":"false"},"id":503},{"properties":{"instrument":"flute","note":"3","powered":"true"},"id":504},{"properties":{"instrument":"flute","note":"3","powered":"false"},"id":505},{"properties":{"instrument":"flute","note":"4","powered":"true"},"id":506},{"properties":{"instrument":"flute","note":"4","powered":"false"},"id":507},{"properties":{"instrument":"flute","note":"5","powered":"true"},"id":508},{"properties":{"instrument":"flute","note":"5","powered":"false"},"id":509},{"properties":{"instrument":"flute","note":"6","powered":"true"},"id":510},{"properties":{"instrument":"flute","note":"6","powered":"false"},"id":511},{"properties":{"instrument":"flute","note":"7","powered":"true"},"id":512},{"properties":{"instrument":"flute","note":"7","powered":"false"},"id":513},{"properties":{"instrument":"flute","note":"8","powered":"true"},"id":514},{"properties":{"instrument":"flute","note":"8","powered":"false"},"id":515},{"properties":{"instrument":"flute","note":"9","powered":"true"},"id":516},{"properties":{"instrument":"flute","note":"9","powered":"false"},"id":517},{"properties":{"instrument":"flute","note":"10","powered":"true"},"id":518},{"properties":{"instrument":"flute","note":"10","powered":"false"},"id":519},{"properties":{"instrument":"flute","note":"11","powered":"true"},"id":520},{"properties":{"instrument":"flute","note":"11","powered":"false"},"id":521},{"properties":{"instrument":"flute","note":"12","powered":"true"},"id":522},{"properties":{"instrument":"flute","note":"12","powered":"false"},"id":523},{"properties":{"instrument":"flute","note":"13","powered":"true"},"id":524},{"properties":{"instrument":"flute","note":"13","powered":"false"},"id":525},{"properties":{"instrument":"flute","note":"14","powered":"true"},"id":526},{"properties":{"instrument":"flute","note":"14","powered":"false"},"id":527},{"properties":{"instrument":"flute","note":"15","powered":"true"},"id":528},{"properties":{"instrument":"flute","note":"15","powered":"false"},"id":529},{"properties":{"instrument":"flute","note":"16","powered":"true"},"id":530},{"properties":{"instrument":"flute","note":"16","powered":"false"},"id":531},{"properties":{"instrument":"flute","note":"17","powered":"true"},"id":532},{"properties":{"instrument":"flute","note":"17","powered":"false"},"id":533},{"properties":{"instrument":"flute","note":"18","powered":"true"},"id":534},{"properties":{"instrument":"flute","note":"18","powered":"false"},"id":535},{"properties":{"instrument":"flute","note":"19","powered":"true"},"id":536},{"properties":{"instrument":"flute","note":"19","powered":"false"},"id":537},{"properties":{"instrument":"flute","note":"20","powered":"true"},"id":538},{"properties":{"instrument":"flute","note":"20","powered":"false"},"id":539},{"properties":{"instrument":"flute","note":"21","powered":"true"},"id":540},{"properties":{"instrument":"flute","note":"21","powered":"false"},"id":541},{"properties":{"instrument":"flute","note":"22","powered":"true"},"id":542},{"properties":{"instrument":"flute","note":"22","powered":"false"},"id":543},{"properties":{"instrument":"flute","note":"23","powered":"true"},"id":544},{"properties":{"instrument":"flute","note":"23","powered":"false"},"id":545},{"properties":{"instrument":"flute","note":"24","powered":"true"},"id":546},{"properties":{"instrument":"flute","note":"24","powered":"false"},"id":547},{"properties":{"instrument":"bell","note":"0","powered":"true"},"id":548},{"properties":{"instrument":"bell","note":"0","powered":"false"},"id":549},{"properties":{"instrument":"bell","note":"1","powered":"true"},"id":550},{"properties":{"instrument":"bell","note":"1","powered":"false"},"id":551},{"properties":{"instrument":"bell","note":"2","powered":"true"},"id":552},{"properties":{"instrument":"bell","note":"2","powered":"false"},"id":553},{"properties":{"instrument":"bell","note":"3","powered":"true"},"id":554},{"properties":{"instrument":"bell","note":"3","powered":"false"},"id":555},{"properties":{"instrument":"bell","note":"4","powered":"true"},"id":556},{"properties":{"instrument":"bell","note":"4","powered":"false"},"id":557},{"properties":{"instrument":"bell","note":"5","powered":"true"},"id":558},{"properties":{"instrument":"bell","note":"5","powered":"false"},"id":559},{"properties":{"instrument":"bell","note":"6","powered":"true"},"id":560},{"properties":{"instrument":"bell","note":"6","powered":"false"},"id":561},{"properties":{"instrument":"bell","note":"7","powered":"true"},"id":562},{"properties":{"instrument":"bell","note":"7","powered":"false"},"id":563},{"properties":{"instrument":"bell","note":"8","powered":"true"},"id":564},{"properties":{"instrument":"bell","note":"8","powered":"false"},"id":565},{"properties":{"instrument":"bell","note":"9","powered":"true"},"id":566},{"properties":{"instrument":"bell","note":"9","powered":"false"},"id":567},{"properties":{"instrument":"bell","note":"10","powered":"true"},"id":568},{"properties":{"instrument":"bell","note":"10","powered":"false"},"id":569},{"properties":{"instrument":"bell","note":"11","powered":"true"},"id":570},{"properties":{"instrument":"bell","note":"11","powered":"false"},"id":571},{"properties":{"instrument":"bell","note":"12","powered":"true"},"id":572},{"properties":{"instrument":"bell","note":"12","powered":"false"},"id":573},{"properties":{"instrument":"bell","note":"13","powered":"true"},"id":574},{"properties":{"instrument":"bell","note":"13","powered":"false"},"id":575},{"properties":{"instrument":"bell","note":"14","powered":"true"},"id":576},{"properties":{"instrument":"bell","note":"14","powered":"false"},"id":577},{"properties":{"instrument":"bell","note":"15","powered":"true"},"id":578},{"properties":{"instrument":"bell","note":"15","powered":"false"},"id":579},{"properties":{"instrument":"bell","note":"16","powered":"true"},"id":580},{"properties":{"instrument":"bell","note":"16","powered":"false"},"id":581},{"properties":{"instrument":"bell","note":"17","powered":"true"},"id":582},{"properties":{"instrument":"bell","note":"17","powered":"false"},"id":583},{"properties":{"instrument":"bell","note":"18","powered":"true"},"id":584},{"properties":{"instrument":"bell","note":"18","powered":"false"},"id":585},{"properties":{"instrument":"bell","note":"19","powered":"true"},"id":586},{"properties":{"instrument":"bell","note":"19","powered":"false"},"id":587},{"properties":{"instrument":"bell","note":"20","powered":"true"},"id":588},{"properties":{"instrument":"bell","note":"20","powered":"false"},"id":589},{"properties":{"instrument":"bell","note":"21","powered":"true"},"id":590},{"properties":{"instrument":"bell","note":"21","powered":"false"},"id":591},{"properties":{"instrument":"bell","note":"22","powered":"true"},"id":592},{"properties":{"instrument":"bell","note":"22","powered":"false"},"id":593},{"properties":{"instrument":"bell","note":"23","powered":"true"},"id":594},{"properties":{"instrument":"bell","note":"23","powered":"false"},"id":595},{"properties":{"instrument":"bell","note":"24","powered":"true"},"id":596},{"properties":{"instrument":"bell","note":"24","powered":"false"},"id":597},{"properties":{"instrument":"guitar","note":"0","powered":"true"},"id":598},{"properties":{"instrument":"guitar","note":"0","powered":"false"},"id":599},{"properties":{"instrument":"guitar","note":"1","powered":"true"},"id":600},{"properties":{"instrument":"guitar","note":"1","powered":"false"},"id":601},{"properties":{"instrument":"guitar","note":"2","powered":"true"},"id":602},{"properties":{"instrument":"guitar","note":"2","powered":"false"},"id":603},{"properties":{"instrument":"guitar","note":"3","powered":"true"},"id":604},{"properties":{"instrument":"guitar","note":"3","powered":"false"},"id":605},{"properties":{"instrument":"guitar","note":"4","powered":"true"},"id":606},{"properties":{"instrument":"guitar","note":"4","powered":"false"},"id":607},{"properties":{"instrument":"guitar","note":"5","powered":"true"},"id":608},{"properties":{"instrument":"guitar","note":"5","powered":"false"},"id":609},{"properties":{"instrument":"guitar","note":"6","powered":"true"},"id":610},{"properties":{"instrument":"guitar","note":"6","powered":"false"},"id":611},{"properties":{"instrument":"guitar","note":"7","powered":"true"},"id":612},{"properties":{"instrument":"guitar","note":"7","powered":"false"},"id":613},{"properties":{"instrument":"guitar","note":"8","powered":"true"},"id":614},{"properties":{"instrument":"guitar","note":"8","powered":"false"},"id":615},{"properties":{"instrument":"guitar","note":"9","powered":"true"},"id":616},{"properties":{"instrument":"guitar","note":"9","powered":"false"},"id":617},{"properties":{"instrument":"guitar","note":"10","powered":"true"},"id":618},{"properties":{"instrument":"guitar","note":"10","powered":"false"},"id":619},{"properties":{"instrument":"guitar","note":"11","powered":"true"},"id":620},{"properties":{"instrument":"guitar","note":"11","powered":"false"},"id":621},{"properties":{"instrument":"guitar","note":"12","powered":"true"},"id":622},{"properties":{"instrument":"guitar","note":"12","powered":"false"},"id":623},{"properties":{"instrument":"guitar","note":"13","powered":"true"},"id":624},{"properties":{"instrument":"guitar","note":"13","powered":"false"},"id":625},{"properties":{"instrument":"guitar","note":"14","powered":"true"},"id":626},{"properties":{"instrument":"guitar","note":"14","powered":"false"},"id":627},{"properties":{"instrument":"guitar","note":"15","powered":"true"},"id":628},{"properties":{"instrument":"guitar","note":"15","powered":"false"},"id":629},{"properties":{"instrument":"guitar","note":"16","powered":"true"},"id":630},{"properties":{"instrument":"guitar","note":"16","powered":"false"},"id":631},{"properties":{"instrument":"guitar","note":"17","powered":"true"},"id":632},{"properties":{"instrument":"guitar","note":"17","powered":"false"},"id":633},{"properties":{"instrument":"guitar","note":"18","powered":"true"},"id":634},{"properties":{"instrument":"guitar","note":"18","powered":"false"},"id":635},{"properties":{"instrument":"guitar","note":"19","powered":"true"},"id":636},{"properties":{"instrument":"guitar","note":"19","powered":"false"},"id":637},{"properties":{"instrument":"guitar","note":"20","powered":"true"},"id":638},{"properties":{"instrument":"guitar","note":"20","powered":"false"},"id":639},{"properties":{"instrument":"guitar","note":"21","powered":"true"},"id":640},{"properties":{"instrument":"guitar","note":"21","powered":"false"},"id":641},{"properties":{"instrument":"guitar","note":"22","powered":"true"},"id":642},{"properties":{"instrument":"guitar","note":"22","powered":"false"},"id":643},{"properties":{"instrument":"guitar","note":"23","powered":"true"},"id":644},{"properties":{"instrument":"guitar","note":"23","powered":"false"},"id":645},{"properties":{"instrument":"guitar","note":"24","powered":"true"},"id":646},{"properties":{"instrument":"guitar","note":"24","powered":"false"},"id":647},{"properties":{"instrument":"chime","note":"0","powered":"true"},"id":648},{"properties":{"instrument":"chime","note":"0","powered":"false"},"id":649},{"properties":{"instrument":"chime","note":"1","powered":"true"},"id":650},{"properties":{"instrument":"chime","note":"1","powered":"false"},"id":651},{"properties":{"instrument":"chime","note":"2","powered":"true"},"id":652},{"properties":{"instrument":"chime","note":"2","powered":"false"},"id":653},{"properties":{"instrument":"chime","note":"3","powered":"true"},"id":654},{"properties":{"instrument":"chime","note":"3","powered":"false"},"id":655},{"properties":{"instrument":"chime","note":"4","powered":"true"},"id":656},{"properties":{"instrument":"chime","note":"4","powered":"false"},"id":657},{"properties":{"instrument":"chime","note":"5","powered":"true"},"id":658},{"properties":{"instrument":"chime","note":"5","powered":"false"},"id":659},{"properties":{"instrument":"chime","note":"6","powered":"true"},"id":660},{"properties":{"instrument":"chime","note":"6","powered":"false"},"id":661},{"properties":{"instrument":"chime","note":"7","powered":"true"},"id":662},{"properties":{"instrument":"chime","note":"7","powered":"false"},"id":663},{"properties":{"instrument":"chime","note":"8","powered":"true"},"id":664},{"properties":{"instrument":"chime","note":"8","powered":"false"},"id":665},{"properties":{"instrument":"chime","note":"9","powered":"true"},"id":666},{"properties":{"instrument":"chime","note":"9","powered":"false"},"id":667},{"properties":{"instrument":"chime","note":"10","powered":"true"},"id":668},{"properties":{"instrument":"chime","note":"10","powered":"false"},"id":669},{"properties":{"instrument":"chime","note":"11","powered":"true"},"id":670},{"properties":{"instrument":"chime","note":"11","powered":"false"},"id":671},{"properties":{"instrument":"chime","note":"12","powered":"true"},"id":672},{"properties":{"instrument":"chime","note":"12","powered":"false"},"id":673},{"properties":{"instrument":"chime","note":"13","powered":"true"},"id":674},{"properties":{"instrument":"chime","note":"13","powered":"false"},"id":675},{"properties":{"instrument":"chime","note":"14","powered":"true"},"id":676},{"properties":{"instrument":"chime","note":"14","powered":"false"},"id":677},{"properties":{"instrument":"chime","note":"15","powered":"true"},"id":678},{"properties":{"instrument":"chime","note":"15","powered":"false"},"id":679},{"properties":{"instrument":"chime","note":"16","powered":"true"},"id":680},{"properties":{"instrument":"chime","note":"16","powered":"false"},"id":681},{"properties":{"instrument":"chime","note":"17","powered":"true"},"id":682},{"properties":{"instrument":"chime","note":"17","powered":"false"},"id":683},{"properties":{"instrument":"chime","note":"18","powered":"true"},"id":684},{"properties":{"instrument":"chime","note":"18","powered":"false"},"id":685},{"properties":{"instrument":"chime","note":"19","powered":"true"},"id":686},{"properties":{"instrument":"chime","note":"19","powered":"false"},"id":687},{"properties":{"instrument":"chime","note":"20","powered":"true"},"id":688},{"properties":{"instrument":"chime","note":"20","powered":"false"},"id":689},{"properties":{"instrument":"chime","note":"21","powered":"true"},"id":690},{"properties":{"instrument":"chime","note":"21","powered":"false"},"id":691},{"properties":{"instrument":"chime","note":"22","powered":"true"},"id":692},{"properties":{"instrument":"chime","note":"22","powered":"false"},"id":693},{"properties":{"instrument":"chime","note":"23","powered":"true"},"id":694},{"properties":{"instrument":"chime","note":"23","powered":"false"},"id":695},{"properties":{"instrument":"chime","note":"24","powered":"true"},"id":696},{"properties":{"instrument":"chime","note":"24","powered":"false"},"id":697},{"properties":{"instrument":"xylophone","note":"0","powered":"true"},"id":698},{"properties":{"instrument":"xylophone","note":"0","powered":"false"},"id":699},{"properties":{"instrument":"xylophone","note":"1","powered":"true"},"id":700},{"properties":{"instrument":"xylophone","note":"1","powered":"false"},"id":701},{"properties":{"instrument":"xylophone","note":"2","powered":"true"},"id":702},{"properties":{"instrument":"xylophone","note":"2","powered":"false"},"id":703},{"properties":{"instrument":"xylophone","note":"3","powered":"true"},"id":704},{"properties":{"instrument":"xylophone","note":"3","powered":"false"},"id":705},{"properties":{"instrument":"xylophone","note":"4","powered":"true"},"id":706},{"properties":{"instrument":"xylophone","note":"4","powered":"false"},"id":707},{"properties":{"instrument":"xylophone","note":"5","powered":"true"},"id":708},{"properties":{"instrument":"xylophone","note":"5","powered":"false"},"id":709},{"properties":{"instrument":"xylophone","note":"6","powered":"true"},"id":710},{"properties":{"instrument":"xylophone","note":"6","powered":"false"},"id":711},{"properties":{"instrument":"xylophone","note":"7","powered":"true"},"id":712},{"properties":{"instrument":"xylophone","note":"7","powered":"false"},"id":713},{"properties":{"instrument":"xylophone","note":"8","powered":"true"},"id":714},{"properties":{"instrument":"xylophone","note":"8","powered":"false"},"id":715},{"properties":{"instrument":"xylophone","note":"9","powered":"true"},"id":716},{"properties":{"instrument":"xylophone","note":"9","powered":"false"},"id":717},{"properties":{"instrument":"xylophone","note":"10","powered":"true"},"id":718},{"properties":{"instrument":"xylophone","note":"10","powered":"false"},"id":719},{"properties":{"instrument":"xylophone","note":"11","powered":"true"},"id":720},{"properties":{"instrument":"xylophone","note":"11","powered":"false"},"id":721},{"properties":{"instrument":"xylophone","note":"12","powered":"true"},"id":722},{"properties":{"instrument":"xylophone","note":"12","powered":"false"},"id":723},{"properties":{"instrument":"xylophone","note":"13","powered":"true"},"id":724},{"properties":{"instrument":"xylophone","note":"13","powered":"false"},"id":725},{"properties":{"instrument":"xylophone","note":"14","powered":"true"},"id":726},{"properties":{"instrument":"xylophone","note":"14","powered":"false"},"id":727},{"properties":{"instrument":"xylophone","note":"15","powered":"true"},"id":728},{"properties":{"instrument":"xylophone","note":"15","powered":"false"},"id":729},{"properties":{"instrument":"xylophone","note":"16","powered":"true"},"id":730},{"properties":{"instrument":"xylophone","note":"16","powered":"false"},"id":731},{"properties":{"instrument":"xylophone","note":"17","powered":"true"},"id":732},{"properties":{"instrument":"xylophone","note":"17","powered":"false"},"id":733},{"properties":{"instrument":"xylophone","note":"18","powered":"true"},"id":734},{"properties":{"instrument":"xylophone","note":"18","powered":"false"},"id":735},{"properties":{"instrument":"xylophone","note":"19","powered":"true"},"id":736},{"properties":{"instrument":"xylophone","note":"19","powered":"false"},"id":737},{"properties":{"instrument":"xylophone","note":"20","powered":"true"},"id":738},{"properties":{"instrument":"xylophone","note":"20","powered":"false"},"id":739},{"properties":{"instrument":"xylophone","note":"21","powered":"true"},"id":740},{"properties":{"instrument":"xylophone","note":"21","powered":"false"},"id":741},{"properties":{"instrument":"xylophone","note":"22","powered":"true"},"id":742},{"properties":{"instrument":"xylophone","note":"22","powered":"false"},"id":743},{"properties":{"instrument":"xylophone","note":"23","powered":"true"},"id":744},{"properties":{"instrument":"xylophone","note":"23","powered":"false"},"id":745},{"properties":{"instrument":"xylophone","note":"24","powered":"true"},"id":746},{"properties":{"instrument":"xylophone","note":"24","powered":"false"},"id":747},{"properties":{"instrument":"iron_xylophone","note":"0","powered":"true"},"id":748},{"properties":{"instrument":"iron_xylophone","note":"0","powered":"false"},"id":749},{"properties":{"instrument":"iron_xylophone","note":"1","powered":"true"},"id":750},{"properties":{"instrument":"iron_xylophone","note":"1","powered":"false"},"id":751},{"properties":{"instrument":"iron_xylophone","note":"2","powered":"true"},"id":752},{"properties":{"instrument":"iron_xylophone","note":"2","powered":"false"},"id":753},{"properties":{"instrument":"iron_xylophone","note":"3","powered":"true"},"id":754},{"properties":{"instrument":"iron_xylophone","note":"3","powered":"false"},"id":755},{"properties":{"instrument":"iron_xylophone","note":"4","powered":"true"},"id":756},{"properties":{"instrument":"iron_xylophone","note":"4","powered":"false"},"id":757},{"properties":{"instrument":"iron_xylophone","note":"5","powered":"true"},"id":758},{"properties":{"instrument":"iron_xylophone","note":"5","powered":"false"},"id":759},{"properties":{"instrument":"iron_xylophone","note":"6","powered":"true"},"id":760},{"properties":{"instrument":"iron_xylophone","note":"6","powered":"false"},"id":761},{"properties":{"instrument":"iron_xylophone","note":"7","powered":"true"},"id":762},{"properties":{"instrument":"iron_xylophone","note":"7","powered":"false"},"id":763},{"properties":{"instrument":"iron_xylophone","note":"8","powered":"true"},"id":764},{"properties":{"instrument":"iron_xylophone","note":"8","powered":"false"},"id":765},{"properties":{"instrument":"iron_xylophone","note":"9","powered":"true"},"id":766},{"properties":{"instrument":"iron_xylophone","note":"9","powered":"false"},"id":767},{"properties":{"instrument":"iron_xylophone","note":"10","powered":"true"},"id":768},{"properties":{"instrument":"iron_xylophone","note":"10","powered":"false"},"id":769},{"properties":{"instrument":"iron_xylophone","note":"11","powered":"true"},"id":770},{"properties":{"instrument":"iron_xylophone","note":"11","powered":"false"},"id":771},{"properties":{"instrument":"iron_xylophone","note":"12","powered":"true"},"id":772},{"properties":{"instrument":"iron_xylophone","note":"12","powered":"false"},"id":773},{"properties":{"instrument":"iron_xylophone","note":"13","powered":"true"},"id":774},{"properties":{"instrument":"iron_xylophone","note":"13","powered":"false"},"id":775},{"properties":{"instrument":"iron_xylophone","note":"14","powered":"true"},"id":776},{"properties":{"instrument":"iron_xylophone","note":"14","powered":"false"},"id":777},{"properties":{"instrument":"iron_xylophone","note":"15","powered":"true"},"id":778},{"properties":{"instrument":"iron_xylophone","note":"15","powered":"false"},"id":779},{"properties":{"instrument":"iron_xylophone","note":"16","powered":"true"},"id":780},{"properties":{"instrument":"iron_xylophone","note":"16","powered":"false"},"id":781},{"properties":{"instrument":"iron_xylophone","note":"17","powered":"true"},"id":782},{"properties":{"instrument":"iron_xylophone","note":"17","powered":"false"},"id":783},{"properties":{"instrument":"iron_xylophone","note":"18","powered":"true"},"id":784},{"properties":{"instrument":"iron_xylophone","note":"18","powered":"false"},"id":785},{"properties":{"instrument":"iron_xylophone","note":"19","powered":"true"},"id":786},{"properties":{"instrument":"iron_xylophone","note":"19","powered":"false"},"id":787},{"properties":{"instrument":"iron_xylophone","note":"20","powered":"true"},"id":788},{"properties":{"instrument":"iron_xylophone","note":"20","powered":"false"},"id":789},{"properties":{"instrument":"iron_xylophone","note":"21","powered":"true"},"id":790},{"properties":{"instrument":"iron_xylophone","note":"21","powered":"false"},"id":791},{"properties":{"instrument":"iron_xylophone","note":"22","powered":"true"},"id":792},{"properties":{"instrument":"iron_xylophone","note":"22","powered":"false"},"id":793},{"properties":{"instrument":"iron_xylophone","note":"23","powered":"true"},"id":794},{"properties":{"instrument":"iron_xylophone","note":"23","powered":"false"},"id":795},{"properties":{"instrument":"iron_xylophone","note":"24","powered":"true"},"id":796},{"properties":{"instrument":"iron_xylophone","note":"24","powered":"false"},"id":797},{"properties":{"instrument":"cow_bell","note":"0","powered":"true"},"id":798},{"properties":{"instrument":"cow_bell","note":"0","powered":"false"},"id":799},{"properties":{"instrument":"cow_bell","note":"1","powered":"true"},"id":800},{"properties":{"instrument":"cow_bell","note":"1","powered":"false"},"id":801},{"properties":{"instrument":"cow_bell","note":"2","powered":"true"},"id":802},{"properties":{"instrument":"cow_bell","note":"2","powered":"false"},"id":803},{"properties":{"instrument":"cow_bell","note":"3","powered":"true"},"id":804},{"properties":{"instrument":"cow_bell","note":"3","powered":"false"},"id":805},{"properties":{"instrument":"cow_bell","note":"4","powered":"true"},"id":806},{"properties":{"instrument":"cow_bell","note":"4","powered":"false"},"id":807},{"properties":{"instrument":"cow_bell","note":"5","powered":"true"},"id":808},{"properties":{"instrument":"cow_bell","note":"5","powered":"false"},"id":809},{"properties":{"instrument":"cow_bell","note":"6","powered":"true"},"id":810},{"properties":{"instrument":"cow_bell","note":"6","powered":"false"},"id":811},{"properties":{"instrument":"cow_bell","note":"7","powered":"true"},"id":812},{"properties":{"instrument":"cow_bell","note":"7","powered":"false"},"id":813},{"properties":{"instrument":"cow_bell","note":"8","powered":"true"},"id":814},{"properties":{"instrument":"cow_bell","note":"8","powered":"false"},"id":815},{"properties":{"instrument":"cow_bell","note":"9","powered":"true"},"id":816},{"properties":{"instrument":"cow_bell","note":"9","powered":"false"},"id":817},{"properties":{"instrument":"cow_bell","note":"10","powered":"true"},"id":818},{"properties":{"instrument":"cow_bell","note":"10","powered":"false"},"id":819},{"properties":{"instrument":"cow_bell","note":"11","powered":"true"},"id":820},{"properties":{"instrument":"cow_bell","note":"11","powered":"false"},"id":821},{"properties":{"instrument":"cow_bell","note":"12","powered":"true"},"id":822},{"properties":{"instrument":"cow_bell","note":"12","powered":"false"},"id":823},{"properties":{"instrument":"cow_bell","note":"13","powered":"true"},"id":824},{"properties":{"instrument":"cow_bell","note":"13","powered":"false"},"id":825},{"properties":{"instrument":"cow_bell","note":"14","powered":"true"},"id":826},{"properties":{"instrument":"cow_bell","note":"14","powered":"false"},"id":827},{"properties":{"instrument":"cow_bell","note":"15","powered":"true"},"id":828},{"properties":{"instrument":"cow_bell","note":"15","powered":"false"},"id":829},{"properties":{"instrument":"cow_bell","note":"16","powered":"true"},"id":830},{"properties":{"instrument":"cow_bell","note":"16","powered":"false"},"id":831},{"properties":{"instrument":"cow_bell","note":"17","powered":"true"},"id":832},{"properties":{"instrument":"cow_bell","note":"17","powered":"false"},"id":833},{"properties":{"instrument":"cow_bell","note":"18","powered":"true"},"id":834},{"properties":{"instrument":"cow_bell","note":"18","powered":"false"},"id":835},{"properties":{"instrument":"cow_bell","note":"19","powered":"true"},"id":836},{"properties":{"instrument":"cow_bell","note":"19","powered":"false"},"id":837},{"properties":{"instrument":"cow_bell","note":"20","powered":"true"},"id":838},{"properties":{"instrument":"cow_bell","note":"20","powered":"false"},"id":839},{"properties":{"instrument":"cow_bell","note":"21","powered":"true"},"id":840},{"properties":{"instrument":"cow_bell","note":"21","powered":"false"},"id":841},{"properties":{"instrument":"cow_bell","note":"22","powered":"true"},"id":842},{"properties":{"instrument":"cow_bell","note":"22","powered":"false"},"id":843},{"properties":{"instrument":"cow_bell","note":"23","powered":"true"},"id":844},{"properties":{"instrument":"cow_bell","note":"23","powered":"false"},"id":845},{"properties":{"instrument":"cow_bell","note":"24","powered":"true"},"id":846},{"properties":{"instrument":"cow_bell","note":"24","powered":"false"},"id":847},{"properties":{"instrument":"didgeridoo","note":"0","powered":"true"},"id":848},{"properties":{"instrument":"didgeridoo","note":"0","powered":"false"},"id":849},{"properties":{"instrument":"didgeridoo","note":"1","powered":"true"},"id":850},{"properties":{"instrument":"didgeridoo","note":"1","powered":"false"},"id":851},{"properties":{"instrument":"didgeridoo","note":"2","powered":"true"},"id":852},{"properties":{"instrument":"didgeridoo","note":"2","powered":"false"},"id":853},{"properties":{"instrument":"didgeridoo","note":"3","powered":"true"},"id":854},{"properties":{"instrument":"didgeridoo","note":"3","powered":"false"},"id":855},{"properties":{"instrument":"didgeridoo","note":"4","powered":"true"},"id":856},{"properties":{"instrument":"didgeridoo","note":"4","powered":"false"},"id":857},{"properties":{"instrument":"didgeridoo","note":"5","powered":"true"},"id":858},{"properties":{"instrument":"didgeridoo","note":"5","powered":"false"},"id":859},{"properties":{"instrument":"didgeridoo","note":"6","powered":"true"},"id":860},{"properties":{"instrument":"didgeridoo","note":"6","powered":"false"},"id":861},{"properties":{"instrument":"didgeridoo","note":"7","powered":"true"},"id":862},{"properties":{"instrument":"didgeridoo","note":"7","powered":"false"},"id":863},{"properties":{"instrument":"didgeridoo","note":"8","powered":"true"},"id":864},{"properties":{"instrument":"didgeridoo","note":"8","powered":"false"},"id":865},{"properties":{"instrument":"didgeridoo","note":"9","powered":"true"},"id":866},{"properties":{"instrument":"didgeridoo","note":"9","powered":"false"},"id":867},{"properties":{"instrument":"didgeridoo","note":"10","powered":"true"},"id":868},{"properties":{"instrument":"didgeridoo","note":"10","powered":"false"},"id":869},{"properties":{"instrument":"didgeridoo","note":"11","powered":"true"},"id":870},{"properties":{"instrument":"didgeridoo","note":"11","powered":"false"},"id":871},{"properties":{"instrument":"didgeridoo","note":"12","powered":"true"},"id":872},{"properties":{"instrument":"didgeridoo","note":"12","powered":"false"},"id":873},{"properties":{"instrument":"didgeridoo","note":"13","powered":"true"},"id":874},{"properties":{"instrument":"didgeridoo","note":"13","powered":"false"},"id":875},{"properties":{"instrument":"didgeridoo","note":"14","powered":"true"},"id":876},{"properties":{"instrument":"didgeridoo","note":"14","powered":"false"},"id":877},{"properties":{"instrument":"didgeridoo","note":"15","powered":"true"},"id":878},{"properties":{"instrument":"didgeridoo","note":"15","powered":"false"},"id":879},{"properties":{"instrument":"didgeridoo","note":"16","powered":"true"},"id":880},{"properties":{"instrument":"didgeridoo","note":"16","powered":"false"},"id":881},{"properties":{"instrument":"didgeridoo","note":"17","powered":"true"},"id":882},{"properties":{"instrument":"didgeridoo","note":"17","powered":"false"},"id":883},{"properties":{"instrument":"didgeridoo","note":"18","powered":"true"},"id":884},{"properties":{"instrument":"didgeridoo","note":"18","powered":"false"},"id":885},{"properties":{"instrument":"didgeridoo","note":"19","powered":"true"},"id":886},{"properties":{"instrument":"didgeridoo","note":"19","powered":"false"},"id":887},{"properties":{"instrument":"didgeridoo","note":"20","powered":"true"},"id":888},{"properties":{"instrument":"didgeridoo","note":"20","powered":"false"},"id":889},{"properties":{"instrument":"didgeridoo","note":"21","powered":"true"},"id":890},{"properties":{"instrument":"didgeridoo","note":"21","powered":"false"},"id":891},{"properties":{"instrument":"didgeridoo","note":"22","powered":"true"},"id":892},{"properties":{"instrument":"didgeridoo","note":"22","powered":"false"},"id":893},{"properties":{"instrument":"didgeridoo","note":"23","powered":"true"},"id":894},{"properties":{"instrument":"didgeridoo","note":"23","powered":"false"},"id":895},{"properties":{"instrument":"didgeridoo","note":"24","powered":"true"},"id":896},{"properties":{"instrument":"didgeridoo","note":"24","powered":"false"},"id":897},{"properties":{"instrument":"bit","note":"0","powered":"true"},"id":898},{"properties":{"instrument":"bit","note":"0","powered":"false"},"id":899},{"properties":{"instrument":"bit","note":"1","powered":"true"},"id":900},{"properties":{"instrument":"bit","note":"1","powered":"false"},"id":901},{"properties":{"instrument":"bit","note":"2","powered":"true"},"id":902},{"properties":{"instrument":"bit","note":"2","powered":"false"},"id":903},{"properties":{"instrument":"bit","note":"3","powered":"true"},"id":904},{"properties":{"instrument":"bit","note":"3","powered":"false"},"id":905},{"properties":{"instrument":"bit","note":"4","powered":"true"},"id":906},{"properties":{"instrument":"bit","note":"4","powered":"false"},"id":907},{"properties":{"instrument":"bit","note":"5","powered":"true"},"id":908},{"properties":{"instrument":"bit","note":"5","powered":"false"},"id":909},{"properties":{"instrument":"bit","note":"6","powered":"true"},"id":910},{"properties":{"instrument":"bit","note":"6","powered":"false"},"id":911},{"properties":{"instrument":"bit","note":"7","powered":"true"},"id":912},{"properties":{"instrument":"bit","note":"7","powered":"false"},"id":913},{"properties":{"instrument":"bit","note":"8","powered":"true"},"id":914},{"properties":{"instrument":"bit","note":"8","powered":"false"},"id":915},{"properties":{"instrument":"bit","note":"9","powered":"true"},"id":916},{"properties":{"instrument":"bit","note":"9","powered":"false"},"id":917},{"properties":{"instrument":"bit","note":"10","powered":"true"},"id":918},{"properties":{"instrument":"bit","note":"10","powered":"false"},"id":919},{"properties":{"instrument":"bit","note":"11","powered":"true"},"id":920},{"properties":{"instrument":"bit","note":"11","powered":"false"},"id":921},{"properties":{"instrument":"bit","note":"12","powered":"true"},"id":922},{"properties":{"instrument":"bit","note":"12","powered":"false"},"id":923},{"properties":{"instrument":"bit","note":"13","powered":"true"},"id":924},{"properties":{"instrument":"bit","note":"13","powered":"false"},"id":925},{"properties":{"instrument":"bit","note":"14","powered":"true"},"id":926},{"properties":{"instrument":"bit","note":"14","powered":"false"},"id":927},{"properties":{"instrument":"bit","note":"15","powered":"true"},"id":928},{"properties":{"instrument":"bit","note":"15","powered":"false"},"id":929},{"properties":{"instrument":"bit","note":"16","powered":"true"},"id":930},{"properties":{"instrument":"bit","note":"16","powered":"false"},"id":931},{"properties":{"instrument":"bit","note":"17","powered":"true"},"id":932},{"properties":{"instrument":"bit","note":"17","powered":"false"},"id":933},{"properties":{"instrument":"bit","note":"18","powered":"true"},"id":934},{"properties":{"instrument":"bit","note":"18","powered":"false"},"id":935},{"properties":{"instrument":"bit","note":"19","powered":"true"},"id":936},{"properties":{"instrument":"bit","note":"19","powered":"false"},"id":937},{"properties":{"instrument":"bit","note":"20","powered":"true"},"id":938},{"properties":{"instrument":"bit","note":"20","powered":"false"},"id":939},{"properties":{"instrument":"bit","note":"21","powered":"true"},"id":940},{"properties":{"instrument":"bit","note":"21","powered":"false"},"id":941},{"properties":{"instrument":"bit","note":"22","powered":"true"},"id":942},{"properties":{"instrument":"bit","note":"22","powered":"false"},"id":943},{"properties":{"instrument":"bit","note":"23","powered":"true"},"id":944},{"properties":{"instrument":"bit","note":"23","powered":"false"},"id":945},{"properties":{"instrument":"bit","note":"24","powered":"true"},"id":946},{"properties":{"instrument":"bit","note":"24","powered":"false"},"id":947},{"properties":{"instrument":"banjo","note":"0","powered":"true"},"id":948},{"properties":{"instrument":"banjo","note":"0","powered":"false"},"id":949},{"properties":{"instrument":"banjo","note":"1","powered":"true"},"id":950},{"properties":{"instrument":"banjo","note":"1","powered":"false"},"id":951},{"properties":{"instrument":"banjo","note":"2","powered":"true"},"id":952},{"properties":{"instrument":"banjo","note":"2","powered":"false"},"id":953},{"properties":{"instrument":"banjo","note":"3","powered":"true"},"id":954},{"properties":{"instrument":"banjo","note":"3","powered":"false"},"id":955},{"properties":{"instrument":"banjo","note":"4","powered":"true"},"id":956},{"properties":{"instrument":"banjo","note":"4","powered":"false"},"id":957},{"properties":{"instrument":"banjo","note":"5","powered":"true"},"id":958},{"properties":{"instrument":"banjo","note":"5","powered":"false"},"id":959},{"properties":{"instrument":"banjo","note":"6","powered":"true"},"id":960},{"properties":{"instrument":"banjo","note":"6","powered":"false"},"id":961},{"properties":{"instrument":"banjo","note":"7","powered":"true"},"id":962},{"properties":{"instrument":"banjo","note":"7","powered":"false"},"id":963},{"properties":{"instrument":"banjo","note":"8","powered":"true"},"id":964},{"properties":{"instrument":"banjo","note":"8","powered":"false"},"id":965},{"properties":{"instrument":"banjo","note":"9","powered":"true"},"id":966},{"properties":{"instrument":"banjo","note":"9","powered":"false"},"id":967},{"properties":{"instrument":"banjo","note":"10","powered":"true"},"id":968},{"properties":{"instrument":"banjo","note":"10","powered":"false"},"id":969},{"properties":{"instrument":"banjo","note":"11","powered":"true"},"id":970},{"properties":{"instrument":"banjo","note":"11","powered":"false"},"id":971},{"properties":{"instrument":"banjo","note":"12","powered":"true"},"id":972},{"properties":{"instrument":"banjo","note":"12","powered":"false"},"id":973},{"properties":{"instrument":"banjo","note":"13","powered":"true"},"id":974},{"properties":{"instrument":"banjo","note":"13","powered":"false"},"id":975},{"properties":{"instrument":"banjo","note":"14","powered":"true"},"id":976},{"properties":{"instrument":"banjo","note":"14","powered":"false"},"id":977},{"properties":{"instrument":"banjo","note":"15","powered":"true"},"id":978},{"properties":{"instrument":"banjo","note":"15","powered":"false"},"id":979},{"properties":{"instrument":"banjo","note":"16","powered":"true"},"id":980},{"properties":{"instrument":"banjo","note":"16","powered":"false"},"id":981},{"properties":{"instrument":"banjo","note":"17","powered":"true"},"id":982},{"properties":{"instrument":"banjo","note":"17","powered":"false"},"id":983},{"properties":{"instrument":"banjo","note":"18","powered":"true"},"id":984},{"properties":{"instrument":"banjo","note":"18","powered":"false"},"id":985},{"properties":{"instrument":"banjo","note":"19","powered":"true"},"id":986},{"properties":{"instrument":"banjo","note":"19","powered":"false"},"id":987},{"properties":{"instrument":"banjo","note":"20","powered":"true"},"id":988},{"properties":{"instrument":"banjo","note":"20","powered":"false"},"id":989},{"properties":{"instrument":"banjo","note":"21","powered":"true"},"id":990},{"properties":{"instrument":"banjo","note":"21","powered":"false"},"id":991},{"properties":{"instrument":"banjo","note":"22","powered":"true"},"id":992},{"properties":{"instrument":"banjo","note":"22","powered":"false"},"id":993},{"properties":{"instrument":"banjo","note":"23","powered":"true"},"id":994},{"properties":{"instrument":"banjo","note":"23","powered":"false"},"id":995},{"properties":{"instrument":"banjo","note":"24","powered":"true"},"id":996},{"properties":{"instrument":"banjo","note":"24","powered":"false"},"id":997},{"properties":{"instrument":"pling","note":"0","powered":"true"},"id":998},{"properties":{"instrument":"pling","note":"0","powered":"false"},"id":999},{"properties":{"instrument":"pling","note":"1","powered":"true"},"id":1000},{"properties":{"instrument":"pling","note":"1","powered":"false"},"id":1001},{"properties":{"instrument":"pling","note":"2","powered":"true"},"id":1002},{"properties":{"instrument":"pling","note":"2","powered":"false"},"id":1003},{"properties":{"instrument":"pling","note":"3","powered":"true"},"id":1004},{"properties":{"instrument":"pling","note":"3","powered":"false"},"id":1005},{"properties":{"instrument":"pling","note":"4","powered":"true"},"id":1006},{"properties":{"instrument":"pling","note":"4","powered":"false"},"id":1007},{"properties":{"instrument":"pling","note":"5","powered":"true"},"id":1008},{"properties":{"instrument":"pling","note":"5","powered":"false"},"id":1009},{"properties":{"instrument":"pling","note":"6","powered":"true"},"id":1010},{"properties":{"instrument":"pling","note":"6","powered":"false"},"id":1011},{"properties":{"instrument":"pling","note":"7","powered":"true"},"id":1012},{"properties":{"instrument":"pling","note":"7","powered":"false"},"id":1013},{"properties":{"instrument":"pling","note":"8","powered":"true"},"id":1014},{"properties":{"instrument":"pling","note":"8","powered":"false"},"id":1015},{"properties":{"instrument":"pling","note":"9","powered":"true"},"id":1016},{"properties":{"instrument":"pling","note":"9","powered":"false"},"id":1017},{"properties":{"instrument":"pling","note":"10","powered":"true"},"id":1018},{"properties":{"instrument":"pling","note":"10","powered":"false"},"id":1019},{"properties":{"instrument":"pling","note":"11","powered":"true"},"id":1020},{"properties":{"instrument":"pling","note":"11","powered":"false"},"id":1021},{"properties":{"instrument":"pling","note":"12","powered":"true"},"id":1022},{"properties":{"instrument":"pling","note":"12","powered":"false"},"id":1023},{"properties":{"instrument":"pling","note":"13","powered":"true"},"id":1024},{"properties":{"instrument":"pling","note":"13","powered":"false"},"id":1025},{"properties":{"instrument":"pling","note":"14","powered":"true"},"id":1026},{"properties":{"instrument":"pling","note":"14","powered":"false"},"id":1027},{"properties":{"instrument":"pling","note":"15","powered":"true"},"id":1028},{"properties":{"instrument":"pling","note":"15","powered":"false"},"id":1029},{"properties":{"instrument":"pling","note":"16","powered":"true"},"id":1030},{"properties":{"instrument":"pling","note":"16","powered":"false"},"id":1031},{"properties":{"instrument":"pling","note":"17","powered":"true"},"id":1032},{"properties":{"instrument":"pling","note":"17","powered":"false"},"id":1033},{"properties":{"instrument":"pling","note":"18","powered":"true"},"id":1034},{"properties":{"instrument":"pling","note":"18","powered":"false"},"id":1035},{"properties":{"instrument":"pling","note":"19","powered":"true"},"id":1036},{"properties":{"instrument":"pling","note":"19","powered":"false"},"id":1037},{"properties":{"instrument":"pling","note":"20","powered":"true"},"id":1038},{"properties":{"instrument":"pling","note":"20","powered":"false"},"id":1039},{"properties":{"instrument":"pling","note":"21","powered":"true"},"id":1040},{"properties":{"instrument":"pling","note":"21","powered":"false"},"id":1041},{"properties":{"instrument":"pling","note":"22","powered":"true"},"id":1042},{"properties":{"instrument":"pling","note":"22","powered":"false"},"id":1043},{"properties":{"instrument":"pling","note":"23","powered":"true"},"id":1044},{"properties":{"instrument":"pling","note":"23","powered":"false"},"id":1045},{"properties":{"instrument":"pling","note":"24","powered":"true"},"id":1046},{"properties":{"instrument":"pling","note":"24","powered":"false"},"id":1047}]},"white_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1048},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1049},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1050},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1051},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1052},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1053},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1054},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1055},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1056},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1057},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1058},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1059},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1060},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1061},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1062},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1063}]},"orange_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1064},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1065},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1066},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1067},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1068},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1069},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1070},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1071},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1072},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1073},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1074},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1075},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1076},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1077},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1078},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1079}]},"magenta_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1080},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1081},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1082},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1083},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1084},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1085},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1086},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1087},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1088},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1089},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1090},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1091},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1092},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1093},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1094},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1095}]},"light_blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1096},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1097},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1098},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1099},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1100},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1101},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1102},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1103},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1104},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1105},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1106},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1107},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1108},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1109},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1110},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1111}]},"yellow_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1112},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1113},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1114},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1115},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1116},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1117},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1118},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1119},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1120},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1121},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1122},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1123},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1124},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1125},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1126},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1127}]},"lime_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1128},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1129},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1130},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1131},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1132},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1133},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1134},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1135},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1136},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1137},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1138},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1139},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1140},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1141},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1142},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1143}]},"pink_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1144},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1145},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1146},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1147},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1148},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1149},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1150},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1151},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1152},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1153},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1154},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1155},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1156},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1157},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1158},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1159}]},"gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1160},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1161},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1162},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1163},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1164},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1165},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1166},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1167},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1168},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1169},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1170},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1171},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1172},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1173},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1174},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1175}]},"light_gray_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1176},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1177},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1178},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1179},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1180},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1181},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1182},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1183},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1184},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1185},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1186},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1187},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1188},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1189},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1190},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1191}]},"cyan_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1192},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1193},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1194},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1195},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1196},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1197},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1198},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1199},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1200},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1201},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1202},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1203},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1204},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1205},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1206},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1207}]},"purple_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1208},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1209},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1210},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1211},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1212},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1213},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1214},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1215},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1216},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1217},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1218},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1219},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1220},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1221},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1222},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1223}]},"blue_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1224},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1225},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1226},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1227},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1228},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1229},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1230},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1231},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1232},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1233},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1234},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1235},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1236},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1237},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1238},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1239}]},"brown_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1240},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1241},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1242},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1243},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1244},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1245},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1246},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1247},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1248},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1249},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1250},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1251},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1252},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1253},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1254},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1255}]},"green_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1256},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1257},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1258},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1259},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1260},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1261},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1262},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1263},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1264},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1265},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1266},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1267},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1268},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1269},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1270},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1271}]},"red_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1272},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1273},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1274},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1275},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1276},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1277},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1278},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1279},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1280},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1281},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1282},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1283},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1284},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1285},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1286},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1287}]},"black_bed":{"properties":{"facing":["north","south","west","east"],"occupied":["true","false"],"part":["head","foot"]},"states":[{"properties":{"facing":"north","occupied":"true","part":"head"},"id":1288},{"properties":{"facing":"north","occupied":"true","part":"foot"},"id":1289},{"properties":{"facing":"north","occupied":"false","part":"head"},"id":1290},{"properties":{"facing":"north","occupied":"false","part":"foot"},"id":1291},{"properties":{"facing":"south","occupied":"true","part":"head"},"id":1292},{"properties":{"facing":"south","occupied":"true","part":"foot"},"id":1293},{"properties":{"facing":"south","occupied":"false","part":"head"},"id":1294},{"properties":{"facing":"south","occupied":"false","part":"foot"},"id":1295},{"properties":{"facing":"west","occupied":"true","part":"head"},"id":1296},{"properties":{"facing":"west","occupied":"true","part":"foot"},"id":1297},{"properties":{"facing":"west","occupied":"false","part":"head"},"id":1298},{"properties":{"facing":"west","occupied":"false","part":"foot"},"id":1299},{"properties":{"facing":"east","occupied":"true","part":"head"},"id":1300},{"properties":{"facing":"east","occupied":"true","part":"foot"},"id":1301},{"properties":{"facing":"east","occupied":"false","part":"head"},"id":1302},{"properties":{"facing":"east","occupied":"false","part":"foot"},"id":1303}]},"powered_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1304},{"properties":{"powered":"true","shape":"east_west"},"id":1305},{"properties":{"powered":"true","shape":"ascending_east"},"id":1306},{"properties":{"powered":"true","shape":"ascending_west"},"id":1307},{"properties":{"powered":"true","shape":"ascending_north"},"id":1308},{"properties":{"powered":"true","shape":"ascending_south"},"id":1309},{"properties":{"powered":"false","shape":"north_south"},"id":1310},{"properties":{"powered":"false","shape":"east_west"},"id":1311},{"properties":{"powered":"false","shape":"ascending_east"},"id":1312},{"properties":{"powered":"false","shape":"ascending_west"},"id":1313},{"properties":{"powered":"false","shape":"ascending_north"},"id":1314},{"properties":{"powered":"false","shape":"ascending_south"},"id":1315}]},"detector_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":1316},{"properties":{"powered":"true","shape":"east_west"},"id":1317},{"properties":{"powered":"true","shape":"ascending_east"},"id":1318},{"properties":{"powered":"true","shape":"ascending_west"},"id":1319},{"properties":{"powered":"true","shape":"ascending_north"},"id":1320},{"properties":{"powered":"true","shape":"ascending_south"},"id":1321},{"properties":{"powered":"false","shape":"north_south"},"id":1322},{"properties":{"powered":"false","shape":"east_west"},"id":1323},{"properties":{"powered":"false","shape":"ascending_east"},"id":1324},{"properties":{"powered":"false","shape":"ascending_west"},"id":1325},{"properties":{"powered":"false","shape":"ascending_north"},"id":1326},{"properties":{"powered":"false","shape":"ascending_south"},"id":1327}]},"sticky_piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1328},{"properties":{"extended":"true","facing":"east"},"id":1329},{"properties":{"extended":"true","facing":"south"},"id":1330},{"properties":{"extended":"true","facing":"west"},"id":1331},{"properties":{"extended":"true","facing":"up"},"id":1332},{"properties":{"extended":"true","facing":"down"},"id":1333},{"properties":{"extended":"false","facing":"north"},"id":1334},{"properties":{"extended":"false","facing":"east"},"id":1335},{"properties":{"extended":"false","facing":"south"},"id":1336},{"properties":{"extended":"false","facing":"west"},"id":1337},{"properties":{"extended":"false","facing":"up"},"id":1338},{"properties":{"extended":"false","facing":"down"},"id":1339}]},"cobweb":{"states":[{"id":1340}]},"grass":{"states":[{"id":1341}]},"fern":{"states":[{"id":1342}]},"dead_bush":{"states":[{"id":1343}]},"seagrass":{"states":[{"id":1344}]},"tall_seagrass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":1345},{"properties":{"half":"lower"},"id":1346}]},"piston":{"properties":{"extended":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"extended":"true","facing":"north"},"id":1347},{"properties":{"extended":"true","facing":"east"},"id":1348},{"properties":{"extended":"true","facing":"south"},"id":1349},{"properties":{"extended":"true","facing":"west"},"id":1350},{"properties":{"extended":"true","facing":"up"},"id":1351},{"properties":{"extended":"true","facing":"down"},"id":1352},{"properties":{"extended":"false","facing":"north"},"id":1353},{"properties":{"extended":"false","facing":"east"},"id":1354},{"properties":{"extended":"false","facing":"south"},"id":1355},{"properties":{"extended":"false","facing":"west"},"id":1356},{"properties":{"extended":"false","facing":"up"},"id":1357},{"properties":{"extended":"false","facing":"down"},"id":1358}]},"piston_head":{"properties":{"facing":["north","east","south","west","up","down"],"short":["true","false"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","short":"true","type":"normal"},"id":1359},{"properties":{"facing":"north","short":"true","type":"sticky"},"id":1360},{"properties":{"facing":"north","short":"false","type":"normal"},"id":1361},{"properties":{"facing":"north","short":"false","type":"sticky"},"id":1362},{"properties":{"facing":"east","short":"true","type":"normal"},"id":1363},{"properties":{"facing":"east","short":"true","type":"sticky"},"id":1364},{"properties":{"facing":"east","short":"false","type":"normal"},"id":1365},{"properties":{"facing":"east","short":"false","type":"sticky"},"id":1366},{"properties":{"facing":"south","short":"true","type":"normal"},"id":1367},{"properties":{"facing":"south","short":"true","type":"sticky"},"id":1368},{"properties":{"facing":"south","short":"false","type":"normal"},"id":1369},{"properties":{"facing":"south","short":"false","type":"sticky"},"id":1370},{"properties":{"facing":"west","short":"true","type":"normal"},"id":1371},{"properties":{"facing":"west","short":"true","type":"sticky"},"id":1372},{"properties":{"facing":"west","short":"false","type":"normal"},"id":1373},{"properties":{"facing":"west","short":"false","type":"sticky"},"id":1374},{"properties":{"facing":"up","short":"true","type":"normal"},"id":1375},{"properties":{"facing":"up","short":"true","type":"sticky"},"id":1376},{"properties":{"facing":"up","short":"false","type":"normal"},"id":1377},{"properties":{"facing":"up","short":"false","type":"sticky"},"id":1378},{"properties":{"facing":"down","short":"true","type":"normal"},"id":1379},{"properties":{"facing":"down","short":"true","type":"sticky"},"id":1380},{"properties":{"facing":"down","short":"false","type":"normal"},"id":1381},{"properties":{"facing":"down","short":"false","type":"sticky"},"id":1382}]},"white_wool":{"states":[{"id":1383}]},"orange_wool":{"states":[{"id":1384}]},"magenta_wool":{"states":[{"id":1385}]},"light_blue_wool":{"states":[{"id":1386}]},"yellow_wool":{"states":[{"id":1387}]},"lime_wool":{"states":[{"id":1388}]},"pink_wool":{"states":[{"id":1389}]},"gray_wool":{"states":[{"id":1390}]},"light_gray_wool":{"states":[{"id":1391}]},"cyan_wool":{"states":[{"id":1392}]},"purple_wool":{"states":[{"id":1393}]},"blue_wool":{"states":[{"id":1394}]},"brown_wool":{"states":[{"id":1395}]},"green_wool":{"states":[{"id":1396}]},"red_wool":{"states":[{"id":1397}]},"black_wool":{"states":[{"id":1398}]},"moving_piston":{"properties":{"facing":["north","east","south","west","up","down"],"type":["normal","sticky"]},"states":[{"properties":{"facing":"north","type":"normal"},"id":1399},{"properties":{"facing":"north","type":"sticky"},"id":1400},{"properties":{"facing":"east","type":"normal"},"id":1401},{"properties":{"facing":"east","type":"sticky"},"id":1402},{"properties":{"facing":"south","type":"normal"},"id":1403},{"properties":{"facing":"south","type":"sticky"},"id":1404},{"properties":{"facing":"west","type":"normal"},"id":1405},{"properties":{"facing":"west","type":"sticky"},"id":1406},{"properties":{"facing":"up","type":"normal"},"id":1407},{"properties":{"facing":"up","type":"sticky"},"id":1408},{"properties":{"facing":"down","type":"normal"},"id":1409},{"properties":{"facing":"down","type":"sticky"},"id":1410}]},"dandelion":{"states":[{"id":1411}]},"poppy":{"states":[{"id":1412}]},"blue_orchid":{"states":[{"id":1413}]},"allium":{"states":[{"id":1414}]},"azure_bluet":{"states":[{"id":1415}]},"red_tulip":{"states":[{"id":1416}]},"orange_tulip":{"states":[{"id":1417}]},"white_tulip":{"states":[{"id":1418}]},"pink_tulip":{"states":[{"id":1419}]},"oxeye_daisy":{"states":[{"id":1420}]},"cornflower":{"states":[{"id":1421}]},"wither_rose":{"states":[{"id":1422}]},"lily_of_the_valley":{"states":[{"id":1423}]},"brown_mushroom":{"states":[{"id":1424}]},"red_mushroom":{"states":[{"id":1425}]},"gold_block":{"states":[{"id":1426}]},"iron_block":{"states":[{"id":1427}]},"bricks":{"states":[{"id":1428}]},"tnt":{"properties":{"unstable":["true","false"]},"states":[{"properties":{"unstable":"true"},"id":1429},{"properties":{"unstable":"false"},"id":1430}]},"bookshelf":{"states":[{"id":1431}]},"mossy_cobblestone":{"states":[{"id":1432}]},"obsidian":{"states":[{"id":1433}]},"torch":{"states":[{"id":1434}]},"wall_torch":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":1435},{"properties":{"facing":"south"},"id":1436},{"properties":{"facing":"west"},"id":1437},{"properties":{"facing":"east"},"id":1438}]},"fire":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1439},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1440},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1441},{"properties":{"age":"0","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1442},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1443},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1444},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1445},{"properties":{"age":"0","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1446},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1447},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1448},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1449},{"properties":{"age":"0","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1450},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1451},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1452},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1453},{"properties":{"age":"0","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1454},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1455},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1456},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1457},{"properties":{"age":"0","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1458},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1459},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1460},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1461},{"properties":{"age":"0","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1462},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1463},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1464},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1465},{"properties":{"age":"0","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1466},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1467},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1468},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1469},{"properties":{"age":"0","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1470},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1471},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1472},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1473},{"properties":{"age":"1","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1474},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1475},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1476},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1477},{"properties":{"age":"1","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1478},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1479},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1480},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1481},{"properties":{"age":"1","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1482},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1483},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1484},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1485},{"properties":{"age":"1","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1486},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1487},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1488},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1489},{"properties":{"age":"1","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1490},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1491},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1492},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1493},{"properties":{"age":"1","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1494},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1495},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1496},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1497},{"properties":{"age":"1","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1498},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1499},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1500},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1501},{"properties":{"age":"1","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1502},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1503},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1504},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1505},{"properties":{"age":"2","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1506},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1507},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1508},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1509},{"properties":{"age":"2","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1510},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1511},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1512},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1513},{"properties":{"age":"2","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1514},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1515},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1516},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1517},{"properties":{"age":"2","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1518},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1519},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1520},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1521},{"properties":{"age":"2","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1522},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1523},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1524},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1525},{"properties":{"age":"2","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1526},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1527},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1528},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1529},{"properties":{"age":"2","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1530},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1531},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1532},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1533},{"properties":{"age":"2","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1534},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1535},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1536},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1537},{"properties":{"age":"3","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1538},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1539},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1540},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1541},{"properties":{"age":"3","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1542},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1543},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1544},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1545},{"properties":{"age":"3","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1546},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1547},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1548},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1549},{"properties":{"age":"3","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1550},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1551},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1552},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1553},{"properties":{"age":"3","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1554},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1555},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1556},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1557},{"properties":{"age":"3","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1558},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1559},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1560},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1561},{"properties":{"age":"3","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1562},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1563},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1564},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1565},{"properties":{"age":"3","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1566},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1567},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1568},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1569},{"properties":{"age":"4","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1570},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1571},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1572},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1573},{"properties":{"age":"4","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1574},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1575},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1576},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1577},{"properties":{"age":"4","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1578},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1579},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1580},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1581},{"properties":{"age":"4","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1582},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1583},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1584},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1585},{"properties":{"age":"4","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1586},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1587},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1588},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1589},{"properties":{"age":"4","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1590},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1591},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1592},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1593},{"properties":{"age":"4","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1594},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1595},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1596},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1597},{"properties":{"age":"4","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1598},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1599},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1600},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1601},{"properties":{"age":"5","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1602},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1603},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1604},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1605},{"properties":{"age":"5","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1606},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1607},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1608},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1609},{"properties":{"age":"5","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1610},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1611},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1612},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1613},{"properties":{"age":"5","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1614},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1615},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1616},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1617},{"properties":{"age":"5","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1618},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1619},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1620},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1621},{"properties":{"age":"5","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1622},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1623},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1624},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1625},{"properties":{"age":"5","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1626},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1627},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1628},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1629},{"properties":{"age":"5","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1630},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1631},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1632},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1633},{"properties":{"age":"6","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1634},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1635},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1636},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1637},{"properties":{"age":"6","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1638},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1639},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1640},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1641},{"properties":{"age":"6","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1642},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1643},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1644},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1645},{"properties":{"age":"6","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1646},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1647},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1648},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1649},{"properties":{"age":"6","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1650},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1651},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1652},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1653},{"properties":{"age":"6","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1654},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1655},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1656},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1657},{"properties":{"age":"6","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1658},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1659},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1660},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1661},{"properties":{"age":"6","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1662},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1663},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1664},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1665},{"properties":{"age":"7","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1666},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1667},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1668},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1669},{"properties":{"age":"7","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1670},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1671},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1672},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1673},{"properties":{"age":"7","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1674},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1675},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1676},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1677},{"properties":{"age":"7","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1678},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1679},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1680},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1681},{"properties":{"age":"7","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1682},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1683},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1684},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1685},{"properties":{"age":"7","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1686},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1687},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1688},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1689},{"properties":{"age":"7","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1690},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1691},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1692},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1693},{"properties":{"age":"7","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1694},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1695},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1696},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1697},{"properties":{"age":"8","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1698},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1699},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1700},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1701},{"properties":{"age":"8","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1702},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1703},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1704},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1705},{"properties":{"age":"8","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1706},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1707},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1708},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1709},{"properties":{"age":"8","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1710},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1711},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1712},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1713},{"properties":{"age":"8","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1714},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1715},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1716},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1717},{"properties":{"age":"8","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1718},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1719},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1720},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1721},{"properties":{"age":"8","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1722},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1723},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1724},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1725},{"properties":{"age":"8","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1726},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1727},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1728},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1729},{"properties":{"age":"9","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1730},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1731},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1732},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1733},{"properties":{"age":"9","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1734},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1735},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1736},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1737},{"properties":{"age":"9","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1738},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1739},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1740},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1741},{"properties":{"age":"9","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1742},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1743},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1744},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1745},{"properties":{"age":"9","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1746},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1747},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1748},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1749},{"properties":{"age":"9","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1750},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1751},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1752},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1753},{"properties":{"age":"9","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1754},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1755},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1756},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1757},{"properties":{"age":"9","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1758},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1759},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1760},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1761},{"properties":{"age":"10","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1762},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1763},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1764},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1765},{"properties":{"age":"10","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1766},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1767},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1768},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1769},{"properties":{"age":"10","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1770},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1771},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1772},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1773},{"properties":{"age":"10","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1774},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1775},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1776},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1777},{"properties":{"age":"10","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1778},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1779},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1780},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1781},{"properties":{"age":"10","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1782},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1783},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1784},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1785},{"properties":{"age":"10","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1786},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1787},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1788},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1789},{"properties":{"age":"10","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1790},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1791},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1792},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1793},{"properties":{"age":"11","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1794},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1795},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1796},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1797},{"properties":{"age":"11","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1798},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1799},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1800},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1801},{"properties":{"age":"11","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1802},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1803},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1804},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1805},{"properties":{"age":"11","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1806},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1807},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1808},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1809},{"properties":{"age":"11","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1810},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1811},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1812},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1813},{"properties":{"age":"11","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1814},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1815},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1816},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1817},{"properties":{"age":"11","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1818},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1819},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1820},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1821},{"properties":{"age":"11","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1822},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1823},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1824},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1825},{"properties":{"age":"12","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1826},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1827},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1828},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1829},{"properties":{"age":"12","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1830},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1831},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1832},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1833},{"properties":{"age":"12","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1834},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1835},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1836},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1837},{"properties":{"age":"12","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1838},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1839},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1840},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1841},{"properties":{"age":"12","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1842},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1843},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1844},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1845},{"properties":{"age":"12","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1846},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1847},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1848},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1849},{"properties":{"age":"12","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1850},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1851},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1852},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1853},{"properties":{"age":"12","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1854},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1855},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1856},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1857},{"properties":{"age":"13","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1858},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1859},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1860},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1861},{"properties":{"age":"13","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1862},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1863},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1864},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1865},{"properties":{"age":"13","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1866},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1867},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1868},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1869},{"properties":{"age":"13","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1870},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1871},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1872},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1873},{"properties":{"age":"13","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1874},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1875},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1876},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1877},{"properties":{"age":"13","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1878},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1879},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1880},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1881},{"properties":{"age":"13","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1882},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1883},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1884},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1885},{"properties":{"age":"13","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1886},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1887},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1888},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1889},{"properties":{"age":"14","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1890},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1891},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1892},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1893},{"properties":{"age":"14","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1894},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1895},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1896},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1897},{"properties":{"age":"14","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1898},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1899},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1900},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1901},{"properties":{"age":"14","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1902},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1903},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1904},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1905},{"properties":{"age":"14","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1906},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1907},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1908},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1909},{"properties":{"age":"14","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1910},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1911},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1912},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1913},{"properties":{"age":"14","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1914},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1915},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1916},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1917},{"properties":{"age":"14","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1918},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":1919},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":1920},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":1921},{"properties":{"age":"15","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":1922},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":1923},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":1924},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":1925},{"properties":{"age":"15","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":1926},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":1927},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":1928},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":1929},{"properties":{"age":"15","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":1930},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":1931},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":1932},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":1933},{"properties":{"age":"15","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":1934},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":1935},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":1936},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":1937},{"properties":{"age":"15","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":1938},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":1939},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":1940},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":1941},{"properties":{"age":"15","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":1942},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":1943},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":1944},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":1945},{"properties":{"age":"15","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":1946},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":1947},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":1948},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":1949},{"properties":{"age":"15","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":1950}]},"spawner":{"states":[{"id":1951}]},"oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":1952},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":1953},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":1954},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":1955},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":1956},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":1957},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":1958},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":1959},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":1960},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":1961},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":1962},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":1963},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1964},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1965},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1966},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1967},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1968},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1969},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1970},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1971},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":1972},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":1973},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":1974},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":1975},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":1976},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":1977},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":1978},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":1979},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":1980},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":1981},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":1982},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":1983},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":1984},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":1985},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":1986},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":1987},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":1988},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":1989},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":1990},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":1991},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":1992},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":1993},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":1994},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":1995},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":1996},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":1997},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":1998},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":1999},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":2000},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":2001},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":2002},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":2003},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":2004},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":2005},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":2006},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":2007},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":2008},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":2009},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":2010},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":2011},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":2012},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":2013},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":2014},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":2015},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":2016},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":2017},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":2018},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":2019},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":2020},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":2021},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":2022},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":2023},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":2024},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":2025},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":2026},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":2027},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":2028},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":2029},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":2030},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":2031}]},"chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":2032},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":2033},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":2034},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":2035},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":2036},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":2037},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":2038},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":2039},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":2040},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":2041},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":2042},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":2043},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":2044},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":2045},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":2046},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":2047},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":2048},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":2049},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":2050},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":2051},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":2052},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":2053},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":2054},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":2055}]},"redstone_wire":{"properties":{"east":["up","side","none"],"north":["up","side","none"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"south":["up","side","none"],"west":["up","side","none"]},"states":[{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"up"},"id":2056},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"side"},"id":2057},{"properties":{"east":"up","north":"up","power":"0","south":"up","west":"none"},"id":2058},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"up"},"id":2059},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"side"},"id":2060},{"properties":{"east":"up","north":"up","power":"0","south":"side","west":"none"},"id":2061},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"up"},"id":2062},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"side"},"id":2063},{"properties":{"east":"up","north":"up","power":"0","south":"none","west":"none"},"id":2064},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"up"},"id":2065},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"side"},"id":2066},{"properties":{"east":"up","north":"up","power":"1","south":"up","west":"none"},"id":2067},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"up"},"id":2068},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"side"},"id":2069},{"properties":{"east":"up","north":"up","power":"1","south":"side","west":"none"},"id":2070},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"up"},"id":2071},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"side"},"id":2072},{"properties":{"east":"up","north":"up","power":"1","south":"none","west":"none"},"id":2073},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"up"},"id":2074},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"side"},"id":2075},{"properties":{"east":"up","north":"up","power":"2","south":"up","west":"none"},"id":2076},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"up"},"id":2077},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"side"},"id":2078},{"properties":{"east":"up","north":"up","power":"2","south":"side","west":"none"},"id":2079},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"up"},"id":2080},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"side"},"id":2081},{"properties":{"east":"up","north":"up","power":"2","south":"none","west":"none"},"id":2082},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"up"},"id":2083},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"side"},"id":2084},{"properties":{"east":"up","north":"up","power":"3","south":"up","west":"none"},"id":2085},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"up"},"id":2086},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"side"},"id":2087},{"properties":{"east":"up","north":"up","power":"3","south":"side","west":"none"},"id":2088},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"up"},"id":2089},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"side"},"id":2090},{"properties":{"east":"up","north":"up","power":"3","south":"none","west":"none"},"id":2091},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"up"},"id":2092},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"side"},"id":2093},{"properties":{"east":"up","north":"up","power":"4","south":"up","west":"none"},"id":2094},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"up"},"id":2095},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"side"},"id":2096},{"properties":{"east":"up","north":"up","power":"4","south":"side","west":"none"},"id":2097},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"up"},"id":2098},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"side"},"id":2099},{"properties":{"east":"up","north":"up","power":"4","south":"none","west":"none"},"id":2100},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"up"},"id":2101},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"side"},"id":2102},{"properties":{"east":"up","north":"up","power":"5","south":"up","west":"none"},"id":2103},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"up"},"id":2104},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"side"},"id":2105},{"properties":{"east":"up","north":"up","power":"5","south":"side","west":"none"},"id":2106},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"up"},"id":2107},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"side"},"id":2108},{"properties":{"east":"up","north":"up","power":"5","south":"none","west":"none"},"id":2109},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"up"},"id":2110},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"side"},"id":2111},{"properties":{"east":"up","north":"up","power":"6","south":"up","west":"none"},"id":2112},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"up"},"id":2113},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"side"},"id":2114},{"properties":{"east":"up","north":"up","power":"6","south":"side","west":"none"},"id":2115},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"up"},"id":2116},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"side"},"id":2117},{"properties":{"east":"up","north":"up","power":"6","south":"none","west":"none"},"id":2118},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"up"},"id":2119},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"side"},"id":2120},{"properties":{"east":"up","north":"up","power":"7","south":"up","west":"none"},"id":2121},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"up"},"id":2122},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"side"},"id":2123},{"properties":{"east":"up","north":"up","power":"7","south":"side","west":"none"},"id":2124},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"up"},"id":2125},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"side"},"id":2126},{"properties":{"east":"up","north":"up","power":"7","south":"none","west":"none"},"id":2127},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"up"},"id":2128},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"side"},"id":2129},{"properties":{"east":"up","north":"up","power":"8","south":"up","west":"none"},"id":2130},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"up"},"id":2131},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"side"},"id":2132},{"properties":{"east":"up","north":"up","power":"8","south":"side","west":"none"},"id":2133},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"up"},"id":2134},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"side"},"id":2135},{"properties":{"east":"up","north":"up","power":"8","south":"none","west":"none"},"id":2136},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"up"},"id":2137},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"side"},"id":2138},{"properties":{"east":"up","north":"up","power":"9","south":"up","west":"none"},"id":2139},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"up"},"id":2140},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"side"},"id":2141},{"properties":{"east":"up","north":"up","power":"9","south":"side","west":"none"},"id":2142},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"up"},"id":2143},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"side"},"id":2144},{"properties":{"east":"up","north":"up","power":"9","south":"none","west":"none"},"id":2145},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"up"},"id":2146},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"side"},"id":2147},{"properties":{"east":"up","north":"up","power":"10","south":"up","west":"none"},"id":2148},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"up"},"id":2149},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"side"},"id":2150},{"properties":{"east":"up","north":"up","power":"10","south":"side","west":"none"},"id":2151},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"up"},"id":2152},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"side"},"id":2153},{"properties":{"east":"up","north":"up","power":"10","south":"none","west":"none"},"id":2154},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"up"},"id":2155},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"side"},"id":2156},{"properties":{"east":"up","north":"up","power":"11","south":"up","west":"none"},"id":2157},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"up"},"id":2158},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"side"},"id":2159},{"properties":{"east":"up","north":"up","power":"11","south":"side","west":"none"},"id":2160},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"up"},"id":2161},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"side"},"id":2162},{"properties":{"east":"up","north":"up","power":"11","south":"none","west":"none"},"id":2163},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"up"},"id":2164},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"side"},"id":2165},{"properties":{"east":"up","north":"up","power":"12","south":"up","west":"none"},"id":2166},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"up"},"id":2167},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"side"},"id":2168},{"properties":{"east":"up","north":"up","power":"12","south":"side","west":"none"},"id":2169},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"up"},"id":2170},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"side"},"id":2171},{"properties":{"east":"up","north":"up","power":"12","south":"none","west":"none"},"id":2172},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"up"},"id":2173},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"side"},"id":2174},{"properties":{"east":"up","north":"up","power":"13","south":"up","west":"none"},"id":2175},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"up"},"id":2176},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"side"},"id":2177},{"properties":{"east":"up","north":"up","power":"13","south":"side","west":"none"},"id":2178},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"up"},"id":2179},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"side"},"id":2180},{"properties":{"east":"up","north":"up","power":"13","south":"none","west":"none"},"id":2181},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"up"},"id":2182},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"side"},"id":2183},{"properties":{"east":"up","north":"up","power":"14","south":"up","west":"none"},"id":2184},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"up"},"id":2185},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"side"},"id":2186},{"properties":{"east":"up","north":"up","power":"14","south":"side","west":"none"},"id":2187},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"up"},"id":2188},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"side"},"id":2189},{"properties":{"east":"up","north":"up","power":"14","south":"none","west":"none"},"id":2190},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"up"},"id":2191},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"side"},"id":2192},{"properties":{"east":"up","north":"up","power":"15","south":"up","west":"none"},"id":2193},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"up"},"id":2194},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"side"},"id":2195},{"properties":{"east":"up","north":"up","power":"15","south":"side","west":"none"},"id":2196},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"up"},"id":2197},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"side"},"id":2198},{"properties":{"east":"up","north":"up","power":"15","south":"none","west":"none"},"id":2199},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"up"},"id":2200},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"side"},"id":2201},{"properties":{"east":"up","north":"side","power":"0","south":"up","west":"none"},"id":2202},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"up"},"id":2203},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"side"},"id":2204},{"properties":{"east":"up","north":"side","power":"0","south":"side","west":"none"},"id":2205},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"up"},"id":2206},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"side"},"id":2207},{"properties":{"east":"up","north":"side","power":"0","south":"none","west":"none"},"id":2208},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"up"},"id":2209},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"side"},"id":2210},{"properties":{"east":"up","north":"side","power":"1","south":"up","west":"none"},"id":2211},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"up"},"id":2212},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"side"},"id":2213},{"properties":{"east":"up","north":"side","power":"1","south":"side","west":"none"},"id":2214},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"up"},"id":2215},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"side"},"id":2216},{"properties":{"east":"up","north":"side","power":"1","south":"none","west":"none"},"id":2217},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"up"},"id":2218},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"side"},"id":2219},{"properties":{"east":"up","north":"side","power":"2","south":"up","west":"none"},"id":2220},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"up"},"id":2221},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"side"},"id":2222},{"properties":{"east":"up","north":"side","power":"2","south":"side","west":"none"},"id":2223},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"up"},"id":2224},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"side"},"id":2225},{"properties":{"east":"up","north":"side","power":"2","south":"none","west":"none"},"id":2226},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"up"},"id":2227},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"side"},"id":2228},{"properties":{"east":"up","north":"side","power":"3","south":"up","west":"none"},"id":2229},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"up"},"id":2230},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"side"},"id":2231},{"properties":{"east":"up","north":"side","power":"3","south":"side","west":"none"},"id":2232},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"up"},"id":2233},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"side"},"id":2234},{"properties":{"east":"up","north":"side","power":"3","south":"none","west":"none"},"id":2235},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"up"},"id":2236},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"side"},"id":2237},{"properties":{"east":"up","north":"side","power":"4","south":"up","west":"none"},"id":2238},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"up"},"id":2239},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"side"},"id":2240},{"properties":{"east":"up","north":"side","power":"4","south":"side","west":"none"},"id":2241},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"up"},"id":2242},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"side"},"id":2243},{"properties":{"east":"up","north":"side","power":"4","south":"none","west":"none"},"id":2244},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"up"},"id":2245},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"side"},"id":2246},{"properties":{"east":"up","north":"side","power":"5","south":"up","west":"none"},"id":2247},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"up"},"id":2248},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"side"},"id":2249},{"properties":{"east":"up","north":"side","power":"5","south":"side","west":"none"},"id":2250},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"up"},"id":2251},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"side"},"id":2252},{"properties":{"east":"up","north":"side","power":"5","south":"none","west":"none"},"id":2253},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"up"},"id":2254},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"side"},"id":2255},{"properties":{"east":"up","north":"side","power":"6","south":"up","west":"none"},"id":2256},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"up"},"id":2257},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"side"},"id":2258},{"properties":{"east":"up","north":"side","power":"6","south":"side","west":"none"},"id":2259},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"up"},"id":2260},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"side"},"id":2261},{"properties":{"east":"up","north":"side","power":"6","south":"none","west":"none"},"id":2262},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"up"},"id":2263},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"side"},"id":2264},{"properties":{"east":"up","north":"side","power":"7","south":"up","west":"none"},"id":2265},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"up"},"id":2266},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"side"},"id":2267},{"properties":{"east":"up","north":"side","power":"7","south":"side","west":"none"},"id":2268},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"up"},"id":2269},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"side"},"id":2270},{"properties":{"east":"up","north":"side","power":"7","south":"none","west":"none"},"id":2271},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"up"},"id":2272},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"side"},"id":2273},{"properties":{"east":"up","north":"side","power":"8","south":"up","west":"none"},"id":2274},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"up"},"id":2275},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"side"},"id":2276},{"properties":{"east":"up","north":"side","power":"8","south":"side","west":"none"},"id":2277},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"up"},"id":2278},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"side"},"id":2279},{"properties":{"east":"up","north":"side","power":"8","south":"none","west":"none"},"id":2280},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"up"},"id":2281},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"side"},"id":2282},{"properties":{"east":"up","north":"side","power":"9","south":"up","west":"none"},"id":2283},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"up"},"id":2284},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"side"},"id":2285},{"properties":{"east":"up","north":"side","power":"9","south":"side","west":"none"},"id":2286},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"up"},"id":2287},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"side"},"id":2288},{"properties":{"east":"up","north":"side","power":"9","south":"none","west":"none"},"id":2289},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"up"},"id":2290},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"side"},"id":2291},{"properties":{"east":"up","north":"side","power":"10","south":"up","west":"none"},"id":2292},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"up"},"id":2293},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"side"},"id":2294},{"properties":{"east":"up","north":"side","power":"10","south":"side","west":"none"},"id":2295},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"up"},"id":2296},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"side"},"id":2297},{"properties":{"east":"up","north":"side","power":"10","south":"none","west":"none"},"id":2298},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"up"},"id":2299},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"side"},"id":2300},{"properties":{"east":"up","north":"side","power":"11","south":"up","west":"none"},"id":2301},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"up"},"id":2302},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"side"},"id":2303},{"properties":{"east":"up","north":"side","power":"11","south":"side","west":"none"},"id":2304},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"up"},"id":2305},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"side"},"id":2306},{"properties":{"east":"up","north":"side","power":"11","south":"none","west":"none"},"id":2307},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"up"},"id":2308},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"side"},"id":2309},{"properties":{"east":"up","north":"side","power":"12","south":"up","west":"none"},"id":2310},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"up"},"id":2311},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"side"},"id":2312},{"properties":{"east":"up","north":"side","power":"12","south":"side","west":"none"},"id":2313},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"up"},"id":2314},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"side"},"id":2315},{"properties":{"east":"up","north":"side","power":"12","south":"none","west":"none"},"id":2316},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"up"},"id":2317},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"side"},"id":2318},{"properties":{"east":"up","north":"side","power":"13","south":"up","west":"none"},"id":2319},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"up"},"id":2320},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"side"},"id":2321},{"properties":{"east":"up","north":"side","power":"13","south":"side","west":"none"},"id":2322},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"up"},"id":2323},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"side"},"id":2324},{"properties":{"east":"up","north":"side","power":"13","south":"none","west":"none"},"id":2325},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"up"},"id":2326},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"side"},"id":2327},{"properties":{"east":"up","north":"side","power":"14","south":"up","west":"none"},"id":2328},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"up"},"id":2329},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"side"},"id":2330},{"properties":{"east":"up","north":"side","power":"14","south":"side","west":"none"},"id":2331},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"up"},"id":2332},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"side"},"id":2333},{"properties":{"east":"up","north":"side","power":"14","south":"none","west":"none"},"id":2334},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"up"},"id":2335},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"side"},"id":2336},{"properties":{"east":"up","north":"side","power":"15","south":"up","west":"none"},"id":2337},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"up"},"id":2338},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"side"},"id":2339},{"properties":{"east":"up","north":"side","power":"15","south":"side","west":"none"},"id":2340},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"up"},"id":2341},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"side"},"id":2342},{"properties":{"east":"up","north":"side","power":"15","south":"none","west":"none"},"id":2343},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"up"},"id":2344},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"side"},"id":2345},{"properties":{"east":"up","north":"none","power":"0","south":"up","west":"none"},"id":2346},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"up"},"id":2347},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"side"},"id":2348},{"properties":{"east":"up","north":"none","power":"0","south":"side","west":"none"},"id":2349},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"up"},"id":2350},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"side"},"id":2351},{"properties":{"east":"up","north":"none","power":"0","south":"none","west":"none"},"id":2352},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"up"},"id":2353},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"side"},"id":2354},{"properties":{"east":"up","north":"none","power":"1","south":"up","west":"none"},"id":2355},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"up"},"id":2356},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"side"},"id":2357},{"properties":{"east":"up","north":"none","power":"1","south":"side","west":"none"},"id":2358},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"up"},"id":2359},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"side"},"id":2360},{"properties":{"east":"up","north":"none","power":"1","south":"none","west":"none"},"id":2361},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"up"},"id":2362},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"side"},"id":2363},{"properties":{"east":"up","north":"none","power":"2","south":"up","west":"none"},"id":2364},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"up"},"id":2365},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"side"},"id":2366},{"properties":{"east":"up","north":"none","power":"2","south":"side","west":"none"},"id":2367},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"up"},"id":2368},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"side"},"id":2369},{"properties":{"east":"up","north":"none","power":"2","south":"none","west":"none"},"id":2370},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"up"},"id":2371},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"side"},"id":2372},{"properties":{"east":"up","north":"none","power":"3","south":"up","west":"none"},"id":2373},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"up"},"id":2374},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"side"},"id":2375},{"properties":{"east":"up","north":"none","power":"3","south":"side","west":"none"},"id":2376},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"up"},"id":2377},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"side"},"id":2378},{"properties":{"east":"up","north":"none","power":"3","south":"none","west":"none"},"id":2379},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"up"},"id":2380},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"side"},"id":2381},{"properties":{"east":"up","north":"none","power":"4","south":"up","west":"none"},"id":2382},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"up"},"id":2383},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"side"},"id":2384},{"properties":{"east":"up","north":"none","power":"4","south":"side","west":"none"},"id":2385},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"up"},"id":2386},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"side"},"id":2387},{"properties":{"east":"up","north":"none","power":"4","south":"none","west":"none"},"id":2388},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"up"},"id":2389},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"side"},"id":2390},{"properties":{"east":"up","north":"none","power":"5","south":"up","west":"none"},"id":2391},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"up"},"id":2392},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"side"},"id":2393},{"properties":{"east":"up","north":"none","power":"5","south":"side","west":"none"},"id":2394},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"up"},"id":2395},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"side"},"id":2396},{"properties":{"east":"up","north":"none","power":"5","south":"none","west":"none"},"id":2397},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"up"},"id":2398},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"side"},"id":2399},{"properties":{"east":"up","north":"none","power":"6","south":"up","west":"none"},"id":2400},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"up"},"id":2401},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"side"},"id":2402},{"properties":{"east":"up","north":"none","power":"6","south":"side","west":"none"},"id":2403},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"up"},"id":2404},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"side"},"id":2405},{"properties":{"east":"up","north":"none","power":"6","south":"none","west":"none"},"id":2406},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"up"},"id":2407},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"side"},"id":2408},{"properties":{"east":"up","north":"none","power":"7","south":"up","west":"none"},"id":2409},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"up"},"id":2410},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"side"},"id":2411},{"properties":{"east":"up","north":"none","power":"7","south":"side","west":"none"},"id":2412},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"up"},"id":2413},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"side"},"id":2414},{"properties":{"east":"up","north":"none","power":"7","south":"none","west":"none"},"id":2415},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"up"},"id":2416},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"side"},"id":2417},{"properties":{"east":"up","north":"none","power":"8","south":"up","west":"none"},"id":2418},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"up"},"id":2419},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"side"},"id":2420},{"properties":{"east":"up","north":"none","power":"8","south":"side","west":"none"},"id":2421},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"up"},"id":2422},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"side"},"id":2423},{"properties":{"east":"up","north":"none","power":"8","south":"none","west":"none"},"id":2424},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"up"},"id":2425},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"side"},"id":2426},{"properties":{"east":"up","north":"none","power":"9","south":"up","west":"none"},"id":2427},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"up"},"id":2428},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"side"},"id":2429},{"properties":{"east":"up","north":"none","power":"9","south":"side","west":"none"},"id":2430},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"up"},"id":2431},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"side"},"id":2432},{"properties":{"east":"up","north":"none","power":"9","south":"none","west":"none"},"id":2433},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"up"},"id":2434},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"side"},"id":2435},{"properties":{"east":"up","north":"none","power":"10","south":"up","west":"none"},"id":2436},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"up"},"id":2437},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"side"},"id":2438},{"properties":{"east":"up","north":"none","power":"10","south":"side","west":"none"},"id":2439},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"up"},"id":2440},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"side"},"id":2441},{"properties":{"east":"up","north":"none","power":"10","south":"none","west":"none"},"id":2442},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"up"},"id":2443},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"side"},"id":2444},{"properties":{"east":"up","north":"none","power":"11","south":"up","west":"none"},"id":2445},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"up"},"id":2446},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"side"},"id":2447},{"properties":{"east":"up","north":"none","power":"11","south":"side","west":"none"},"id":2448},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"up"},"id":2449},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"side"},"id":2450},{"properties":{"east":"up","north":"none","power":"11","south":"none","west":"none"},"id":2451},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"up"},"id":2452},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"side"},"id":2453},{"properties":{"east":"up","north":"none","power":"12","south":"up","west":"none"},"id":2454},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"up"},"id":2455},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"side"},"id":2456},{"properties":{"east":"up","north":"none","power":"12","south":"side","west":"none"},"id":2457},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"up"},"id":2458},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"side"},"id":2459},{"properties":{"east":"up","north":"none","power":"12","south":"none","west":"none"},"id":2460},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"up"},"id":2461},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"side"},"id":2462},{"properties":{"east":"up","north":"none","power":"13","south":"up","west":"none"},"id":2463},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"up"},"id":2464},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"side"},"id":2465},{"properties":{"east":"up","north":"none","power":"13","south":"side","west":"none"},"id":2466},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"up"},"id":2467},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"side"},"id":2468},{"properties":{"east":"up","north":"none","power":"13","south":"none","west":"none"},"id":2469},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"up"},"id":2470},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"side"},"id":2471},{"properties":{"east":"up","north":"none","power":"14","south":"up","west":"none"},"id":2472},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"up"},"id":2473},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"side"},"id":2474},{"properties":{"east":"up","north":"none","power":"14","south":"side","west":"none"},"id":2475},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"up"},"id":2476},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"side"},"id":2477},{"properties":{"east":"up","north":"none","power":"14","south":"none","west":"none"},"id":2478},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"up"},"id":2479},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"side"},"id":2480},{"properties":{"east":"up","north":"none","power":"15","south":"up","west":"none"},"id":2481},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"up"},"id":2482},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"side"},"id":2483},{"properties":{"east":"up","north":"none","power":"15","south":"side","west":"none"},"id":2484},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"up"},"id":2485},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"side"},"id":2486},{"properties":{"east":"up","north":"none","power":"15","south":"none","west":"none"},"id":2487},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"up"},"id":2488},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"side"},"id":2489},{"properties":{"east":"side","north":"up","power":"0","south":"up","west":"none"},"id":2490},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"up"},"id":2491},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"side"},"id":2492},{"properties":{"east":"side","north":"up","power":"0","south":"side","west":"none"},"id":2493},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"up"},"id":2494},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"side"},"id":2495},{"properties":{"east":"side","north":"up","power":"0","south":"none","west":"none"},"id":2496},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"up"},"id":2497},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"side"},"id":2498},{"properties":{"east":"side","north":"up","power":"1","south":"up","west":"none"},"id":2499},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"up"},"id":2500},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"side"},"id":2501},{"properties":{"east":"side","north":"up","power":"1","south":"side","west":"none"},"id":2502},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"up"},"id":2503},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"side"},"id":2504},{"properties":{"east":"side","north":"up","power":"1","south":"none","west":"none"},"id":2505},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"up"},"id":2506},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"side"},"id":2507},{"properties":{"east":"side","north":"up","power":"2","south":"up","west":"none"},"id":2508},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"up"},"id":2509},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"side"},"id":2510},{"properties":{"east":"side","north":"up","power":"2","south":"side","west":"none"},"id":2511},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"up"},"id":2512},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"side"},"id":2513},{"properties":{"east":"side","north":"up","power":"2","south":"none","west":"none"},"id":2514},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"up"},"id":2515},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"side"},"id":2516},{"properties":{"east":"side","north":"up","power":"3","south":"up","west":"none"},"id":2517},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"up"},"id":2518},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"side"},"id":2519},{"properties":{"east":"side","north":"up","power":"3","south":"side","west":"none"},"id":2520},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"up"},"id":2521},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"side"},"id":2522},{"properties":{"east":"side","north":"up","power":"3","south":"none","west":"none"},"id":2523},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"up"},"id":2524},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"side"},"id":2525},{"properties":{"east":"side","north":"up","power":"4","south":"up","west":"none"},"id":2526},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"up"},"id":2527},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"side"},"id":2528},{"properties":{"east":"side","north":"up","power":"4","south":"side","west":"none"},"id":2529},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"up"},"id":2530},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"side"},"id":2531},{"properties":{"east":"side","north":"up","power":"4","south":"none","west":"none"},"id":2532},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"up"},"id":2533},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"side"},"id":2534},{"properties":{"east":"side","north":"up","power":"5","south":"up","west":"none"},"id":2535},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"up"},"id":2536},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"side"},"id":2537},{"properties":{"east":"side","north":"up","power":"5","south":"side","west":"none"},"id":2538},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"up"},"id":2539},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"side"},"id":2540},{"properties":{"east":"side","north":"up","power":"5","south":"none","west":"none"},"id":2541},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"up"},"id":2542},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"side"},"id":2543},{"properties":{"east":"side","north":"up","power":"6","south":"up","west":"none"},"id":2544},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"up"},"id":2545},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"side"},"id":2546},{"properties":{"east":"side","north":"up","power":"6","south":"side","west":"none"},"id":2547},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"up"},"id":2548},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"side"},"id":2549},{"properties":{"east":"side","north":"up","power":"6","south":"none","west":"none"},"id":2550},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"up"},"id":2551},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"side"},"id":2552},{"properties":{"east":"side","north":"up","power":"7","south":"up","west":"none"},"id":2553},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"up"},"id":2554},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"side"},"id":2555},{"properties":{"east":"side","north":"up","power":"7","south":"side","west":"none"},"id":2556},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"up"},"id":2557},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"side"},"id":2558},{"properties":{"east":"side","north":"up","power":"7","south":"none","west":"none"},"id":2559},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"up"},"id":2560},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"side"},"id":2561},{"properties":{"east":"side","north":"up","power":"8","south":"up","west":"none"},"id":2562},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"up"},"id":2563},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"side"},"id":2564},{"properties":{"east":"side","north":"up","power":"8","south":"side","west":"none"},"id":2565},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"up"},"id":2566},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"side"},"id":2567},{"properties":{"east":"side","north":"up","power":"8","south":"none","west":"none"},"id":2568},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"up"},"id":2569},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"side"},"id":2570},{"properties":{"east":"side","north":"up","power":"9","south":"up","west":"none"},"id":2571},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"up"},"id":2572},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"side"},"id":2573},{"properties":{"east":"side","north":"up","power":"9","south":"side","west":"none"},"id":2574},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"up"},"id":2575},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"side"},"id":2576},{"properties":{"east":"side","north":"up","power":"9","south":"none","west":"none"},"id":2577},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"up"},"id":2578},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"side"},"id":2579},{"properties":{"east":"side","north":"up","power":"10","south":"up","west":"none"},"id":2580},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"up"},"id":2581},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"side"},"id":2582},{"properties":{"east":"side","north":"up","power":"10","south":"side","west":"none"},"id":2583},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"up"},"id":2584},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"side"},"id":2585},{"properties":{"east":"side","north":"up","power":"10","south":"none","west":"none"},"id":2586},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"up"},"id":2587},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"side"},"id":2588},{"properties":{"east":"side","north":"up","power":"11","south":"up","west":"none"},"id":2589},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"up"},"id":2590},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"side"},"id":2591},{"properties":{"east":"side","north":"up","power":"11","south":"side","west":"none"},"id":2592},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"up"},"id":2593},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"side"},"id":2594},{"properties":{"east":"side","north":"up","power":"11","south":"none","west":"none"},"id":2595},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"up"},"id":2596},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"side"},"id":2597},{"properties":{"east":"side","north":"up","power":"12","south":"up","west":"none"},"id":2598},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"up"},"id":2599},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"side"},"id":2600},{"properties":{"east":"side","north":"up","power":"12","south":"side","west":"none"},"id":2601},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"up"},"id":2602},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"side"},"id":2603},{"properties":{"east":"side","north":"up","power":"12","south":"none","west":"none"},"id":2604},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"up"},"id":2605},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"side"},"id":2606},{"properties":{"east":"side","north":"up","power":"13","south":"up","west":"none"},"id":2607},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"up"},"id":2608},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"side"},"id":2609},{"properties":{"east":"side","north":"up","power":"13","south":"side","west":"none"},"id":2610},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"up"},"id":2611},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"side"},"id":2612},{"properties":{"east":"side","north":"up","power":"13","south":"none","west":"none"},"id":2613},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"up"},"id":2614},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"side"},"id":2615},{"properties":{"east":"side","north":"up","power":"14","south":"up","west":"none"},"id":2616},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"up"},"id":2617},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"side"},"id":2618},{"properties":{"east":"side","north":"up","power":"14","south":"side","west":"none"},"id":2619},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"up"},"id":2620},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"side"},"id":2621},{"properties":{"east":"side","north":"up","power":"14","south":"none","west":"none"},"id":2622},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"up"},"id":2623},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"side"},"id":2624},{"properties":{"east":"side","north":"up","power":"15","south":"up","west":"none"},"id":2625},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"up"},"id":2626},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"side"},"id":2627},{"properties":{"east":"side","north":"up","power":"15","south":"side","west":"none"},"id":2628},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"up"},"id":2629},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"side"},"id":2630},{"properties":{"east":"side","north":"up","power":"15","south":"none","west":"none"},"id":2631},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"up"},"id":2632},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"side"},"id":2633},{"properties":{"east":"side","north":"side","power":"0","south":"up","west":"none"},"id":2634},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"up"},"id":2635},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"side"},"id":2636},{"properties":{"east":"side","north":"side","power":"0","south":"side","west":"none"},"id":2637},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"up"},"id":2638},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"side"},"id":2639},{"properties":{"east":"side","north":"side","power":"0","south":"none","west":"none"},"id":2640},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"up"},"id":2641},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"side"},"id":2642},{"properties":{"east":"side","north":"side","power":"1","south":"up","west":"none"},"id":2643},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"up"},"id":2644},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"side"},"id":2645},{"properties":{"east":"side","north":"side","power":"1","south":"side","west":"none"},"id":2646},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"up"},"id":2647},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"side"},"id":2648},{"properties":{"east":"side","north":"side","power":"1","south":"none","west":"none"},"id":2649},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"up"},"id":2650},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"side"},"id":2651},{"properties":{"east":"side","north":"side","power":"2","south":"up","west":"none"},"id":2652},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"up"},"id":2653},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"side"},"id":2654},{"properties":{"east":"side","north":"side","power":"2","south":"side","west":"none"},"id":2655},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"up"},"id":2656},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"side"},"id":2657},{"properties":{"east":"side","north":"side","power":"2","south":"none","west":"none"},"id":2658},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"up"},"id":2659},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"side"},"id":2660},{"properties":{"east":"side","north":"side","power":"3","south":"up","west":"none"},"id":2661},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"up"},"id":2662},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"side"},"id":2663},{"properties":{"east":"side","north":"side","power":"3","south":"side","west":"none"},"id":2664},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"up"},"id":2665},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"side"},"id":2666},{"properties":{"east":"side","north":"side","power":"3","south":"none","west":"none"},"id":2667},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"up"},"id":2668},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"side"},"id":2669},{"properties":{"east":"side","north":"side","power":"4","south":"up","west":"none"},"id":2670},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"up"},"id":2671},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"side"},"id":2672},{"properties":{"east":"side","north":"side","power":"4","south":"side","west":"none"},"id":2673},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"up"},"id":2674},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"side"},"id":2675},{"properties":{"east":"side","north":"side","power":"4","south":"none","west":"none"},"id":2676},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"up"},"id":2677},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"side"},"id":2678},{"properties":{"east":"side","north":"side","power":"5","south":"up","west":"none"},"id":2679},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"up"},"id":2680},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"side"},"id":2681},{"properties":{"east":"side","north":"side","power":"5","south":"side","west":"none"},"id":2682},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"up"},"id":2683},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"side"},"id":2684},{"properties":{"east":"side","north":"side","power":"5","south":"none","west":"none"},"id":2685},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"up"},"id":2686},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"side"},"id":2687},{"properties":{"east":"side","north":"side","power":"6","south":"up","west":"none"},"id":2688},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"up"},"id":2689},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"side"},"id":2690},{"properties":{"east":"side","north":"side","power":"6","south":"side","west":"none"},"id":2691},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"up"},"id":2692},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"side"},"id":2693},{"properties":{"east":"side","north":"side","power":"6","south":"none","west":"none"},"id":2694},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"up"},"id":2695},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"side"},"id":2696},{"properties":{"east":"side","north":"side","power":"7","south":"up","west":"none"},"id":2697},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"up"},"id":2698},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"side"},"id":2699},{"properties":{"east":"side","north":"side","power":"7","south":"side","west":"none"},"id":2700},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"up"},"id":2701},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"side"},"id":2702},{"properties":{"east":"side","north":"side","power":"7","south":"none","west":"none"},"id":2703},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"up"},"id":2704},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"side"},"id":2705},{"properties":{"east":"side","north":"side","power":"8","south":"up","west":"none"},"id":2706},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"up"},"id":2707},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"side"},"id":2708},{"properties":{"east":"side","north":"side","power":"8","south":"side","west":"none"},"id":2709},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"up"},"id":2710},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"side"},"id":2711},{"properties":{"east":"side","north":"side","power":"8","south":"none","west":"none"},"id":2712},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"up"},"id":2713},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"side"},"id":2714},{"properties":{"east":"side","north":"side","power":"9","south":"up","west":"none"},"id":2715},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"up"},"id":2716},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"side"},"id":2717},{"properties":{"east":"side","north":"side","power":"9","south":"side","west":"none"},"id":2718},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"up"},"id":2719},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"side"},"id":2720},{"properties":{"east":"side","north":"side","power":"9","south":"none","west":"none"},"id":2721},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"up"},"id":2722},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"side"},"id":2723},{"properties":{"east":"side","north":"side","power":"10","south":"up","west":"none"},"id":2724},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"up"},"id":2725},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"side"},"id":2726},{"properties":{"east":"side","north":"side","power":"10","south":"side","west":"none"},"id":2727},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"up"},"id":2728},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"side"},"id":2729},{"properties":{"east":"side","north":"side","power":"10","south":"none","west":"none"},"id":2730},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"up"},"id":2731},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"side"},"id":2732},{"properties":{"east":"side","north":"side","power":"11","south":"up","west":"none"},"id":2733},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"up"},"id":2734},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"side"},"id":2735},{"properties":{"east":"side","north":"side","power":"11","south":"side","west":"none"},"id":2736},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"up"},"id":2737},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"side"},"id":2738},{"properties":{"east":"side","north":"side","power":"11","south":"none","west":"none"},"id":2739},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"up"},"id":2740},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"side"},"id":2741},{"properties":{"east":"side","north":"side","power":"12","south":"up","west":"none"},"id":2742},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"up"},"id":2743},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"side"},"id":2744},{"properties":{"east":"side","north":"side","power":"12","south":"side","west":"none"},"id":2745},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"up"},"id":2746},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"side"},"id":2747},{"properties":{"east":"side","north":"side","power":"12","south":"none","west":"none"},"id":2748},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"up"},"id":2749},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"side"},"id":2750},{"properties":{"east":"side","north":"side","power":"13","south":"up","west":"none"},"id":2751},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"up"},"id":2752},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"side"},"id":2753},{"properties":{"east":"side","north":"side","power":"13","south":"side","west":"none"},"id":2754},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"up"},"id":2755},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"side"},"id":2756},{"properties":{"east":"side","north":"side","power":"13","south":"none","west":"none"},"id":2757},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"up"},"id":2758},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"side"},"id":2759},{"properties":{"east":"side","north":"side","power":"14","south":"up","west":"none"},"id":2760},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"up"},"id":2761},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"side"},"id":2762},{"properties":{"east":"side","north":"side","power":"14","south":"side","west":"none"},"id":2763},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"up"},"id":2764},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"side"},"id":2765},{"properties":{"east":"side","north":"side","power":"14","south":"none","west":"none"},"id":2766},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"up"},"id":2767},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"side"},"id":2768},{"properties":{"east":"side","north":"side","power":"15","south":"up","west":"none"},"id":2769},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"up"},"id":2770},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"side"},"id":2771},{"properties":{"east":"side","north":"side","power":"15","south":"side","west":"none"},"id":2772},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"up"},"id":2773},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"side"},"id":2774},{"properties":{"east":"side","north":"side","power":"15","south":"none","west":"none"},"id":2775},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"up"},"id":2776},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"side"},"id":2777},{"properties":{"east":"side","north":"none","power":"0","south":"up","west":"none"},"id":2778},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"up"},"id":2779},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"side"},"id":2780},{"properties":{"east":"side","north":"none","power":"0","south":"side","west":"none"},"id":2781},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"up"},"id":2782},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"side"},"id":2783},{"properties":{"east":"side","north":"none","power":"0","south":"none","west":"none"},"id":2784},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"up"},"id":2785},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"side"},"id":2786},{"properties":{"east":"side","north":"none","power":"1","south":"up","west":"none"},"id":2787},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"up"},"id":2788},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"side"},"id":2789},{"properties":{"east":"side","north":"none","power":"1","south":"side","west":"none"},"id":2790},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"up"},"id":2791},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"side"},"id":2792},{"properties":{"east":"side","north":"none","power":"1","south":"none","west":"none"},"id":2793},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"up"},"id":2794},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"side"},"id":2795},{"properties":{"east":"side","north":"none","power":"2","south":"up","west":"none"},"id":2796},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"up"},"id":2797},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"side"},"id":2798},{"properties":{"east":"side","north":"none","power":"2","south":"side","west":"none"},"id":2799},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"up"},"id":2800},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"side"},"id":2801},{"properties":{"east":"side","north":"none","power":"2","south":"none","west":"none"},"id":2802},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"up"},"id":2803},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"side"},"id":2804},{"properties":{"east":"side","north":"none","power":"3","south":"up","west":"none"},"id":2805},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"up"},"id":2806},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"side"},"id":2807},{"properties":{"east":"side","north":"none","power":"3","south":"side","west":"none"},"id":2808},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"up"},"id":2809},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"side"},"id":2810},{"properties":{"east":"side","north":"none","power":"3","south":"none","west":"none"},"id":2811},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"up"},"id":2812},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"side"},"id":2813},{"properties":{"east":"side","north":"none","power":"4","south":"up","west":"none"},"id":2814},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"up"},"id":2815},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"side"},"id":2816},{"properties":{"east":"side","north":"none","power":"4","south":"side","west":"none"},"id":2817},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"up"},"id":2818},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"side"},"id":2819},{"properties":{"east":"side","north":"none","power":"4","south":"none","west":"none"},"id":2820},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"up"},"id":2821},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"side"},"id":2822},{"properties":{"east":"side","north":"none","power":"5","south":"up","west":"none"},"id":2823},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"up"},"id":2824},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"side"},"id":2825},{"properties":{"east":"side","north":"none","power":"5","south":"side","west":"none"},"id":2826},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"up"},"id":2827},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"side"},"id":2828},{"properties":{"east":"side","north":"none","power":"5","south":"none","west":"none"},"id":2829},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"up"},"id":2830},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"side"},"id":2831},{"properties":{"east":"side","north":"none","power":"6","south":"up","west":"none"},"id":2832},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"up"},"id":2833},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"side"},"id":2834},{"properties":{"east":"side","north":"none","power":"6","south":"side","west":"none"},"id":2835},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"up"},"id":2836},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"side"},"id":2837},{"properties":{"east":"side","north":"none","power":"6","south":"none","west":"none"},"id":2838},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"up"},"id":2839},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"side"},"id":2840},{"properties":{"east":"side","north":"none","power":"7","south":"up","west":"none"},"id":2841},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"up"},"id":2842},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"side"},"id":2843},{"properties":{"east":"side","north":"none","power":"7","south":"side","west":"none"},"id":2844},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"up"},"id":2845},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"side"},"id":2846},{"properties":{"east":"side","north":"none","power":"7","south":"none","west":"none"},"id":2847},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"up"},"id":2848},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"side"},"id":2849},{"properties":{"east":"side","north":"none","power":"8","south":"up","west":"none"},"id":2850},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"up"},"id":2851},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"side"},"id":2852},{"properties":{"east":"side","north":"none","power":"8","south":"side","west":"none"},"id":2853},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"up"},"id":2854},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"side"},"id":2855},{"properties":{"east":"side","north":"none","power":"8","south":"none","west":"none"},"id":2856},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"up"},"id":2857},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"side"},"id":2858},{"properties":{"east":"side","north":"none","power":"9","south":"up","west":"none"},"id":2859},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"up"},"id":2860},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"side"},"id":2861},{"properties":{"east":"side","north":"none","power":"9","south":"side","west":"none"},"id":2862},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"up"},"id":2863},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"side"},"id":2864},{"properties":{"east":"side","north":"none","power":"9","south":"none","west":"none"},"id":2865},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"up"},"id":2866},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"side"},"id":2867},{"properties":{"east":"side","north":"none","power":"10","south":"up","west":"none"},"id":2868},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"up"},"id":2869},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"side"},"id":2870},{"properties":{"east":"side","north":"none","power":"10","south":"side","west":"none"},"id":2871},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"up"},"id":2872},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"side"},"id":2873},{"properties":{"east":"side","north":"none","power":"10","south":"none","west":"none"},"id":2874},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"up"},"id":2875},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"side"},"id":2876},{"properties":{"east":"side","north":"none","power":"11","south":"up","west":"none"},"id":2877},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"up"},"id":2878},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"side"},"id":2879},{"properties":{"east":"side","north":"none","power":"11","south":"side","west":"none"},"id":2880},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"up"},"id":2881},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"side"},"id":2882},{"properties":{"east":"side","north":"none","power":"11","south":"none","west":"none"},"id":2883},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"up"},"id":2884},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"side"},"id":2885},{"properties":{"east":"side","north":"none","power":"12","south":"up","west":"none"},"id":2886},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"up"},"id":2887},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"side"},"id":2888},{"properties":{"east":"side","north":"none","power":"12","south":"side","west":"none"},"id":2889},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"up"},"id":2890},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"side"},"id":2891},{"properties":{"east":"side","north":"none","power":"12","south":"none","west":"none"},"id":2892},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"up"},"id":2893},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"side"},"id":2894},{"properties":{"east":"side","north":"none","power":"13","south":"up","west":"none"},"id":2895},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"up"},"id":2896},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"side"},"id":2897},{"properties":{"east":"side","north":"none","power":"13","south":"side","west":"none"},"id":2898},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"up"},"id":2899},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"side"},"id":2900},{"properties":{"east":"side","north":"none","power":"13","south":"none","west":"none"},"id":2901},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"up"},"id":2902},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"side"},"id":2903},{"properties":{"east":"side","north":"none","power":"14","south":"up","west":"none"},"id":2904},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"up"},"id":2905},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"side"},"id":2906},{"properties":{"east":"side","north":"none","power":"14","south":"side","west":"none"},"id":2907},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"up"},"id":2908},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"side"},"id":2909},{"properties":{"east":"side","north":"none","power":"14","south":"none","west":"none"},"id":2910},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"up"},"id":2911},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"side"},"id":2912},{"properties":{"east":"side","north":"none","power":"15","south":"up","west":"none"},"id":2913},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"up"},"id":2914},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"side"},"id":2915},{"properties":{"east":"side","north":"none","power":"15","south":"side","west":"none"},"id":2916},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"up"},"id":2917},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"side"},"id":2918},{"properties":{"east":"side","north":"none","power":"15","south":"none","west":"none"},"id":2919},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"up"},"id":2920},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"side"},"id":2921},{"properties":{"east":"none","north":"up","power":"0","south":"up","west":"none"},"id":2922},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"up"},"id":2923},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"side"},"id":2924},{"properties":{"east":"none","north":"up","power":"0","south":"side","west":"none"},"id":2925},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"up"},"id":2926},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"side"},"id":2927},{"properties":{"east":"none","north":"up","power":"0","south":"none","west":"none"},"id":2928},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"up"},"id":2929},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"side"},"id":2930},{"properties":{"east":"none","north":"up","power":"1","south":"up","west":"none"},"id":2931},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"up"},"id":2932},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"side"},"id":2933},{"properties":{"east":"none","north":"up","power":"1","south":"side","west":"none"},"id":2934},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"up"},"id":2935},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"side"},"id":2936},{"properties":{"east":"none","north":"up","power":"1","south":"none","west":"none"},"id":2937},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"up"},"id":2938},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"side"},"id":2939},{"properties":{"east":"none","north":"up","power":"2","south":"up","west":"none"},"id":2940},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"up"},"id":2941},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"side"},"id":2942},{"properties":{"east":"none","north":"up","power":"2","south":"side","west":"none"},"id":2943},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"up"},"id":2944},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"side"},"id":2945},{"properties":{"east":"none","north":"up","power":"2","south":"none","west":"none"},"id":2946},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"up"},"id":2947},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"side"},"id":2948},{"properties":{"east":"none","north":"up","power":"3","south":"up","west":"none"},"id":2949},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"up"},"id":2950},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"side"},"id":2951},{"properties":{"east":"none","north":"up","power":"3","south":"side","west":"none"},"id":2952},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"up"},"id":2953},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"side"},"id":2954},{"properties":{"east":"none","north":"up","power":"3","south":"none","west":"none"},"id":2955},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"up"},"id":2956},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"side"},"id":2957},{"properties":{"east":"none","north":"up","power":"4","south":"up","west":"none"},"id":2958},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"up"},"id":2959},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"side"},"id":2960},{"properties":{"east":"none","north":"up","power":"4","south":"side","west":"none"},"id":2961},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"up"},"id":2962},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"side"},"id":2963},{"properties":{"east":"none","north":"up","power":"4","south":"none","west":"none"},"id":2964},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"up"},"id":2965},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"side"},"id":2966},{"properties":{"east":"none","north":"up","power":"5","south":"up","west":"none"},"id":2967},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"up"},"id":2968},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"side"},"id":2969},{"properties":{"east":"none","north":"up","power":"5","south":"side","west":"none"},"id":2970},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"up"},"id":2971},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"side"},"id":2972},{"properties":{"east":"none","north":"up","power":"5","south":"none","west":"none"},"id":2973},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"up"},"id":2974},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"side"},"id":2975},{"properties":{"east":"none","north":"up","power":"6","south":"up","west":"none"},"id":2976},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"up"},"id":2977},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"side"},"id":2978},{"properties":{"east":"none","north":"up","power":"6","south":"side","west":"none"},"id":2979},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"up"},"id":2980},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"side"},"id":2981},{"properties":{"east":"none","north":"up","power":"6","south":"none","west":"none"},"id":2982},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"up"},"id":2983},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"side"},"id":2984},{"properties":{"east":"none","north":"up","power":"7","south":"up","west":"none"},"id":2985},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"up"},"id":2986},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"side"},"id":2987},{"properties":{"east":"none","north":"up","power":"7","south":"side","west":"none"},"id":2988},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"up"},"id":2989},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"side"},"id":2990},{"properties":{"east":"none","north":"up","power":"7","south":"none","west":"none"},"id":2991},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"up"},"id":2992},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"side"},"id":2993},{"properties":{"east":"none","north":"up","power":"8","south":"up","west":"none"},"id":2994},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"up"},"id":2995},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"side"},"id":2996},{"properties":{"east":"none","north":"up","power":"8","south":"side","west":"none"},"id":2997},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"up"},"id":2998},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"side"},"id":2999},{"properties":{"east":"none","north":"up","power":"8","south":"none","west":"none"},"id":3000},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"up"},"id":3001},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"side"},"id":3002},{"properties":{"east":"none","north":"up","power":"9","south":"up","west":"none"},"id":3003},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"up"},"id":3004},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"side"},"id":3005},{"properties":{"east":"none","north":"up","power":"9","south":"side","west":"none"},"id":3006},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"up"},"id":3007},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"side"},"id":3008},{"properties":{"east":"none","north":"up","power":"9","south":"none","west":"none"},"id":3009},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"up"},"id":3010},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"side"},"id":3011},{"properties":{"east":"none","north":"up","power":"10","south":"up","west":"none"},"id":3012},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"up"},"id":3013},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"side"},"id":3014},{"properties":{"east":"none","north":"up","power":"10","south":"side","west":"none"},"id":3015},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"up"},"id":3016},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"side"},"id":3017},{"properties":{"east":"none","north":"up","power":"10","south":"none","west":"none"},"id":3018},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"up"},"id":3019},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"side"},"id":3020},{"properties":{"east":"none","north":"up","power":"11","south":"up","west":"none"},"id":3021},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"up"},"id":3022},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"side"},"id":3023},{"properties":{"east":"none","north":"up","power":"11","south":"side","west":"none"},"id":3024},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"up"},"id":3025},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"side"},"id":3026},{"properties":{"east":"none","north":"up","power":"11","south":"none","west":"none"},"id":3027},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"up"},"id":3028},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"side"},"id":3029},{"properties":{"east":"none","north":"up","power":"12","south":"up","west":"none"},"id":3030},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"up"},"id":3031},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"side"},"id":3032},{"properties":{"east":"none","north":"up","power":"12","south":"side","west":"none"},"id":3033},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"up"},"id":3034},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"side"},"id":3035},{"properties":{"east":"none","north":"up","power":"12","south":"none","west":"none"},"id":3036},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"up"},"id":3037},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"side"},"id":3038},{"properties":{"east":"none","north":"up","power":"13","south":"up","west":"none"},"id":3039},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"up"},"id":3040},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"side"},"id":3041},{"properties":{"east":"none","north":"up","power":"13","south":"side","west":"none"},"id":3042},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"up"},"id":3043},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"side"},"id":3044},{"properties":{"east":"none","north":"up","power":"13","south":"none","west":"none"},"id":3045},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"up"},"id":3046},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"side"},"id":3047},{"properties":{"east":"none","north":"up","power":"14","south":"up","west":"none"},"id":3048},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"up"},"id":3049},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"side"},"id":3050},{"properties":{"east":"none","north":"up","power":"14","south":"side","west":"none"},"id":3051},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"up"},"id":3052},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"side"},"id":3053},{"properties":{"east":"none","north":"up","power":"14","south":"none","west":"none"},"id":3054},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"up"},"id":3055},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"side"},"id":3056},{"properties":{"east":"none","north":"up","power":"15","south":"up","west":"none"},"id":3057},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"up"},"id":3058},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"side"},"id":3059},{"properties":{"east":"none","north":"up","power":"15","south":"side","west":"none"},"id":3060},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"up"},"id":3061},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"side"},"id":3062},{"properties":{"east":"none","north":"up","power":"15","south":"none","west":"none"},"id":3063},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"up"},"id":3064},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"side"},"id":3065},{"properties":{"east":"none","north":"side","power":"0","south":"up","west":"none"},"id":3066},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"up"},"id":3067},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"side"},"id":3068},{"properties":{"east":"none","north":"side","power":"0","south":"side","west":"none"},"id":3069},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"up"},"id":3070},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"side"},"id":3071},{"properties":{"east":"none","north":"side","power":"0","south":"none","west":"none"},"id":3072},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"up"},"id":3073},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"side"},"id":3074},{"properties":{"east":"none","north":"side","power":"1","south":"up","west":"none"},"id":3075},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"up"},"id":3076},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"side"},"id":3077},{"properties":{"east":"none","north":"side","power":"1","south":"side","west":"none"},"id":3078},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"up"},"id":3079},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"side"},"id":3080},{"properties":{"east":"none","north":"side","power":"1","south":"none","west":"none"},"id":3081},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"up"},"id":3082},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"side"},"id":3083},{"properties":{"east":"none","north":"side","power":"2","south":"up","west":"none"},"id":3084},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"up"},"id":3085},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"side"},"id":3086},{"properties":{"east":"none","north":"side","power":"2","south":"side","west":"none"},"id":3087},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"up"},"id":3088},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"side"},"id":3089},{"properties":{"east":"none","north":"side","power":"2","south":"none","west":"none"},"id":3090},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"up"},"id":3091},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"side"},"id":3092},{"properties":{"east":"none","north":"side","power":"3","south":"up","west":"none"},"id":3093},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"up"},"id":3094},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"side"},"id":3095},{"properties":{"east":"none","north":"side","power":"3","south":"side","west":"none"},"id":3096},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"up"},"id":3097},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"side"},"id":3098},{"properties":{"east":"none","north":"side","power":"3","south":"none","west":"none"},"id":3099},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"up"},"id":3100},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"side"},"id":3101},{"properties":{"east":"none","north":"side","power":"4","south":"up","west":"none"},"id":3102},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"up"},"id":3103},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"side"},"id":3104},{"properties":{"east":"none","north":"side","power":"4","south":"side","west":"none"},"id":3105},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"up"},"id":3106},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"side"},"id":3107},{"properties":{"east":"none","north":"side","power":"4","south":"none","west":"none"},"id":3108},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"up"},"id":3109},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"side"},"id":3110},{"properties":{"east":"none","north":"side","power":"5","south":"up","west":"none"},"id":3111},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"up"},"id":3112},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"side"},"id":3113},{"properties":{"east":"none","north":"side","power":"5","south":"side","west":"none"},"id":3114},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"up"},"id":3115},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"side"},"id":3116},{"properties":{"east":"none","north":"side","power":"5","south":"none","west":"none"},"id":3117},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"up"},"id":3118},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"side"},"id":3119},{"properties":{"east":"none","north":"side","power":"6","south":"up","west":"none"},"id":3120},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"up"},"id":3121},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"side"},"id":3122},{"properties":{"east":"none","north":"side","power":"6","south":"side","west":"none"},"id":3123},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"up"},"id":3124},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"side"},"id":3125},{"properties":{"east":"none","north":"side","power":"6","south":"none","west":"none"},"id":3126},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"up"},"id":3127},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"side"},"id":3128},{"properties":{"east":"none","north":"side","power":"7","south":"up","west":"none"},"id":3129},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"up"},"id":3130},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"side"},"id":3131},{"properties":{"east":"none","north":"side","power":"7","south":"side","west":"none"},"id":3132},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"up"},"id":3133},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"side"},"id":3134},{"properties":{"east":"none","north":"side","power":"7","south":"none","west":"none"},"id":3135},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"up"},"id":3136},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"side"},"id":3137},{"properties":{"east":"none","north":"side","power":"8","south":"up","west":"none"},"id":3138},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"up"},"id":3139},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"side"},"id":3140},{"properties":{"east":"none","north":"side","power":"8","south":"side","west":"none"},"id":3141},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"up"},"id":3142},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"side"},"id":3143},{"properties":{"east":"none","north":"side","power":"8","south":"none","west":"none"},"id":3144},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"up"},"id":3145},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"side"},"id":3146},{"properties":{"east":"none","north":"side","power":"9","south":"up","west":"none"},"id":3147},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"up"},"id":3148},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"side"},"id":3149},{"properties":{"east":"none","north":"side","power":"9","south":"side","west":"none"},"id":3150},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"up"},"id":3151},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"side"},"id":3152},{"properties":{"east":"none","north":"side","power":"9","south":"none","west":"none"},"id":3153},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"up"},"id":3154},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"side"},"id":3155},{"properties":{"east":"none","north":"side","power":"10","south":"up","west":"none"},"id":3156},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"up"},"id":3157},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"side"},"id":3158},{"properties":{"east":"none","north":"side","power":"10","south":"side","west":"none"},"id":3159},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"up"},"id":3160},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"side"},"id":3161},{"properties":{"east":"none","north":"side","power":"10","south":"none","west":"none"},"id":3162},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"up"},"id":3163},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"side"},"id":3164},{"properties":{"east":"none","north":"side","power":"11","south":"up","west":"none"},"id":3165},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"up"},"id":3166},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"side"},"id":3167},{"properties":{"east":"none","north":"side","power":"11","south":"side","west":"none"},"id":3168},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"up"},"id":3169},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"side"},"id":3170},{"properties":{"east":"none","north":"side","power":"11","south":"none","west":"none"},"id":3171},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"up"},"id":3172},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"side"},"id":3173},{"properties":{"east":"none","north":"side","power":"12","south":"up","west":"none"},"id":3174},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"up"},"id":3175},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"side"},"id":3176},{"properties":{"east":"none","north":"side","power":"12","south":"side","west":"none"},"id":3177},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"up"},"id":3178},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"side"},"id":3179},{"properties":{"east":"none","north":"side","power":"12","south":"none","west":"none"},"id":3180},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"up"},"id":3181},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"side"},"id":3182},{"properties":{"east":"none","north":"side","power":"13","south":"up","west":"none"},"id":3183},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"up"},"id":3184},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"side"},"id":3185},{"properties":{"east":"none","north":"side","power":"13","south":"side","west":"none"},"id":3186},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"up"},"id":3187},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"side"},"id":3188},{"properties":{"east":"none","north":"side","power":"13","south":"none","west":"none"},"id":3189},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"up"},"id":3190},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"side"},"id":3191},{"properties":{"east":"none","north":"side","power":"14","south":"up","west":"none"},"id":3192},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"up"},"id":3193},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"side"},"id":3194},{"properties":{"east":"none","north":"side","power":"14","south":"side","west":"none"},"id":3195},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"up"},"id":3196},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"side"},"id":3197},{"properties":{"east":"none","north":"side","power":"14","south":"none","west":"none"},"id":3198},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"up"},"id":3199},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"side"},"id":3200},{"properties":{"east":"none","north":"side","power":"15","south":"up","west":"none"},"id":3201},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"up"},"id":3202},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"side"},"id":3203},{"properties":{"east":"none","north":"side","power":"15","south":"side","west":"none"},"id":3204},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"up"},"id":3205},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"side"},"id":3206},{"properties":{"east":"none","north":"side","power":"15","south":"none","west":"none"},"id":3207},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"up"},"id":3208},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"side"},"id":3209},{"properties":{"east":"none","north":"none","power":"0","south":"up","west":"none"},"id":3210},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"up"},"id":3211},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"side"},"id":3212},{"properties":{"east":"none","north":"none","power":"0","south":"side","west":"none"},"id":3213},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"up"},"id":3214},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"side"},"id":3215},{"properties":{"east":"none","north":"none","power":"0","south":"none","west":"none"},"id":3216},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"up"},"id":3217},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"side"},"id":3218},{"properties":{"east":"none","north":"none","power":"1","south":"up","west":"none"},"id":3219},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"up"},"id":3220},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"side"},"id":3221},{"properties":{"east":"none","north":"none","power":"1","south":"side","west":"none"},"id":3222},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"up"},"id":3223},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"side"},"id":3224},{"properties":{"east":"none","north":"none","power":"1","south":"none","west":"none"},"id":3225},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"up"},"id":3226},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"side"},"id":3227},{"properties":{"east":"none","north":"none","power":"2","south":"up","west":"none"},"id":3228},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"up"},"id":3229},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"side"},"id":3230},{"properties":{"east":"none","north":"none","power":"2","south":"side","west":"none"},"id":3231},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"up"},"id":3232},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"side"},"id":3233},{"properties":{"east":"none","north":"none","power":"2","south":"none","west":"none"},"id":3234},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"up"},"id":3235},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"side"},"id":3236},{"properties":{"east":"none","north":"none","power":"3","south":"up","west":"none"},"id":3237},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"up"},"id":3238},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"side"},"id":3239},{"properties":{"east":"none","north":"none","power":"3","south":"side","west":"none"},"id":3240},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"up"},"id":3241},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"side"},"id":3242},{"properties":{"east":"none","north":"none","power":"3","south":"none","west":"none"},"id":3243},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"up"},"id":3244},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"side"},"id":3245},{"properties":{"east":"none","north":"none","power":"4","south":"up","west":"none"},"id":3246},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"up"},"id":3247},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"side"},"id":3248},{"properties":{"east":"none","north":"none","power":"4","south":"side","west":"none"},"id":3249},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"up"},"id":3250},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"side"},"id":3251},{"properties":{"east":"none","north":"none","power":"4","south":"none","west":"none"},"id":3252},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"up"},"id":3253},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"side"},"id":3254},{"properties":{"east":"none","north":"none","power":"5","south":"up","west":"none"},"id":3255},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"up"},"id":3256},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"side"},"id":3257},{"properties":{"east":"none","north":"none","power":"5","south":"side","west":"none"},"id":3258},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"up"},"id":3259},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"side"},"id":3260},{"properties":{"east":"none","north":"none","power":"5","south":"none","west":"none"},"id":3261},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"up"},"id":3262},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"side"},"id":3263},{"properties":{"east":"none","north":"none","power":"6","south":"up","west":"none"},"id":3264},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"up"},"id":3265},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"side"},"id":3266},{"properties":{"east":"none","north":"none","power":"6","south":"side","west":"none"},"id":3267},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"up"},"id":3268},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"side"},"id":3269},{"properties":{"east":"none","north":"none","power":"6","south":"none","west":"none"},"id":3270},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"up"},"id":3271},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"side"},"id":3272},{"properties":{"east":"none","north":"none","power":"7","south":"up","west":"none"},"id":3273},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"up"},"id":3274},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"side"},"id":3275},{"properties":{"east":"none","north":"none","power":"7","south":"side","west":"none"},"id":3276},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"up"},"id":3277},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"side"},"id":3278},{"properties":{"east":"none","north":"none","power":"7","south":"none","west":"none"},"id":3279},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"up"},"id":3280},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"side"},"id":3281},{"properties":{"east":"none","north":"none","power":"8","south":"up","west":"none"},"id":3282},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"up"},"id":3283},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"side"},"id":3284},{"properties":{"east":"none","north":"none","power":"8","south":"side","west":"none"},"id":3285},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"up"},"id":3286},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"side"},"id":3287},{"properties":{"east":"none","north":"none","power":"8","south":"none","west":"none"},"id":3288},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"up"},"id":3289},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"side"},"id":3290},{"properties":{"east":"none","north":"none","power":"9","south":"up","west":"none"},"id":3291},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"up"},"id":3292},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"side"},"id":3293},{"properties":{"east":"none","north":"none","power":"9","south":"side","west":"none"},"id":3294},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"up"},"id":3295},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"side"},"id":3296},{"properties":{"east":"none","north":"none","power":"9","south":"none","west":"none"},"id":3297},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"up"},"id":3298},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"side"},"id":3299},{"properties":{"east":"none","north":"none","power":"10","south":"up","west":"none"},"id":3300},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"up"},"id":3301},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"side"},"id":3302},{"properties":{"east":"none","north":"none","power":"10","south":"side","west":"none"},"id":3303},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"up"},"id":3304},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"side"},"id":3305},{"properties":{"east":"none","north":"none","power":"10","south":"none","west":"none"},"id":3306},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"up"},"id":3307},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"side"},"id":3308},{"properties":{"east":"none","north":"none","power":"11","south":"up","west":"none"},"id":3309},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"up"},"id":3310},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"side"},"id":3311},{"properties":{"east":"none","north":"none","power":"11","south":"side","west":"none"},"id":3312},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"up"},"id":3313},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"side"},"id":3314},{"properties":{"east":"none","north":"none","power":"11","south":"none","west":"none"},"id":3315},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"up"},"id":3316},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"side"},"id":3317},{"properties":{"east":"none","north":"none","power":"12","south":"up","west":"none"},"id":3318},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"up"},"id":3319},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"side"},"id":3320},{"properties":{"east":"none","north":"none","power":"12","south":"side","west":"none"},"id":3321},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"up"},"id":3322},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"side"},"id":3323},{"properties":{"east":"none","north":"none","power":"12","south":"none","west":"none"},"id":3324},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"up"},"id":3325},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"side"},"id":3326},{"properties":{"east":"none","north":"none","power":"13","south":"up","west":"none"},"id":3327},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"up"},"id":3328},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"side"},"id":3329},{"properties":{"east":"none","north":"none","power":"13","south":"side","west":"none"},"id":3330},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"up"},"id":3331},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"side"},"id":3332},{"properties":{"east":"none","north":"none","power":"13","south":"none","west":"none"},"id":3333},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"up"},"id":3334},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"side"},"id":3335},{"properties":{"east":"none","north":"none","power":"14","south":"up","west":"none"},"id":3336},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"up"},"id":3337},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"side"},"id":3338},{"properties":{"east":"none","north":"none","power":"14","south":"side","west":"none"},"id":3339},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"up"},"id":3340},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"side"},"id":3341},{"properties":{"east":"none","north":"none","power":"14","south":"none","west":"none"},"id":3342},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"up"},"id":3343},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"side"},"id":3344},{"properties":{"east":"none","north":"none","power":"15","south":"up","west":"none"},"id":3345},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"up"},"id":3346},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"side"},"id":3347},{"properties":{"east":"none","north":"none","power":"15","south":"side","west":"none"},"id":3348},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"up"},"id":3349},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"side"},"id":3350},{"properties":{"east":"none","north":"none","power":"15","south":"none","west":"none"},"id":3351}]},"diamond_ore":{"states":[{"id":3352}]},"diamond_block":{"states":[{"id":3353}]},"crafting_table":{"states":[{"id":3354}]},"wheat":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":3355},{"properties":{"age":"1"},"id":3356},{"properties":{"age":"2"},"id":3357},{"properties":{"age":"3"},"id":3358},{"properties":{"age":"4"},"id":3359},{"properties":{"age":"5"},"id":3360},{"properties":{"age":"6"},"id":3361},{"properties":{"age":"7"},"id":3362}]},"farmland":{"properties":{"moisture":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"moisture":"0"},"id":3363},{"properties":{"moisture":"1"},"id":3364},{"properties":{"moisture":"2"},"id":3365},{"properties":{"moisture":"3"},"id":3366},{"properties":{"moisture":"4"},"id":3367},{"properties":{"moisture":"5"},"id":3368},{"properties":{"moisture":"6"},"id":3369},{"properties":{"moisture":"7"},"id":3370}]},"furnace":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3371},{"properties":{"facing":"north","lit":"false"},"id":3372},{"properties":{"facing":"south","lit":"true"},"id":3373},{"properties":{"facing":"south","lit":"false"},"id":3374},{"properties":{"facing":"west","lit":"true"},"id":3375},{"properties":{"facing":"west","lit":"false"},"id":3376},{"properties":{"facing":"east","lit":"true"},"id":3377},{"properties":{"facing":"east","lit":"false"},"id":3378}]},"oak_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3379},{"properties":{"rotation":"0","waterlogged":"false"},"id":3380},{"properties":{"rotation":"1","waterlogged":"true"},"id":3381},{"properties":{"rotation":"1","waterlogged":"false"},"id":3382},{"properties":{"rotation":"2","waterlogged":"true"},"id":3383},{"properties":{"rotation":"2","waterlogged":"false"},"id":3384},{"properties":{"rotation":"3","waterlogged":"true"},"id":3385},{"properties":{"rotation":"3","waterlogged":"false"},"id":3386},{"properties":{"rotation":"4","waterlogged":"true"},"id":3387},{"properties":{"rotation":"4","waterlogged":"false"},"id":3388},{"properties":{"rotation":"5","waterlogged":"true"},"id":3389},{"properties":{"rotation":"5","waterlogged":"false"},"id":3390},{"properties":{"rotation":"6","waterlogged":"true"},"id":3391},{"properties":{"rotation":"6","waterlogged":"false"},"id":3392},{"properties":{"rotation":"7","waterlogged":"true"},"id":3393},{"properties":{"rotation":"7","waterlogged":"false"},"id":3394},{"properties":{"rotation":"8","waterlogged":"true"},"id":3395},{"properties":{"rotation":"8","waterlogged":"false"},"id":3396},{"properties":{"rotation":"9","waterlogged":"true"},"id":3397},{"properties":{"rotation":"9","waterlogged":"false"},"id":3398},{"properties":{"rotation":"10","waterlogged":"true"},"id":3399},{"properties":{"rotation":"10","waterlogged":"false"},"id":3400},{"properties":{"rotation":"11","waterlogged":"true"},"id":3401},{"properties":{"rotation":"11","waterlogged":"false"},"id":3402},{"properties":{"rotation":"12","waterlogged":"true"},"id":3403},{"properties":{"rotation":"12","waterlogged":"false"},"id":3404},{"properties":{"rotation":"13","waterlogged":"true"},"id":3405},{"properties":{"rotation":"13","waterlogged":"false"},"id":3406},{"properties":{"rotation":"14","waterlogged":"true"},"id":3407},{"properties":{"rotation":"14","waterlogged":"false"},"id":3408},{"properties":{"rotation":"15","waterlogged":"true"},"id":3409},{"properties":{"rotation":"15","waterlogged":"false"},"id":3410}]},"spruce_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3411},{"properties":{"rotation":"0","waterlogged":"false"},"id":3412},{"properties":{"rotation":"1","waterlogged":"true"},"id":3413},{"properties":{"rotation":"1","waterlogged":"false"},"id":3414},{"properties":{"rotation":"2","waterlogged":"true"},"id":3415},{"properties":{"rotation":"2","waterlogged":"false"},"id":3416},{"properties":{"rotation":"3","waterlogged":"true"},"id":3417},{"properties":{"rotation":"3","waterlogged":"false"},"id":3418},{"properties":{"rotation":"4","waterlogged":"true"},"id":3419},{"properties":{"rotation":"4","waterlogged":"false"},"id":3420},{"properties":{"rotation":"5","waterlogged":"true"},"id":3421},{"properties":{"rotation":"5","waterlogged":"false"},"id":3422},{"properties":{"rotation":"6","waterlogged":"true"},"id":3423},{"properties":{"rotation":"6","waterlogged":"false"},"id":3424},{"properties":{"rotation":"7","waterlogged":"true"},"id":3425},{"properties":{"rotation":"7","waterlogged":"false"},"id":3426},{"properties":{"rotation":"8","waterlogged":"true"},"id":3427},{"properties":{"rotation":"8","waterlogged":"false"},"id":3428},{"properties":{"rotation":"9","waterlogged":"true"},"id":3429},{"properties":{"rotation":"9","waterlogged":"false"},"id":3430},{"properties":{"rotation":"10","waterlogged":"true"},"id":3431},{"properties":{"rotation":"10","waterlogged":"false"},"id":3432},{"properties":{"rotation":"11","waterlogged":"true"},"id":3433},{"properties":{"rotation":"11","waterlogged":"false"},"id":3434},{"properties":{"rotation":"12","waterlogged":"true"},"id":3435},{"properties":{"rotation":"12","waterlogged":"false"},"id":3436},{"properties":{"rotation":"13","waterlogged":"true"},"id":3437},{"properties":{"rotation":"13","waterlogged":"false"},"id":3438},{"properties":{"rotation":"14","waterlogged":"true"},"id":3439},{"properties":{"rotation":"14","waterlogged":"false"},"id":3440},{"properties":{"rotation":"15","waterlogged":"true"},"id":3441},{"properties":{"rotation":"15","waterlogged":"false"},"id":3442}]},"birch_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3443},{"properties":{"rotation":"0","waterlogged":"false"},"id":3444},{"properties":{"rotation":"1","waterlogged":"true"},"id":3445},{"properties":{"rotation":"1","waterlogged":"false"},"id":3446},{"properties":{"rotation":"2","waterlogged":"true"},"id":3447},{"properties":{"rotation":"2","waterlogged":"false"},"id":3448},{"properties":{"rotation":"3","waterlogged":"true"},"id":3449},{"properties":{"rotation":"3","waterlogged":"false"},"id":3450},{"properties":{"rotation":"4","waterlogged":"true"},"id":3451},{"properties":{"rotation":"4","waterlogged":"false"},"id":3452},{"properties":{"rotation":"5","waterlogged":"true"},"id":3453},{"properties":{"rotation":"5","waterlogged":"false"},"id":3454},{"properties":{"rotation":"6","waterlogged":"true"},"id":3455},{"properties":{"rotation":"6","waterlogged":"false"},"id":3456},{"properties":{"rotation":"7","waterlogged":"true"},"id":3457},{"properties":{"rotation":"7","waterlogged":"false"},"id":3458},{"properties":{"rotation":"8","waterlogged":"true"},"id":3459},{"properties":{"rotation":"8","waterlogged":"false"},"id":3460},{"properties":{"rotation":"9","waterlogged":"true"},"id":3461},{"properties":{"rotation":"9","waterlogged":"false"},"id":3462},{"properties":{"rotation":"10","waterlogged":"true"},"id":3463},{"properties":{"rotation":"10","waterlogged":"false"},"id":3464},{"properties":{"rotation":"11","waterlogged":"true"},"id":3465},{"properties":{"rotation":"11","waterlogged":"false"},"id":3466},{"properties":{"rotation":"12","waterlogged":"true"},"id":3467},{"properties":{"rotation":"12","waterlogged":"false"},"id":3468},{"properties":{"rotation":"13","waterlogged":"true"},"id":3469},{"properties":{"rotation":"13","waterlogged":"false"},"id":3470},{"properties":{"rotation":"14","waterlogged":"true"},"id":3471},{"properties":{"rotation":"14","waterlogged":"false"},"id":3472},{"properties":{"rotation":"15","waterlogged":"true"},"id":3473},{"properties":{"rotation":"15","waterlogged":"false"},"id":3474}]},"acacia_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3475},{"properties":{"rotation":"0","waterlogged":"false"},"id":3476},{"properties":{"rotation":"1","waterlogged":"true"},"id":3477},{"properties":{"rotation":"1","waterlogged":"false"},"id":3478},{"properties":{"rotation":"2","waterlogged":"true"},"id":3479},{"properties":{"rotation":"2","waterlogged":"false"},"id":3480},{"properties":{"rotation":"3","waterlogged":"true"},"id":3481},{"properties":{"rotation":"3","waterlogged":"false"},"id":3482},{"properties":{"rotation":"4","waterlogged":"true"},"id":3483},{"properties":{"rotation":"4","waterlogged":"false"},"id":3484},{"properties":{"rotation":"5","waterlogged":"true"},"id":3485},{"properties":{"rotation":"5","waterlogged":"false"},"id":3486},{"properties":{"rotation":"6","waterlogged":"true"},"id":3487},{"properties":{"rotation":"6","waterlogged":"false"},"id":3488},{"properties":{"rotation":"7","waterlogged":"true"},"id":3489},{"properties":{"rotation":"7","waterlogged":"false"},"id":3490},{"properties":{"rotation":"8","waterlogged":"true"},"id":3491},{"properties":{"rotation":"8","waterlogged":"false"},"id":3492},{"properties":{"rotation":"9","waterlogged":"true"},"id":3493},{"properties":{"rotation":"9","waterlogged":"false"},"id":3494},{"properties":{"rotation":"10","waterlogged":"true"},"id":3495},{"properties":{"rotation":"10","waterlogged":"false"},"id":3496},{"properties":{"rotation":"11","waterlogged":"true"},"id":3497},{"properties":{"rotation":"11","waterlogged":"false"},"id":3498},{"properties":{"rotation":"12","waterlogged":"true"},"id":3499},{"properties":{"rotation":"12","waterlogged":"false"},"id":3500},{"properties":{"rotation":"13","waterlogged":"true"},"id":3501},{"properties":{"rotation":"13","waterlogged":"false"},"id":3502},{"properties":{"rotation":"14","waterlogged":"true"},"id":3503},{"properties":{"rotation":"14","waterlogged":"false"},"id":3504},{"properties":{"rotation":"15","waterlogged":"true"},"id":3505},{"properties":{"rotation":"15","waterlogged":"false"},"id":3506}]},"jungle_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3507},{"properties":{"rotation":"0","waterlogged":"false"},"id":3508},{"properties":{"rotation":"1","waterlogged":"true"},"id":3509},{"properties":{"rotation":"1","waterlogged":"false"},"id":3510},{"properties":{"rotation":"2","waterlogged":"true"},"id":3511},{"properties":{"rotation":"2","waterlogged":"false"},"id":3512},{"properties":{"rotation":"3","waterlogged":"true"},"id":3513},{"properties":{"rotation":"3","waterlogged":"false"},"id":3514},{"properties":{"rotation":"4","waterlogged":"true"},"id":3515},{"properties":{"rotation":"4","waterlogged":"false"},"id":3516},{"properties":{"rotation":"5","waterlogged":"true"},"id":3517},{"properties":{"rotation":"5","waterlogged":"false"},"id":3518},{"properties":{"rotation":"6","waterlogged":"true"},"id":3519},{"properties":{"rotation":"6","waterlogged":"false"},"id":3520},{"properties":{"rotation":"7","waterlogged":"true"},"id":3521},{"properties":{"rotation":"7","waterlogged":"false"},"id":3522},{"properties":{"rotation":"8","waterlogged":"true"},"id":3523},{"properties":{"rotation":"8","waterlogged":"false"},"id":3524},{"properties":{"rotation":"9","waterlogged":"true"},"id":3525},{"properties":{"rotation":"9","waterlogged":"false"},"id":3526},{"properties":{"rotation":"10","waterlogged":"true"},"id":3527},{"properties":{"rotation":"10","waterlogged":"false"},"id":3528},{"properties":{"rotation":"11","waterlogged":"true"},"id":3529},{"properties":{"rotation":"11","waterlogged":"false"},"id":3530},{"properties":{"rotation":"12","waterlogged":"true"},"id":3531},{"properties":{"rotation":"12","waterlogged":"false"},"id":3532},{"properties":{"rotation":"13","waterlogged":"true"},"id":3533},{"properties":{"rotation":"13","waterlogged":"false"},"id":3534},{"properties":{"rotation":"14","waterlogged":"true"},"id":3535},{"properties":{"rotation":"14","waterlogged":"false"},"id":3536},{"properties":{"rotation":"15","waterlogged":"true"},"id":3537},{"properties":{"rotation":"15","waterlogged":"false"},"id":3538}]},"dark_oak_sign":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],"waterlogged":["true","false"]},"states":[{"properties":{"rotation":"0","waterlogged":"true"},"id":3539},{"properties":{"rotation":"0","waterlogged":"false"},"id":3540},{"properties":{"rotation":"1","waterlogged":"true"},"id":3541},{"properties":{"rotation":"1","waterlogged":"false"},"id":3542},{"properties":{"rotation":"2","waterlogged":"true"},"id":3543},{"properties":{"rotation":"2","waterlogged":"false"},"id":3544},{"properties":{"rotation":"3","waterlogged":"true"},"id":3545},{"properties":{"rotation":"3","waterlogged":"false"},"id":3546},{"properties":{"rotation":"4","waterlogged":"true"},"id":3547},{"properties":{"rotation":"4","waterlogged":"false"},"id":3548},{"properties":{"rotation":"5","waterlogged":"true"},"id":3549},{"properties":{"rotation":"5","waterlogged":"false"},"id":3550},{"properties":{"rotation":"6","waterlogged":"true"},"id":3551},{"properties":{"rotation":"6","waterlogged":"false"},"id":3552},{"properties":{"rotation":"7","waterlogged":"true"},"id":3553},{"properties":{"rotation":"7","waterlogged":"false"},"id":3554},{"properties":{"rotation":"8","waterlogged":"true"},"id":3555},{"properties":{"rotation":"8","waterlogged":"false"},"id":3556},{"properties":{"rotation":"9","waterlogged":"true"},"id":3557},{"properties":{"rotation":"9","waterlogged":"false"},"id":3558},{"properties":{"rotation":"10","waterlogged":"true"},"id":3559},{"properties":{"rotation":"10","waterlogged":"false"},"id":3560},{"properties":{"rotation":"11","waterlogged":"true"},"id":3561},{"properties":{"rotation":"11","waterlogged":"false"},"id":3562},{"properties":{"rotation":"12","waterlogged":"true"},"id":3563},{"properties":{"rotation":"12","waterlogged":"false"},"id":3564},{"properties":{"rotation":"13","waterlogged":"true"},"id":3565},{"properties":{"rotation":"13","waterlogged":"false"},"id":3566},{"properties":{"rotation":"14","waterlogged":"true"},"id":3567},{"properties":{"rotation":"14","waterlogged":"false"},"id":3568},{"properties":{"rotation":"15","waterlogged":"true"},"id":3569},{"properties":{"rotation":"15","waterlogged":"false"},"id":3570}]},"oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3571},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3572},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3573},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3574},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3575},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3576},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3577},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3578},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3579},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3580},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3581},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3582},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3583},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3584},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3585},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3586},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3587},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3588},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3589},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3590},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3591},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3592},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3593},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3594},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3595},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3596},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3597},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3598},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3599},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3600},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3601},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3602},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3603},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3604},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3605},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3606},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3607},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3608},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3609},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3610},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3611},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3612},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3613},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3614},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3615},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3616},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3617},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3618},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3619},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3620},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3621},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3622},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3623},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3624},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3625},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3626},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3627},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3628},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3629},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3630},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3631},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3632},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3633},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3634}]},"ladder":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3635},{"properties":{"facing":"north","waterlogged":"false"},"id":3636},{"properties":{"facing":"south","waterlogged":"true"},"id":3637},{"properties":{"facing":"south","waterlogged":"false"},"id":3638},{"properties":{"facing":"west","waterlogged":"true"},"id":3639},{"properties":{"facing":"west","waterlogged":"false"},"id":3640},{"properties":{"facing":"east","waterlogged":"true"},"id":3641},{"properties":{"facing":"east","waterlogged":"false"},"id":3642}]},"rail":{"properties":{"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south","south_east","south_west","north_west","north_east"]},"states":[{"properties":{"shape":"north_south"},"id":3643},{"properties":{"shape":"east_west"},"id":3644},{"properties":{"shape":"ascending_east"},"id":3645},{"properties":{"shape":"ascending_west"},"id":3646},{"properties":{"shape":"ascending_north"},"id":3647},{"properties":{"shape":"ascending_south"},"id":3648},{"properties":{"shape":"south_east"},"id":3649},{"properties":{"shape":"south_west"},"id":3650},{"properties":{"shape":"north_west"},"id":3651},{"properties":{"shape":"north_east"},"id":3652}]},"cobblestone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":3653},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":3654},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":3655},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":3656},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":3657},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":3658},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":3659},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":3660},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":3661},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":3662},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":3663},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":3664},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3665},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3666},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3667},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3668},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3669},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3670},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3671},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3672},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":3673},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":3674},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":3675},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":3676},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":3677},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":3678},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":3679},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":3680},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":3681},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":3682},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":3683},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":3684},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3685},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3686},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3687},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3688},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3689},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3690},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3691},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3692},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":3693},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":3694},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":3695},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":3696},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":3697},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":3698},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":3699},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":3700},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":3701},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":3702},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":3703},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":3704},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3705},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3706},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3707},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3708},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3709},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3710},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3711},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3712},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":3713},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":3714},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":3715},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":3716},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":3717},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":3718},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":3719},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":3720},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":3721},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":3722},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":3723},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":3724},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":3725},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":3726},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":3727},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":3728},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":3729},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":3730},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":3731},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":3732}]},"oak_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3733},{"properties":{"facing":"north","waterlogged":"false"},"id":3734},{"properties":{"facing":"south","waterlogged":"true"},"id":3735},{"properties":{"facing":"south","waterlogged":"false"},"id":3736},{"properties":{"facing":"west","waterlogged":"true"},"id":3737},{"properties":{"facing":"west","waterlogged":"false"},"id":3738},{"properties":{"facing":"east","waterlogged":"true"},"id":3739},{"properties":{"facing":"east","waterlogged":"false"},"id":3740}]},"spruce_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3741},{"properties":{"facing":"north","waterlogged":"false"},"id":3742},{"properties":{"facing":"south","waterlogged":"true"},"id":3743},{"properties":{"facing":"south","waterlogged":"false"},"id":3744},{"properties":{"facing":"west","waterlogged":"true"},"id":3745},{"properties":{"facing":"west","waterlogged":"false"},"id":3746},{"properties":{"facing":"east","waterlogged":"true"},"id":3747},{"properties":{"facing":"east","waterlogged":"false"},"id":3748}]},"birch_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3749},{"properties":{"facing":"north","waterlogged":"false"},"id":3750},{"properties":{"facing":"south","waterlogged":"true"},"id":3751},{"properties":{"facing":"south","waterlogged":"false"},"id":3752},{"properties":{"facing":"west","waterlogged":"true"},"id":3753},{"properties":{"facing":"west","waterlogged":"false"},"id":3754},{"properties":{"facing":"east","waterlogged":"true"},"id":3755},{"properties":{"facing":"east","waterlogged":"false"},"id":3756}]},"acacia_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3757},{"properties":{"facing":"north","waterlogged":"false"},"id":3758},{"properties":{"facing":"south","waterlogged":"true"},"id":3759},{"properties":{"facing":"south","waterlogged":"false"},"id":3760},{"properties":{"facing":"west","waterlogged":"true"},"id":3761},{"properties":{"facing":"west","waterlogged":"false"},"id":3762},{"properties":{"facing":"east","waterlogged":"true"},"id":3763},{"properties":{"facing":"east","waterlogged":"false"},"id":3764}]},"jungle_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3765},{"properties":{"facing":"north","waterlogged":"false"},"id":3766},{"properties":{"facing":"south","waterlogged":"true"},"id":3767},{"properties":{"facing":"south","waterlogged":"false"},"id":3768},{"properties":{"facing":"west","waterlogged":"true"},"id":3769},{"properties":{"facing":"west","waterlogged":"false"},"id":3770},{"properties":{"facing":"east","waterlogged":"true"},"id":3771},{"properties":{"facing":"east","waterlogged":"false"},"id":3772}]},"dark_oak_wall_sign":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":3773},{"properties":{"facing":"north","waterlogged":"false"},"id":3774},{"properties":{"facing":"south","waterlogged":"true"},"id":3775},{"properties":{"facing":"south","waterlogged":"false"},"id":3776},{"properties":{"facing":"west","waterlogged":"true"},"id":3777},{"properties":{"facing":"west","waterlogged":"false"},"id":3778},{"properties":{"facing":"east","waterlogged":"true"},"id":3779},{"properties":{"facing":"east","waterlogged":"false"},"id":3780}]},"lever":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3781},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3782},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3783},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3784},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3785},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3786},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3787},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3788},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3789},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3790},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3791},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3792},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3793},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3794},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3795},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3796},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3797},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3798},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3799},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3800},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3801},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3802},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3803},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3804}]},"stone_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3805},{"properties":{"powered":"false"},"id":3806}]},"iron_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3807},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3808},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3809},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3810},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3811},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3812},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3813},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3814},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3815},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3816},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3817},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3818},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3819},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3820},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3821},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3822},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3823},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3824},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3825},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3826},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3827},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3828},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3829},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3830},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3831},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3832},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3833},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3834},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3835},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3836},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3837},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3838},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3839},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3840},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3841},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3842},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3843},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3844},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3845},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3846},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3847},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3848},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3849},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3850},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3851},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3852},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3853},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3854},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":3855},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":3856},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":3857},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":3858},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":3859},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":3860},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":3861},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":3862},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":3863},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":3864},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":3865},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":3866},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":3867},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":3868},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":3869},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":3870}]},"oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3871},{"properties":{"powered":"false"},"id":3872}]},"spruce_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3873},{"properties":{"powered":"false"},"id":3874}]},"birch_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3875},{"properties":{"powered":"false"},"id":3876}]},"jungle_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3877},{"properties":{"powered":"false"},"id":3878}]},"acacia_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3879},{"properties":{"powered":"false"},"id":3880}]},"dark_oak_pressure_plate":{"properties":{"powered":["true","false"]},"states":[{"properties":{"powered":"true"},"id":3881},{"properties":{"powered":"false"},"id":3882}]},"redstone_ore":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3883},{"properties":{"lit":"false"},"id":3884}]},"redstone_torch":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":3885},{"properties":{"lit":"false"},"id":3886}]},"redstone_wall_torch":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":3887},{"properties":{"facing":"north","lit":"false"},"id":3888},{"properties":{"facing":"south","lit":"true"},"id":3889},{"properties":{"facing":"south","lit":"false"},"id":3890},{"properties":{"facing":"west","lit":"true"},"id":3891},{"properties":{"facing":"west","lit":"false"},"id":3892},{"properties":{"facing":"east","lit":"true"},"id":3893},{"properties":{"facing":"east","lit":"false"},"id":3894}]},"stone_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":3895},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":3896},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":3897},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":3898},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":3899},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":3900},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":3901},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":3902},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":3903},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":3904},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":3905},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":3906},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":3907},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":3908},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":3909},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":3910},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":3911},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":3912},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":3913},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":3914},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":3915},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":3916},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":3917},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":3918}]},"snow":{"properties":{"layers":["1","2","3","4","5","6","7","8"]},"states":[{"properties":{"layers":"1"},"id":3919},{"properties":{"layers":"2"},"id":3920},{"properties":{"layers":"3"},"id":3921},{"properties":{"layers":"4"},"id":3922},{"properties":{"layers":"5"},"id":3923},{"properties":{"layers":"6"},"id":3924},{"properties":{"layers":"7"},"id":3925},{"properties":{"layers":"8"},"id":3926}]},"ice":{"states":[{"id":3927}]},"snow_block":{"states":[{"id":3928}]},"cactus":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3929},{"properties":{"age":"1"},"id":3930},{"properties":{"age":"2"},"id":3931},{"properties":{"age":"3"},"id":3932},{"properties":{"age":"4"},"id":3933},{"properties":{"age":"5"},"id":3934},{"properties":{"age":"6"},"id":3935},{"properties":{"age":"7"},"id":3936},{"properties":{"age":"8"},"id":3937},{"properties":{"age":"9"},"id":3938},{"properties":{"age":"10"},"id":3939},{"properties":{"age":"11"},"id":3940},{"properties":{"age":"12"},"id":3941},{"properties":{"age":"13"},"id":3942},{"properties":{"age":"14"},"id":3943},{"properties":{"age":"15"},"id":3944}]},"clay":{"states":[{"id":3945}]},"sugar_cane":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"age":"0"},"id":3946},{"properties":{"age":"1"},"id":3947},{"properties":{"age":"2"},"id":3948},{"properties":{"age":"3"},"id":3949},{"properties":{"age":"4"},"id":3950},{"properties":{"age":"5"},"id":3951},{"properties":{"age":"6"},"id":3952},{"properties":{"age":"7"},"id":3953},{"properties":{"age":"8"},"id":3954},{"properties":{"age":"9"},"id":3955},{"properties":{"age":"10"},"id":3956},{"properties":{"age":"11"},"id":3957},{"properties":{"age":"12"},"id":3958},{"properties":{"age":"13"},"id":3959},{"properties":{"age":"14"},"id":3960},{"properties":{"age":"15"},"id":3961}]},"jukebox":{"properties":{"has_record":["true","false"]},"states":[{"properties":{"has_record":"true"},"id":3962},{"properties":{"has_record":"false"},"id":3963}]},"oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3964},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3965},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3966},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3967},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3968},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3969},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3970},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3971},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3972},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3973},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3974},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3975},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3976},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3977},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3978},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3979},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":3980},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":3981},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":3982},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":3983},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":3984},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":3985},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":3986},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":3987},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":3988},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":3989},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":3990},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":3991},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":3992},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":3993},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":3994},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":3995}]},"pumpkin":{"states":[{"id":3996}]},"netherrack":{"states":[{"id":3997}]},"soul_sand":{"states":[{"id":3998}]},"glowstone":{"states":[{"id":3999}]},"nether_portal":{"properties":{"axis":["x","z"]},"states":[{"properties":{"axis":"x"},"id":4000},{"properties":{"axis":"z"},"id":4001}]},"carved_pumpkin":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4002},{"properties":{"facing":"south"},"id":4003},{"properties":{"facing":"west"},"id":4004},{"properties":{"facing":"east"},"id":4005}]},"jack_o_lantern":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4006},{"properties":{"facing":"south"},"id":4007},{"properties":{"facing":"west"},"id":4008},{"properties":{"facing":"east"},"id":4009}]},"cake":{"properties":{"bites":["0","1","2","3","4","5","6"]},"states":[{"properties":{"bites":"0"},"id":4010},{"properties":{"bites":"1"},"id":4011},{"properties":{"bites":"2"},"id":4012},{"properties":{"bites":"3"},"id":4013},{"properties":{"bites":"4"},"id":4014},{"properties":{"bites":"5"},"id":4015},{"properties":{"bites":"6"},"id":4016}]},"repeater":{"properties":{"delay":["1","2","3","4"],"facing":["north","south","west","east"],"locked":["true","false"],"powered":["true","false"]},"states":[{"properties":{"delay":"1","facing":"north","locked":"true","powered":"true"},"id":4017},{"properties":{"delay":"1","facing":"north","locked":"true","powered":"false"},"id":4018},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"true"},"id":4019},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"false"},"id":4020},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"true"},"id":4021},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"false"},"id":4022},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"true"},"id":4023},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"false"},"id":4024},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"true"},"id":4025},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"false"},"id":4026},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"true"},"id":4027},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"false"},"id":4028},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"true"},"id":4029},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"false"},"id":4030},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"true"},"id":4031},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"false"},"id":4032},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"true"},"id":4033},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"false"},"id":4034},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"true"},"id":4035},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"false"},"id":4036},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"true"},"id":4037},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"false"},"id":4038},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"true"},"id":4039},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"false"},"id":4040},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"true"},"id":4041},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"false"},"id":4042},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"true"},"id":4043},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"false"},"id":4044},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"true"},"id":4045},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"false"},"id":4046},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"true"},"id":4047},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"false"},"id":4048},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"true"},"id":4049},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"false"},"id":4050},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"true"},"id":4051},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"false"},"id":4052},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"true"},"id":4053},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"false"},"id":4054},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"true"},"id":4055},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"false"},"id":4056},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"true"},"id":4057},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"false"},"id":4058},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"true"},"id":4059},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"false"},"id":4060},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"true"},"id":4061},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"false"},"id":4062},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"true"},"id":4063},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"false"},"id":4064},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"true"},"id":4065},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"false"},"id":4066},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"true"},"id":4067},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"false"},"id":4068},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"true"},"id":4069},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"false"},"id":4070},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"true"},"id":4071},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"false"},"id":4072},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"true"},"id":4073},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"false"},"id":4074},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"true"},"id":4075},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"false"},"id":4076},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"true"},"id":4077},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"false"},"id":4078},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"true"},"id":4079},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"false"},"id":4080}]},"white_stained_glass":{"states":[{"id":4081}]},"orange_stained_glass":{"states":[{"id":4082}]},"magenta_stained_glass":{"states":[{"id":4083}]},"light_blue_stained_glass":{"states":[{"id":4084}]},"yellow_stained_glass":{"states":[{"id":4085}]},"lime_stained_glass":{"states":[{"id":4086}]},"pink_stained_glass":{"states":[{"id":4087}]},"gray_stained_glass":{"states":[{"id":4088}]},"light_gray_stained_glass":{"states":[{"id":4089}]},"cyan_stained_glass":{"states":[{"id":4090}]},"purple_stained_glass":{"states":[{"id":4091}]},"blue_stained_glass":{"states":[{"id":4092}]},"brown_stained_glass":{"states":[{"id":4093}]},"green_stained_glass":{"states":[{"id":4094}]},"red_stained_glass":{"states":[{"id":4095}]},"black_stained_glass":{"states":[{"id":4096}]},"oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4097},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4098},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4099},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4100},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4101},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4102},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4103},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4104},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4105},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4106},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4107},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4108},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4109},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4110},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4111},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4112},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4113},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4114},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4115},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4116},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4117},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4118},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4119},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4120},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4121},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4122},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4123},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4124},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4125},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4126},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4127},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4128},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4129},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4130},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4131},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4132},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4133},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4134},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4135},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4136},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4137},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4138},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4139},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4140},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4141},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4142},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4143},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4144},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4145},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4146},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4147},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4148},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4149},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4150},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4151},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4152},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4153},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4154},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4155},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4156},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4157},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4158},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4159},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4160}]},"spruce_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4161},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4162},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4163},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4164},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4165},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4166},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4167},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4168},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4169},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4170},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4171},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4172},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4173},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4174},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4175},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4176},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4177},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4178},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4179},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4180},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4181},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4182},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4183},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4184},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4185},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4186},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4187},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4188},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4189},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4190},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4191},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4192},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4193},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4194},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4195},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4196},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4197},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4198},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4199},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4200},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4201},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4202},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4203},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4204},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4205},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4206},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4207},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4208},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4209},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4210},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4211},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4212},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4213},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4214},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4215},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4216},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4217},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4218},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4219},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4220},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4221},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4222},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4223},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4224}]},"birch_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4225},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4226},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4227},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4228},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4229},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4230},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4231},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4232},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4233},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4234},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4235},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4236},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4237},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4238},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4239},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4240},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4241},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4242},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4243},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4244},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4245},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4246},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4247},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4248},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4249},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4250},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4251},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4252},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4253},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4254},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4255},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4256},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4257},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4258},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4259},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4260},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4261},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4262},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4263},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4264},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4265},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4266},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4267},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4268},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4269},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4270},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4271},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4272},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4273},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4274},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4275},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4276},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4277},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4278},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4279},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4280},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4281},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4282},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4283},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4284},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4285},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4286},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4287},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4288}]},"jungle_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4289},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4290},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4291},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4292},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4293},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4294},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4295},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4296},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4297},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4298},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4299},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4300},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4301},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4302},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4303},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4304},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4305},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4306},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4307},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4308},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4309},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4310},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4311},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4312},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4313},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4314},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4315},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4316},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4317},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4318},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4319},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4320},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4321},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4322},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4323},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4324},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4325},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4326},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4327},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4328},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4329},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4330},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4331},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4332},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4333},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4334},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4335},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4336},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4337},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4338},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4339},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4340},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4341},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4342},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4343},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4344},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4345},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4346},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4347},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4348},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4349},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4350},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4351},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4352}]},"acacia_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4353},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4354},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4355},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4356},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4357},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4358},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4359},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4360},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4361},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4362},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4363},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4364},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4365},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4366},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4367},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4368},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4369},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4370},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4371},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4372},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4373},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4374},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4375},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4376},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4377},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4378},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4379},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4380},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4381},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4382},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4383},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4384},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4385},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4386},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4387},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4388},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4389},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4390},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4391},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4392},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4393},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4394},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4395},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4396},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4397},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4398},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4399},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4400},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4401},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4402},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4403},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4404},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4405},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4406},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4407},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4408},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4409},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4410},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4411},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4412},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4413},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4414},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4415},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4416}]},"dark_oak_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4417},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4418},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4419},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4420},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4421},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4422},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4423},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4424},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4425},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4426},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4427},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4428},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4429},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4430},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4431},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4432},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4433},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4434},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4435},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4436},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4437},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4438},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4439},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4440},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4441},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4442},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4443},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4444},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4445},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4446},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4447},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4448},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4449},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4450},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4451},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4452},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4453},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4454},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4455},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4456},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4457},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4458},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4459},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4460},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4461},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4462},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4463},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4464},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":4465},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":4466},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":4467},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":4468},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":4469},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":4470},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":4471},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":4472},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":4473},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":4474},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":4475},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":4476},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":4477},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":4478},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":4479},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":4480}]},"stone_bricks":{"states":[{"id":4481}]},"mossy_stone_bricks":{"states":[{"id":4482}]},"cracked_stone_bricks":{"states":[{"id":4483}]},"chiseled_stone_bricks":{"states":[{"id":4484}]},"infested_stone":{"states":[{"id":4485}]},"infested_cobblestone":{"states":[{"id":4486}]},"infested_stone_bricks":{"states":[{"id":4487}]},"infested_mossy_stone_bricks":{"states":[{"id":4488}]},"infested_cracked_stone_bricks":{"states":[{"id":4489}]},"infested_chiseled_stone_bricks":{"states":[{"id":4490}]},"brown_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4491},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4492},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4493},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4494},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4495},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4496},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4497},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4498},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4499},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4500},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4501},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4502},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4503},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4504},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4505},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4506},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4507},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4508},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4509},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4510},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4511},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4512},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4513},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4514},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4515},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4516},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4517},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4518},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4519},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4520},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4521},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4522},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4523},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4524},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4525},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4526},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4527},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4528},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4529},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4530},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4531},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4532},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4533},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4534},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4535},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4536},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4537},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4538},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4539},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4540},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4541},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4542},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4543},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4544},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4545},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4546},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4547},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4548},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4549},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4550},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4551},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4552},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4553},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4554}]},"red_mushroom_block":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4555},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4556},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4557},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4558},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4559},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4560},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4561},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4562},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4563},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4564},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4565},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4566},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4567},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4568},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4569},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4570},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4571},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4572},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4573},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4574},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4575},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4576},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4577},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4578},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4579},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4580},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4581},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4582},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4583},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4584},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4585},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4586},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4587},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4588},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4589},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4590},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4591},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4592},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4593},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4594},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4595},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4596},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4597},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4598},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4599},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4600},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4601},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4602},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4603},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4604},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4605},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4606},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4607},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4608},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4609},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4610},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4611},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4612},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4613},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4614},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4615},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4616},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4617},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4618}]},"mushroom_stem":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4619},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4620},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4621},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4622},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4623},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4624},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4625},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4626},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4627},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4628},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4629},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4630},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4631},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4632},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4633},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4634},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4635},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4636},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4637},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4638},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4639},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4640},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4641},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4642},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4643},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4644},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4645},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4646},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4647},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4648},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4649},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4650},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4651},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4652},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4653},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4654},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4655},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4656},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4657},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4658},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4659},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4660},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4661},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4662},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4663},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4664},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4665},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4666},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4667},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4668},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4669},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4670},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4671},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4672},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4673},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4674},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4675},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4676},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4677},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4678},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4679},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4680},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4681},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4682}]},"iron_bars":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4683},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4684},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4685},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4686},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4687},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4688},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4689},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4690},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4691},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4692},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4693},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4694},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4695},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4696},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4697},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4698},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4699},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4700},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4701},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4702},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4703},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4704},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4705},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4706},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4707},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4708},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4709},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4710},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4711},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4712},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4713},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4714}]},"glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4715},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4716},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4717},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4718},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4719},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4720},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4721},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4722},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4723},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4724},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4725},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4726},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4727},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4728},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4729},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4730},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":4731},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":4732},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":4733},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":4734},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":4735},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":4736},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":4737},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":4738},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":4739},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":4740},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":4741},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":4742},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":4743},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":4744},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":4745},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":4746}]},"melon":{"states":[{"id":4747}]},"attached_pumpkin_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4748},{"properties":{"facing":"south"},"id":4749},{"properties":{"facing":"west"},"id":4750},{"properties":{"facing":"east"},"id":4751}]},"attached_melon_stem":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":4752},{"properties":{"facing":"south"},"id":4753},{"properties":{"facing":"west"},"id":4754},{"properties":{"facing":"east"},"id":4755}]},"pumpkin_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4756},{"properties":{"age":"1"},"id":4757},{"properties":{"age":"2"},"id":4758},{"properties":{"age":"3"},"id":4759},{"properties":{"age":"4"},"id":4760},{"properties":{"age":"5"},"id":4761},{"properties":{"age":"6"},"id":4762},{"properties":{"age":"7"},"id":4763}]},"melon_stem":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":4764},{"properties":{"age":"1"},"id":4765},{"properties":{"age":"2"},"id":4766},{"properties":{"age":"3"},"id":4767},{"properties":{"age":"4"},"id":4768},{"properties":{"age":"5"},"id":4769},{"properties":{"age":"6"},"id":4770},{"properties":{"age":"7"},"id":4771}]},"vine":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"true"},"id":4772},{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"false"},"id":4773},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"true"},"id":4774},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"false"},"id":4775},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"true"},"id":4776},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"false"},"id":4777},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"true"},"id":4778},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"false"},"id":4779},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"true"},"id":4780},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"false"},"id":4781},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"true"},"id":4782},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"false"},"id":4783},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"true"},"id":4784},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"false"},"id":4785},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"true"},"id":4786},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"false"},"id":4787},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"true"},"id":4788},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"false"},"id":4789},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"true"},"id":4790},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"false"},"id":4791},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"true"},"id":4792},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"false"},"id":4793},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"true"},"id":4794},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"false"},"id":4795},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"true"},"id":4796},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"false"},"id":4797},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"true"},"id":4798},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"false"},"id":4799},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"true"},"id":4800},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"false"},"id":4801},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"true"},"id":4802},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"false"},"id":4803}]},"oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":4804},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":4805},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":4806},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":4807},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":4808},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":4809},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":4810},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":4811},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":4812},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":4813},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":4814},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":4815},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":4816},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":4817},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":4818},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":4819},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":4820},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":4821},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":4822},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":4823},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":4824},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":4825},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":4826},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":4827},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":4828},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":4829},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":4830},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":4831},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":4832},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":4833},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":4834},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":4835}]},"brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4836},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4837},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4838},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4839},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4840},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4841},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4842},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4843},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4844},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4845},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4846},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4847},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4848},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4849},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4850},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4851},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4852},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4853},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4854},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4855},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4856},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4857},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4858},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4859},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4860},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4861},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4862},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4863},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4864},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4865},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4866},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4867},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4868},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4869},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4870},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4871},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4872},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4873},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4874},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4875},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4876},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4877},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4878},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4879},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4880},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4881},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4882},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4883},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4884},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4885},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4886},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4887},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4888},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4889},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4890},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4891},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4892},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4893},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4894},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4895},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4896},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4897},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4898},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4899},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4900},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4901},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4902},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4903},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4904},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4905},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4906},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4907},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4908},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4909},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4910},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4911},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4912},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4913},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4914},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4915}]},"stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":4916},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":4917},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":4918},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":4919},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":4920},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":4921},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":4922},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":4923},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":4924},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":4925},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":4926},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":4927},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4928},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4929},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4930},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4931},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4932},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4933},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4934},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4935},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":4936},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":4937},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":4938},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":4939},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":4940},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":4941},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":4942},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":4943},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":4944},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":4945},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":4946},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":4947},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4948},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4949},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4950},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4951},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4952},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4953},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4954},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4955},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":4956},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":4957},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":4958},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":4959},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":4960},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":4961},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":4962},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":4963},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":4964},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":4965},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":4966},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":4967},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4968},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4969},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4970},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4971},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4972},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4973},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4974},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4975},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":4976},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":4977},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":4978},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":4979},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":4980},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":4981},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":4982},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":4983},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":4984},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":4985},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":4986},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":4987},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":4988},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":4989},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":4990},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":4991},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":4992},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":4993},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":4994},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":4995}]},"mycelium":{"properties":{"snowy":["true","false"]},"states":[{"properties":{"snowy":"true"},"id":4996},{"properties":{"snowy":"false"},"id":4997}]},"lily_pad":{"states":[{"id":4998}]},"nether_bricks":{"states":[{"id":4999}]},"nether_brick_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5000},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5001},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5002},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5003},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5004},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5005},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5006},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5007},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5008},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5009},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5010},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5011},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5012},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5013},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5014},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5015},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":5016},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":5017},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":5018},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":5019},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":5020},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":5021},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":5022},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":5023},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":5024},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":5025},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":5026},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":5027},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":5028},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":5029},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":5030},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":5031}]},"nether_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5032},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5033},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5034},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5035},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5036},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5037},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5038},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5039},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5040},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5041},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5042},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5043},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5044},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5045},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5046},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5047},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5048},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5049},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5050},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5051},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5052},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5053},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5054},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5055},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5056},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5057},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5058},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5059},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5060},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5061},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5062},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5063},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5064},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5065},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5066},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5067},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5068},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5069},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5070},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5071},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5072},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5073},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5074},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5075},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5076},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5077},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5078},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5079},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5080},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5081},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5082},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5083},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5084},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5085},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5086},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5087},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5088},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5089},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5090},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5091},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5092},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5093},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5094},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5095},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5096},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5097},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5098},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5099},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5100},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5101},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5102},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5103},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5104},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5105},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5106},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5107},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5108},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5109},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5110},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5111}]},"nether_wart":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":5112},{"properties":{"age":"1"},"id":5113},{"properties":{"age":"2"},"id":5114},{"properties":{"age":"3"},"id":5115}]},"enchanting_table":{"states":[{"id":5116}]},"brewing_stand":{"properties":{"has_bottle_0":["true","false"],"has_bottle_1":["true","false"],"has_bottle_2":["true","false"]},"states":[{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"true"},"id":5117},{"properties":{"has_bottle_0":"true","has_bottle_1":"true","has_bottle_2":"false"},"id":5118},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"true"},"id":5119},{"properties":{"has_bottle_0":"true","has_bottle_1":"false","has_bottle_2":"false"},"id":5120},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"true"},"id":5121},{"properties":{"has_bottle_0":"false","has_bottle_1":"true","has_bottle_2":"false"},"id":5122},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"true"},"id":5123},{"properties":{"has_bottle_0":"false","has_bottle_1":"false","has_bottle_2":"false"},"id":5124}]},"cauldron":{"properties":{"level":["0","1","2","3"]},"states":[{"properties":{"level":"0"},"id":5125},{"properties":{"level":"1"},"id":5126},{"properties":{"level":"2"},"id":5127},{"properties":{"level":"3"},"id":5128}]},"end_portal":{"states":[{"id":5129}]},"end_portal_frame":{"properties":{"eye":["true","false"],"facing":["north","south","west","east"]},"states":[{"properties":{"eye":"true","facing":"north"},"id":5130},{"properties":{"eye":"true","facing":"south"},"id":5131},{"properties":{"eye":"true","facing":"west"},"id":5132},{"properties":{"eye":"true","facing":"east"},"id":5133},{"properties":{"eye":"false","facing":"north"},"id":5134},{"properties":{"eye":"false","facing":"south"},"id":5135},{"properties":{"eye":"false","facing":"west"},"id":5136},{"properties":{"eye":"false","facing":"east"},"id":5137}]},"end_stone":{"states":[{"id":5138}]},"dragon_egg":{"states":[{"id":5139}]},"redstone_lamp":{"properties":{"lit":["true","false"]},"states":[{"properties":{"lit":"true"},"id":5140},{"properties":{"lit":"false"},"id":5141}]},"cocoa":{"properties":{"age":["0","1","2"],"facing":["north","south","west","east"]},"states":[{"properties":{"age":"0","facing":"north"},"id":5142},{"properties":{"age":"0","facing":"south"},"id":5143},{"properties":{"age":"0","facing":"west"},"id":5144},{"properties":{"age":"0","facing":"east"},"id":5145},{"properties":{"age":"1","facing":"north"},"id":5146},{"properties":{"age":"1","facing":"south"},"id":5147},{"properties":{"age":"1","facing":"west"},"id":5148},{"properties":{"age":"1","facing":"east"},"id":5149},{"properties":{"age":"2","facing":"north"},"id":5150},{"properties":{"age":"2","facing":"south"},"id":5151},{"properties":{"age":"2","facing":"west"},"id":5152},{"properties":{"age":"2","facing":"east"},"id":5153}]},"sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5154},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5155},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5156},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5157},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5158},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5159},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5160},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5161},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5162},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5163},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5164},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5165},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5166},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5167},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5168},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5169},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5170},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5171},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5172},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5173},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5174},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5175},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5176},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5177},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5178},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5179},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5180},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5181},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5182},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5183},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5184},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5185},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5186},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5187},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5188},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5189},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5190},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5191},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5192},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5193},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5194},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5195},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5196},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5197},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5198},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5199},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5200},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5201},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5202},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5203},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5204},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5205},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5206},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5207},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5208},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5209},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5210},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5211},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5212},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5213},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5214},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5215},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5216},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5217},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5218},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5219},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5220},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5221},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5222},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5223},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5224},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5225},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5226},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5227},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5228},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5229},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5230},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5231},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5232},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5233}]},"emerald_ore":{"states":[{"id":5234}]},"ender_chest":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":5235},{"properties":{"facing":"north","waterlogged":"false"},"id":5236},{"properties":{"facing":"south","waterlogged":"true"},"id":5237},{"properties":{"facing":"south","waterlogged":"false"},"id":5238},{"properties":{"facing":"west","waterlogged":"true"},"id":5239},{"properties":{"facing":"west","waterlogged":"false"},"id":5240},{"properties":{"facing":"east","waterlogged":"true"},"id":5241},{"properties":{"facing":"east","waterlogged":"false"},"id":5242}]},"tripwire_hook":{"properties":{"attached":["true","false"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"attached":"true","facing":"north","powered":"true"},"id":5243},{"properties":{"attached":"true","facing":"north","powered":"false"},"id":5244},{"properties":{"attached":"true","facing":"south","powered":"true"},"id":5245},{"properties":{"attached":"true","facing":"south","powered":"false"},"id":5246},{"properties":{"attached":"true","facing":"west","powered":"true"},"id":5247},{"properties":{"attached":"true","facing":"west","powered":"false"},"id":5248},{"properties":{"attached":"true","facing":"east","powered":"true"},"id":5249},{"properties":{"attached":"true","facing":"east","powered":"false"},"id":5250},{"properties":{"attached":"false","facing":"north","powered":"true"},"id":5251},{"properties":{"attached":"false","facing":"north","powered":"false"},"id":5252},{"properties":{"attached":"false","facing":"south","powered":"true"},"id":5253},{"properties":{"attached":"false","facing":"south","powered":"false"},"id":5254},{"properties":{"attached":"false","facing":"west","powered":"true"},"id":5255},{"properties":{"attached":"false","facing":"west","powered":"false"},"id":5256},{"properties":{"attached":"false","facing":"east","powered":"true"},"id":5257},{"properties":{"attached":"false","facing":"east","powered":"false"},"id":5258}]},"tripwire":{"properties":{"attached":["true","false"],"disarmed":["true","false"],"east":["true","false"],"north":["true","false"],"powered":["true","false"],"south":["true","false"],"west":["true","false"]},"states":[{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5259},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5260},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5261},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5262},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5263},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5264},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5265},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5266},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5267},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5268},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5269},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5270},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5271},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5272},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5273},{"properties":{"attached":"true","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5274},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5275},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5276},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5277},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5278},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5279},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5280},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5281},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5282},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5283},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5284},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5285},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5286},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5287},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5288},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5289},{"properties":{"attached":"true","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5290},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5291},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5292},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5293},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5294},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5295},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5296},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5297},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5298},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5299},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5300},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5301},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5302},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5303},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5304},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5305},{"properties":{"attached":"true","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5306},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5307},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5308},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5309},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5310},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5311},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5312},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5313},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5314},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5315},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5316},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5317},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5318},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5319},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5320},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5321},{"properties":{"attached":"true","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5322},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5323},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5324},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5325},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5326},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5327},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5328},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5329},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5330},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5331},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5332},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5333},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5334},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5335},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5336},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5337},{"properties":{"attached":"false","disarmed":"true","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5338},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5339},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5340},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5341},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5342},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5343},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5344},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5345},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5346},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5347},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5348},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5349},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5350},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5351},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5352},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5353},{"properties":{"attached":"false","disarmed":"true","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5354},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"true"},"id":5355},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"true","west":"false"},"id":5356},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"true"},"id":5357},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"true","south":"false","west":"false"},"id":5358},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"true"},"id":5359},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"true","west":"false"},"id":5360},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"true"},"id":5361},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"true","powered":"false","south":"false","west":"false"},"id":5362},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"true"},"id":5363},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"true","west":"false"},"id":5364},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"true"},"id":5365},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"true","south":"false","west":"false"},"id":5366},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"true"},"id":5367},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"true","west":"false"},"id":5368},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"true"},"id":5369},{"properties":{"attached":"false","disarmed":"false","east":"true","north":"false","powered":"false","south":"false","west":"false"},"id":5370},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"true"},"id":5371},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"true","west":"false"},"id":5372},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"true"},"id":5373},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"true","south":"false","west":"false"},"id":5374},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"true"},"id":5375},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"true","west":"false"},"id":5376},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"true"},"id":5377},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"true","powered":"false","south":"false","west":"false"},"id":5378},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"true"},"id":5379},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"true","west":"false"},"id":5380},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"true"},"id":5381},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"true","south":"false","west":"false"},"id":5382},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"true"},"id":5383},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"true","west":"false"},"id":5384},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"true"},"id":5385},{"properties":{"attached":"false","disarmed":"false","east":"false","north":"false","powered":"false","south":"false","west":"false"},"id":5386}]},"emerald_block":{"states":[{"id":5387}]},"spruce_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5388},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5389},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5390},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5391},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5392},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5393},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5394},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5395},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5396},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5397},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5398},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5399},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5400},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5401},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5402},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5403},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5404},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5405},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5406},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5407},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5408},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5409},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5410},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5411},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5412},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5413},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5414},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5415},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5416},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5417},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5418},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5419},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5420},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5421},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5422},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5423},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5424},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5425},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5426},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5427},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5428},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5429},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5430},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5431},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5432},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5433},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5434},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5435},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5436},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5437},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5438},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5439},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5440},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5441},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5442},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5443},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5444},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5445},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5446},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5447},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5448},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5449},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5450},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5451},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5452},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5453},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5454},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5455},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5456},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5457},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5458},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5459},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5460},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5461},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5462},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5463},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5464},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5465},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5466},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5467}]},"birch_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5468},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5469},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5470},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5471},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5472},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5473},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5474},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5475},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5476},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5477},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5478},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5479},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5480},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5481},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5482},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5483},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5484},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5485},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5486},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5487},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5488},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5489},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5490},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5491},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5492},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5493},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5494},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5495},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5496},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5497},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5498},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5499},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5500},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5501},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5502},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5503},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5504},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5505},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5506},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5507},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5508},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5509},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5510},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5511},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5512},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5513},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5514},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5515},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5516},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5517},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5518},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5519},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5520},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5521},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5522},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5523},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5524},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5525},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5526},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5527},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5528},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5529},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5530},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5531},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5532},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5533},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5534},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5535},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5536},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5537},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5538},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5539},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5540},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5541},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5542},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5543},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5544},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5545},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5546},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5547}]},"jungle_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":5548},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":5549},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":5550},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":5551},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":5552},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":5553},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":5554},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":5555},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":5556},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":5557},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":5558},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":5559},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5560},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5561},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5562},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5563},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5564},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5565},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5566},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5567},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":5568},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":5569},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":5570},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":5571},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":5572},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":5573},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":5574},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":5575},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":5576},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":5577},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":5578},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":5579},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5580},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5581},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5582},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5583},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5584},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5585},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5586},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5587},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":5588},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":5589},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":5590},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":5591},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":5592},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":5593},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":5594},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":5595},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":5596},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":5597},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":5598},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":5599},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5600},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5601},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5602},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5603},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5604},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5605},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5606},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5607},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":5608},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":5609},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":5610},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":5611},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":5612},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":5613},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":5614},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":5615},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":5616},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":5617},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":5618},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":5619},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":5620},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":5621},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":5622},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":5623},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":5624},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":5625},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":5626},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":5627}]},"command_block":{"properties":{"conditconditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":5628},{"properties":{"conditional":"true","facing":"east"},"id":5629},{"properties":{"conditional":"true","facing":"south"},"id":5630},{"properties":{"conditional":"true","facing":"west"},"id":5631},{"properties":{"conditional":"true","facing":"up"},"id":5632},{"properties":{"conditional":"true","facing":"down"},"id":5633},{"properties":{"conditional":"false","facing":"north"},"id":5634},{"properties":{"conditional":"false","facing":"east"},"id":5635},{"properties":{"conditional":"false","facing":"south"},"id":5636},{"properties":{"conditional":"false","facing":"west"},"id":5637},{"properties":{"conditional":"false","facing":"up"},"id":5638},{"properties":{"conditional":"false","facing":"down"},"id":5639}]},"beacon":{"states":[{"id":5640}]},"cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5641},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5642},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5643},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5644},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5645},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5646},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5647},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5648},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5649},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5650},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5651},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5652},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5653},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5654},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5655},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5656},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5657},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5658},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5659},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5660},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5661},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5662},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5663},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5664},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5665},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5666},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5667},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5668},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5669},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5670},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5671},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5672},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5673},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5674},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5675},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5676},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5677},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5678},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5679},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5680},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5681},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5682},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5683},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5684},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5685},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5686},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5687},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5688},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5689},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5690},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5691},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5692},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5693},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5694},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5695},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5696},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5697},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5698},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5699},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5700},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5701},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5702},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5703},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5704}]},"mossy_cobblestone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5705},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5706},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5707},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5708},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5709},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5710},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5711},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5712},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5713},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5714},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5715},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5716},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5717},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5718},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5719},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5720},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5721},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5722},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5723},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5724},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5725},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5726},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5727},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5728},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5729},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5730},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5731},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5732},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5733},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5734},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5735},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5736},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5737},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5738},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5739},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5740},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5741},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5742},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5743},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5744},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5745},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5746},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5747},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5748},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5749},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5750},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5751},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5752},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":5753},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":5754},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":5755},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":5756},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":5757},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":5758},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":5759},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":5760},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":5761},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":5762},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":5763},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":5764},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":5765},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":5766},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":5767},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":5768}]},"flower_pot":{"states":[{"id":5769}]},"potted_oak_sapling":{"states":[{"id":5770}]},"potted_spruce_sapling":{"states":[{"id":5771}]},"potted_birch_sapling":{"states":[{"id":5772}]},"potted_jungle_sapling":{"states":[{"id":5773}]},"potted_acacia_sapling":{"states":[{"id":5774}]},"potted_dark_oak_sapling":{"states":[{"id":5775}]},"potted_fern":{"states":[{"id":5776}]},"potted_dandelion":{"states":[{"id":5777}]},"potted_poppy":{"states":[{"id":5778}]},"potted_blue_orchid":{"states":[{"id":5779}]},"potted_allium":{"states":[{"id":5780}]},"potted_azure_bluet":{"states":[{"id":5781}]},"potted_red_tulip":{"states":[{"id":5782}]},"potted_orange_tulip":{"states":[{"id":5783}]},"potted_white_tulip":{"states":[{"id":5784}]},"potted_pink_tulip":{"states":[{"id":5785}]},"potted_oxeye_daisy":{"states":[{"id":5786}]},"potted_cornflower":{"states":[{"id":5787}]},"potted_lily_of_the_valley":{"states":[{"id":5788}]},"potted_wither_rose":{"states":[{"id":5789}]},"potted_red_mushroom":{"states":[{"id":5790}]},"potted_brown_mushroom":{"states":[{"id":5791}]},"potted_dead_bush":{"states":[{"id":5792}]},"potted_cactus":{"states":[{"id":5793}]},"carrots":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5794},{"properties":{"age":"1"},"id":5795},{"properties":{"age":"2"},"id":5796},{"properties":{"age":"3"},"id":5797},{"properties":{"age":"4"},"id":5798},{"properties":{"age":"5"},"id":5799},{"properties":{"age":"6"},"id":5800},{"properties":{"age":"7"},"id":5801}]},"potatoes":{"properties":{"age":["0","1","2","3","4","5","6","7"]},"states":[{"properties":{"age":"0"},"id":5802},{"properties":{"age":"1"},"id":5803},{"properties":{"age":"2"},"id":5804},{"properties":{"age":"3"},"id":5805},{"properties":{"age":"4"},"id":5806},{"properties":{"age":"5"},"id":5807},{"properties":{"age":"6"},"id":5808},{"properties":{"age":"7"},"id":5809}]},"oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5810},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5811},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5812},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5813},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5814},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5815},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5816},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5817},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5818},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5819},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5820},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5821},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5822},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5823},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5824},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5825},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5826},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5827},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5828},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5829},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5830},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5831},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5832},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5833}]},"spruce_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5834},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5835},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5836},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5837},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5838},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5839},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5840},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5841},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5842},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5843},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5844},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5845},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5846},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5847},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5848},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5849},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5850},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5851},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5852},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5853},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5854},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5855},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5856},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5857}]},"birch_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5858},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5859},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5860},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5861},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5862},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5863},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5864},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5865},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5866},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5867},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5868},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5869},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5870},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5871},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5872},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5873},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5874},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5875},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5876},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5877},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5878},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5879},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5880},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5881}]},"jungle_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5882},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5883},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5884},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5885},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5886},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5887},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5888},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5889},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5890},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5891},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5892},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5893},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5894},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5895},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5896},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5897},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5898},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5899},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5900},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5901},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5902},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5903},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5904},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5905}]},"acacia_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5906},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5907},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5908},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5909},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5910},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5911},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5912},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5913},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5914},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5915},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5916},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5917},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5918},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5919},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5920},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5921},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5922},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5923},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5924},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5925},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5926},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5927},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5928},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5929}]},"dark_oak_button":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"face":"floor","facing":"north","powered":"true"},"id":5930},{"properties":{"face":"floor","facing":"north","powered":"false"},"id":5931},{"properties":{"face":"floor","facing":"south","powered":"true"},"id":5932},{"properties":{"face":"floor","facing":"south","powered":"false"},"id":5933},{"properties":{"face":"floor","facing":"west","powered":"true"},"id":5934},{"properties":{"face":"floor","facing":"west","powered":"false"},"id":5935},{"properties":{"face":"floor","facing":"east","powered":"true"},"id":5936},{"properties":{"face":"floor","facing":"east","powered":"false"},"id":5937},{"properties":{"face":"wall","facing":"north","powered":"true"},"id":5938},{"properties":{"face":"wall","facing":"north","powered":"false"},"id":5939},{"properties":{"face":"wall","facing":"south","powered":"true"},"id":5940},{"properties":{"face":"wall","facing":"south","powered":"false"},"id":5941},{"properties":{"face":"wall","facing":"west","powered":"true"},"id":5942},{"properties":{"face":"wall","facing":"west","powered":"false"},"id":5943},{"properties":{"face":"wall","facing":"east","powered":"true"},"id":5944},{"properties":{"face":"wall","facing":"east","powered":"false"},"id":5945},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"id":5946},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"id":5947},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"id":5948},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"id":5949},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"id":5950},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"id":5951},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"id":5952},{"properties":{"face":"ceiling","facing":"east","powered":"false"},"id":5953}]},"skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5954},{"properties":{"rotation":"1"},"id":5955},{"properties":{"rotation":"2"},"id":5956},{"properties":{"rotation":"3"},"id":5957},{"properties":{"rotation":"4"},"id":5958},{"properties":{"rotation":"5"},"id":5959},{"properties":{"rotation":"6"},"id":5960},{"properties":{"rotation":"7"},"id":5961},{"properties":{"rotation":"8"},"id":5962},{"properties":{"rotation":"9"},"id":5963},{"properties":{"rotation":"10"},"id":5964},{"properties":{"rotation":"11"},"id":5965},{"properties":{"rotation":"12"},"id":5966},{"properties":{"rotation":"13"},"id":5967},{"properties":{"rotation":"14"},"id":5968},{"properties":{"rotation":"15"},"id":5969}]},"skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5970},{"properties":{"facing":"south"},"id":5971},{"properties":{"facing":"west"},"id":5972},{"properties":{"facing":"east"},"id":5973}]},"wither_skeleton_skull":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5974},{"properties":{"rotation":"1"},"id":5975},{"properties":{"rotation":"2"},"id":5976},{"properties":{"rotation":"3"},"id":5977},{"properties":{"rotation":"4"},"id":5978},{"properties":{"rotation":"5"},"id":5979},{"properties":{"rotation":"6"},"id":5980},{"properties":{"rotation":"7"},"id":5981},{"properties":{"rotation":"8"},"id":5982},{"properties":{"rotation":"9"},"id":5983},{"properties":{"rotation":"10"},"id":5984},{"properties":{"rotation":"11"},"id":5985},{"properties":{"rotation":"12"},"id":5986},{"properties":{"rotation":"13"},"id":5987},{"properties":{"rotation":"14"},"id":5988},{"properties":{"rotation":"15"},"id":5989}]},"wither_skeleton_wall_skull":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":5990},{"properties":{"facing":"south"},"id":5991},{"properties":{"facing":"west"},"id":5992},{"properties":{"facing":"east"},"id":5993}]},"zombie_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":5994},{"properties":{"rotation":"1"},"id":5995},{"properties":{"rotation":"2"},"id":5996},{"properties":{"rotation":"3"},"id":5997},{"properties":{"rotation":"4"},"id":5998},{"properties":{"rotation":"5"},"id":5999},{"properties":{"rotation":"6"},"id":6000},{"properties":{"rotation":"7"},"id":6001},{"properties":{"rotation":"8"},"id":6002},{"properties":{"rotation":"9"},"id":6003},{"properties":{"rotation":"10"},"id":6004},{"properties":{"rotation":"11"},"id":6005},{"properties":{"rotation":"12"},"id":6006},{"properties":{"rotation":"13"},"id":6007},{"properties":{"rotation":"14"},"id":6008},{"properties":{"rotation":"15"},"id":6009}]},"zombie_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6010},{"properties":{"facing":"south"},"id":6011},{"properties":{"facing":"west"},"id":6012},{"properties":{"facing":"east"},"id":6013}]},"player_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6014},{"properties":{"rotation":"1"},"id":6015},{"properties":{"rotation":"2"},"id":6016},{"properties":{"rotation":"3"},"id":6017},{"properties":{"rotation":"4"},"id":6018},{"properties":{"rotation":"5"},"id":6019},{"properties":{"rotation":"6"},"id":6020},{"properties":{"rotation":"7"},"id":6021},{"properties":{"rotation":"8"},"id":6022},{"properties":{"rotation":"9"},"id":6023},{"properties":{"rotation":"10"},"id":6024},{"properties":{"rotation":"11"},"id":6025},{"properties":{"rotation":"12"},"id":6026},{"properties":{"rotation":"13"},"id":6027},{"properties":{"rotation":"14"},"id":6028},{"properties":{"rotation":"15"},"id":6029}]},"player_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6030},{"properties":{"facing":"south"},"id":6031},{"properties":{"facing":"west"},"id":6032},{"properties":{"facing":"east"},"id":6033}]},"creeper_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6034},{"properties":{"rotation":"1"},"id":6035},{"properties":{"rotation":"2"},"id":6036},{"properties":{"rotation":"3"},"id":6037},{"properties":{"rotation":"4"},"id":6038},{"properties":{"rotation":"5"},"id":6039},{"properties":{"rotation":"6"},"id":6040},{"properties":{"rotation":"7"},"id":6041},{"properties":{"rotation":"8"},"id":6042},{"properties":{"rotation":"9"},"id":6043},{"properties":{"rotation":"10"},"id":6044},{"properties":{"rotation":"11"},"id":6045},{"properties":{"rotation":"12"},"id":6046},{"properties":{"rotation":"13"},"id":6047},{"properties":{"rotation":"14"},"id":6048},{"properties":{"rotation":"15"},"id":6049}]},"creeper_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6050},{"properties":{"facing":"south"},"id":6051},{"properties":{"facing":"west"},"id":6052},{"properties":{"facing":"east"},"id":6053}]},"dragon_head":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":6054},{"properties":{"rotation":"1"},"id":6055},{"properties":{"rotation":"2"},"id":6056},{"properties":{"rotation":"3"},"id":6057},{"properties":{"rotation":"4"},"id":6058},{"properties":{"rotation":"5"},"id":6059},{"properties":{"rotation":"6"},"id":6060},{"properties":{"rotation":"7"},"id":6061},{"properties":{"rotation":"8"},"id":6062},{"properties":{"rotation":"9"},"id":6063},{"properties":{"rotation":"10"},"id":6064},{"properties":{"rotation":"11"},"id":6065},{"properties":{"rotation":"12"},"id":6066},{"properties":{"rotation":"13"},"id":6067},{"properties":{"rotation":"14"},"id":6068},{"properties":{"rotation":"15"},"id":6069}]},"dragon_wall_head":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6070},{"properties":{"facing":"south"},"id":6071},{"properties":{"facing":"west"},"id":6072},{"properties":{"facing":"east"},"id":6073}]},"anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6074},{"properties":{"facing":"south"},"id":6075},{"properties":{"facing":"west"},"id":6076},{"properties":{"facing":"east"},"id":6077}]},"chipped_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6078},{"properties":{"facing":"south"},"id":6079},{"properties":{"facing":"west"},"id":6080},{"properties":{"facing":"east"},"id":6081}]},"damaged_anvil":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":6082},{"properties":{"facing":"south"},"id":6083},{"properties":{"facing":"west"},"id":6084},{"properties":{"facing":"east"},"id":6085}]},"trapped_chest":{"properties":{"facing":["north","south","west","east"],"type":["single","left","right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","type":"single","waterlogged":"true"},"id":6086},{"properties":{"facing":"north","type":"single","waterlogged":"false"},"id":6087},{"properties":{"facing":"north","type":"left","waterlogged":"true"},"id":6088},{"properties":{"facing":"north","type":"left","waterlogged":"false"},"id":6089},{"properties":{"facing":"north","type":"right","waterlogged":"true"},"id":6090},{"properties":{"facing":"north","type":"right","waterlogged":"false"},"id":6091},{"properties":{"facing":"south","type":"single","waterlogged":"true"},"id":6092},{"properties":{"facing":"south","type":"single","waterlogged":"false"},"id":6093},{"properties":{"facing":"south","type":"left","waterlogged":"true"},"id":6094},{"properties":{"facing":"south","type":"left","waterlogged":"false"},"id":6095},{"properties":{"facing":"south","type":"right","waterlogged":"true"},"id":6096},{"properties":{"facing":"south","type":"right","waterlogged":"false"},"id":6097},{"properties":{"facing":"west","type":"single","waterlogged":"true"},"id":6098},{"properties":{"facing":"west","type":"single","waterlogged":"false"},"id":6099},{"properties":{"facing":"west","type":"left","waterlogged":"true"},"id":6100},{"properties":{"facing":"west","type":"left","waterlogged":"false"},"id":6101},{"properties":{"facing":"west","type":"right","waterlogged":"true"},"id":6102},{"properties":{"facing":"west","type":"right","waterlogged":"false"},"id":6103},{"properties":{"facing":"east","type":"single","waterlogged":"true"},"id":6104},{"properties":{"facing":"east","type":"single","waterlogged":"false"},"id":6105},{"properties":{"facing":"east","type":"left","waterlogged":"true"},"id":6106},{"properties":{"facing":"east","type":"left","waterlogged":"false"},"id":6107},{"properties":{"facing":"east","type":"right","waterlogged":"true"},"id":6108},{"properties":{"facing":"east","type":"right","waterlogged":"false"},"id":6109}]},"light_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":6110},{"properties":{"power":"1"},"id":6111},{"properties":{"power":"2"},"id":6112},{"properties":{"power":"3"},"id":6113},{"properties":{"power":"4"},"id":6114},{"properties":{"power":"5"},"id":6115},{"properties":{"power":"6"},"id":6116},{"properties":{"power":"7"},"id":6117},{"properties":{"power":"8"},"id":6118},{"properties":{"power":"9"},"id":6119},{"properties":{"power":"10"},"id":6120},{"properties":{"power":"11"},"id":6121},{"properties":{"power":"12"},"id":6122},{"properties":{"power":"13"},"id":6123},{"properties":{"power":"14"},"id":6124},{"properties":{"power":"15"},"id":6125}]},"heavy_weighted_pressure_plate":{"properties":{"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"power":"0"},"id":6126},{"properties":{"power":"1"},"id":6127},{"properties":{"power":"2"},"id":6128},{"properties":{"power":"3"},"id":6129},{"properties":{"power":"4"},"id":6130},{"properties":{"power":"5"},"id":6131},{"properties":{"power":"6"},"id":6132},{"properties":{"power":"7"},"id":6133},{"properties":{"power":"8"},"id":6134},{"properties":{"power":"9"},"id":6135},{"properties":{"power":"10"},"id":6136},{"properties":{"power":"11"},"id":6137},{"properties":{"power":"12"},"id":6138},{"properties":{"power":"13"},"id":6139},{"properties":{"power":"14"},"id":6140},{"properties":{"power":"15"},"id":6141}]},"comparator":{"properties":{"facing":["north","south","west","east"],"mode":["compare","subtract"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","mode":"compare","powered":"true"},"id":6142},{"properties":{"facing":"north","mode":"compare","powered":"false"},"id":6143},{"properties":{"facing":"north","mode":"subtract","powered":"true"},"id":6144},{"properties":{"facing":"north","mode":"subtract","powered":"false"},"id":6145},{"properties":{"facing":"south","mode":"compare","powered":"true"},"id":6146},{"properties":{"facing":"south","mode":"compare","powered":"false"},"id":6147},{"properties":{"facing":"south","mode":"subtract","powered":"true"},"id":6148},{"properties":{"facing":"south","mode":"subtract","powered":"false"},"id":6149},{"properties":{"facing":"west","mode":"compare","powered":"true"},"id":6150},{"properties":{"facing":"west","mode":"compare","powered":"false"},"id":6151},{"properties":{"facing":"west","mode":"subtract","powered":"true"},"id":6152},{"properties":{"facing":"west","mode":"subtract","powered":"false"},"id":6153},{"properties":{"facing":"east","mode":"compare","powered":"true"},"id":6154},{"properties":{"facing":"east","mode":"compare","powered":"false"},"id":6155},{"properties":{"facing":"east","mode":"subtract","powered":"true"},"id":6156},{"properties":{"facing":"east","mode":"subtract","powered":"false"},"id":6157}]},"daylight_detector":{"properties":{"inverted":["true","false"],"power":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"inverted":"true","power":"0"},"id":6158},{"properties":{"inverted":"true","power":"1"},"id":6159},{"properties":{"inverted":"true","power":"2"},"id":6160},{"properties":{"inverted":"true","power":"3"},"id":6161},{"properties":{"inverted":"true","power":"4"},"id":6162},{"properties":{"inverted":"true","power":"5"},"id":6163},{"properties":{"inverted":"true","power":"6"},"id":6164},{"properties":{"inverted":"true","power":"7"},"id":6165},{"properties":{"inverted":"true","power":"8"},"id":6166},{"properties":{"inverted":"true","power":"9"},"id":6167},{"properties":{"inverted":"true","power":"10"},"id":6168},{"properties":{"inverted":"true","power":"11"},"id":6169},{"properties":{"inverted":"true","power":"12"},"id":6170},{"properties":{"inverted":"true","power":"13"},"id":6171},{"properties":{"inverted":"true","power":"14"},"id":6172},{"properties":{"inverted":"true","power":"15"},"id":6173},{"properties":{"inverted":"false","power":"0"},"id":6174},{"properties":{"inverted":"false","power":"1"},"id":6175},{"properties":{"inverted":"false","power":"2"},"id":6176},{"properties":{"inverted":"false","power":"3"},"id":6177},{"properties":{"inverted":"false","power":"4"},"id":6178},{"properties":{"inverted":"false","power":"5"},"id":6179},{"properties":{"inverted":"false","power":"6"},"id":6180},{"properties":{"inverted":"false","power":"7"},"id":6181},{"properties":{"inverted":"false","power":"8"},"id":6182},{"properties":{"inverted":"false","power":"9"},"id":6183},{"properties":{"inverted":"false","power":"10"},"id":6184},{"properties":{"inverted":"false","power":"11"},"id":6185},{"properties":{"inverted":"false","power":"12"},"id":6186},{"properties":{"inverted":"false","power":"13"},"id":6187},{"properties":{"inverted":"false","power":"14"},"id":6188},{"properties":{"inverted":"false","power":"15"},"id":6189}]},"redstone_block":{"states":[{"id":6190}]},"nether_quartz_ore":{"states":[{"id":6191}]},"hopper":{"properties":{"enabled":["true","false"],"facing":["down","north","south","west","east"]},"states":[{"properties":{"enabled":"true","facing":"down"},"id":6192},{"properties":{"enabled":"true","facing":"north"},"id":6193},{"properties":{"enabled":"true","facing":"south"},"id":6194},{"properties":{"enabled":"true","facing":"west"},"id":6195},{"properties":{"enabled":"true","facing":"east"},"id":6196},{"properties":{"enabled":"false","facing":"down"},"id":6197},{"properties":{"enabled":"false","facing":"north"},"id":6198},{"properties":{"enabled":"false","facing":"south"},"id":6199},{"properties":{"enabled":"false","facing":"west"},"id":6200},{"properties":{"enabled":"false","facing":"east"},"id":6201}]},"quartz_block":{"states":[{"id":6202}]},"chiseled_quartz_block":{"states":[{"id":6203}]},"quartz_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":6204},{"properties":{"axis":"y"},"id":6205},{"properties":{"axis":"z"},"id":6206}]},"quartz_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6207},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6208},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6209},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6210},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6211},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6212},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6213},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6214},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6215},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6216},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6217},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6218},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6219},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6220},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6221},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6222},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6223},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6224},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6225},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6226},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6227},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6228},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6229},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6230},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6231},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6232},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6233},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6234},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6235},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6236},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6237},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6238},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6239},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6240},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6241},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6242},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6243},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6244},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6245},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6246},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6247},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6248},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6249},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6250},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6251},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6252},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6253},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6254},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6255},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6256},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6257},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6258},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6259},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6260},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6261},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6262},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6263},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6264},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6265},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6266},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6267},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6268},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6269},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6270},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6271},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6272},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6273},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6274},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6275},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6276},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6277},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6278},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6279},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6280},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6281},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6282},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6283},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6284},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6285},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6286}]},"activator_rail":{"properties":{"powered":["true","false"],"shape":["north_south","east_west","ascending_east","ascending_west","ascending_north","ascending_south"]},"states":[{"properties":{"powered":"true","shape":"north_south"},"id":6287},{"properties":{"powered":"true","shape":"east_west"},"id":6288},{"properties":{"powered":"true","shape":"ascending_east"},"id":6289},{"properties":{"powered":"true","shape":"ascending_west"},"id":6290},{"properties":{"powered":"true","shape":"ascending_north"},"id":6291},{"properties":{"powered":"true","shape":"ascending_south"},"id":6292},{"properties":{"powered":"false","shape":"north_south"},"id":6293},{"properties":{"powered":"false","shape":"east_west"},"id":6294},{"properties":{"powered":"false","shape":"ascending_east"},"id":6295},{"properties":{"powered":"false","shape":"ascending_west"},"id":6296},{"properties":{"powered":"false","shape":"ascending_north"},"id":6297},{"properties":{"powered":"false","shape":"ascending_south"},"id":6298}]},"dropper":{"properties":{"facing":["north","east","south","west","up","down"],"triggered":["true","false"]},"states":[{"properties":{"facing":"north","triggered":"true"},"id":6299},{"properties":{"facing":"north","triggered":"false"},"id":6300},{"properties":{"facing":"east","triggered":"true"},"id":6301},{"properties":{"facing":"east","triggered":"false"},"id":6302},{"properties":{"facing":"south","triggered":"true"},"id":6303},{"properties":{"facing":"south","triggered":"false"},"id":6304},{"properties":{"facing":"west","triggered":"true"},"id":6305},{"properties":{"facing":"west","triggered":"false"},"id":6306},{"properties":{"facing":"up","triggered":"true"},"id":6307},{"properties":{"facing":"up","triggered":"false"},"id":6308},{"properties":{"facing":"down","triggered":"true"},"id":6309},{"properties":{"facing":"down","triggered":"false"},"id":6310}]},"white_terracotta":{"states":[{"id":6311}]},"orange_terracotta":{"states":[{"id":6312}]},"magenta_terracotta":{"states":[{"id":6313}]},"light_blue_terracotta":{"states":[{"id":6314}]},"yellow_terracotta":{"states":[{"id":6315}]},"lime_terracotta":{"states":[{"id":6316}]},"pink_terracotta":{"states":[{"id":6317}]},"gray_terracotta":{"states":[{"id":6318}]},"light_gray_terracotta":{"states":[{"id":6319}]},"cyan_terracotta":{"states":[{"id":6320}]},"purple_terracotta":{"states":[{"id":6321}]},"blue_terracotta":{"states":[{"id":6322}]},"brown_terracotta":{"states":[{"id":6323}]},"green_terracotta":{"states":[{"id":6324}]},"red_terracotta":{"states":[{"id":6325}]},"black_terracotta":{"states":[{"id":6326}]},"white_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6327},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6328},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6329},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6330},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6331},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6332},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6333},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6334},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6335},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6336},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6337},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6338},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6339},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6340},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6341},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6342},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6343},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6344},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6345},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6346},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6347},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6348},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6349},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6350},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6351},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6352},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6353},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6354},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6355},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6356},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6357},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6358}]},"orange_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6359},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6360},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6361},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6362},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6363},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6364},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6365},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6366},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6367},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6368},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6369},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6370},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6371},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6372},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6373},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6374},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6375},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6376},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6377},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6378},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6379},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6380},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6381},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6382},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6383},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6384},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6385},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6386},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6387},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6388},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6389},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6390}]},"magenta_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6391},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6392},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6393},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6394},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6395},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6396},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6397},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6398},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6399},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6400},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6401},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6402},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6403},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6404},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6405},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6406},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6407},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6408},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6409},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6410},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6411},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6412},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6413},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6414},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6415},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6416},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6417},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6418},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6419},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6420},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6421},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6422}]},"light_blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6423},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6424},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6425},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6426},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6427},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6428},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6429},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6430},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6431},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6432},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6433},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6434},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6435},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6436},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6437},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6438},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6439},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6440},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6441},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6442},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6443},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6444},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6445},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6446},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6447},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6448},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6449},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6450},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6451},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6452},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6453},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6454}]},"yellow_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6455},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6456},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6457},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6458},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6459},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6460},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6461},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6462},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6463},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6464},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6465},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6466},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6467},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6468},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6469},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6470},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6471},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6472},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6473},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6474},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6475},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6476},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6477},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6478},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6479},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6480},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6481},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6482},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6483},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6484},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6485},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6486}]},"lime_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6487},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6488},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6489},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6490},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6491},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6492},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6493},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6494},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6495},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6496},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6497},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6498},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6499},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6500},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6501},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6502},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6503},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6504},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6505},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6506},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6507},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6508},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6509},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6510},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6511},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6512},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6513},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6514},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6515},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6516},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6517},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6518}]},"pink_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6519},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6520},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6521},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6522},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6523},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6524},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6525},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6526},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6527},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6528},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6529},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6530},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6531},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6532},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6533},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6534},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6535},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6536},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6537},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6538},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6539},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6540},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6541},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6542},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6543},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6544},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6545},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6546},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6547},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6548},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6549},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6550}]},"gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6551},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6552},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6553},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6554},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6555},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6556},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6557},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6558},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6559},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6560},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6561},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6562},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6563},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6564},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6565},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6566},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6567},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6568},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6569},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6570},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6571},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6572},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6573},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6574},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6575},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6576},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6577},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6578},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6579},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6580},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6581},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6582}]},"light_gray_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6583},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6584},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6585},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6586},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6587},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6588},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6589},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6590},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6591},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6592},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6593},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6594},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6595},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6596},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6597},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6598},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6599},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6600},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6601},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6602},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6603},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6604},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6605},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6606},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6607},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6608},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6609},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6610},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6611},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6612},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6613},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6614}]},"cyan_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6615},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6616},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6617},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6618},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6619},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6620},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6621},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6622},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6623},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6624},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6625},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6626},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6627},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6628},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6629},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6630},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6631},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6632},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6633},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6634},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6635},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6636},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6637},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6638},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6639},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6640},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6641},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6642},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6643},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6644},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6645},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6646}]},"purple_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6647},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6648},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6649},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6650},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6651},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6652},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6653},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6654},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6655},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6656},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6657},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6658},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6659},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6660},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6661},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6662},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6663},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6664},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6665},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6666},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6667},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6668},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6669},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6670},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6671},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6672},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6673},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6674},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6675},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6676},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6677},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6678}]},"blue_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6679},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6680},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6681},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6682},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6683},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6684},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6685},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6686},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6687},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6688},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6689},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6690},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6691},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6692},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6693},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6694},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6695},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6696},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6697},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6698},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6699},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6700},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6701},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6702},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6703},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6704},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6705},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6706},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6707},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6708},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6709},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6710}]},"brown_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6711},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6712},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6713},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6714},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6715},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6716},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6717},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6718},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6719},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6720},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6721},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6722},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6723},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6724},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6725},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6726},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6727},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6728},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6729},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6730},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6731},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6732},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6733},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6734},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6735},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6736},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6737},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6738},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6739},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6740},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6741},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6742}]},"green_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6743},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6744},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6745},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6746},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6747},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6748},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6749},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6750},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6751},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6752},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6753},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6754},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6755},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6756},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6757},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6758},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6759},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6760},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6761},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6762},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6763},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6764},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6765},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6766},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6767},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6768},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6769},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6770},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6771},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6772},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6773},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6774}]},"red_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6775},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6776},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6777},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6778},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6779},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6780},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6781},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6782},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6783},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6784},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6785},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6786},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6787},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6788},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6789},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6790},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6791},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6792},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6793},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6794},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6795},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6796},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6797},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6798},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6799},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6800},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6801},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6802},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6803},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6804},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6805},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6806}]},"black_stained_glass_pane":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6807},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6808},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6809},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6810},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6811},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6812},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6813},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6814},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6815},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6816},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6817},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6818},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6819},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6820},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6821},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6822},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":6823},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":6824},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":6825},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":6826},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":6827},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":6828},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":6829},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":6830},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":6831},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":6832},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":6833},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":6834},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":6835},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":6836},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":6837},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":6838}]},"acacia_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6839},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6840},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6841},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6842},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6843},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6844},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6845},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6846},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6847},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6848},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6849},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6850},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6851},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6852},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6853},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6854},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6855},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6856},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6857},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6858},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6859},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6860},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6861},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6862},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6863},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6864},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6865},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6866},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6867},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6868},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6869},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6870},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6871},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6872},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6873},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6874},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6875},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6876},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6877},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6878},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6879},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6880},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6881},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6882},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6883},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6884},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6885},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6886},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6887},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6888},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6889},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6890},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6891},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6892},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6893},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6894},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6895},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6896},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6897},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6898},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6899},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6900},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6901},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6902},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6903},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6904},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6905},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6906},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6907},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6908},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6909},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6910},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6911},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6912},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6913},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6914},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6915},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6916},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6917},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6918}]},"dark_oak_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":6919},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":6920},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":6921},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":6922},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":6923},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":6924},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":6925},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":6926},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":6927},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":6928},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":6929},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":6930},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6931},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6932},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6933},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6934},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6935},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6936},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6937},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6938},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":6939},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":6940},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":6941},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":6942},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":6943},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":6944},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":6945},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":6946},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":6947},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":6948},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":6949},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":6950},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6951},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6952},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6953},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6954},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6955},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6956},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6957},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6958},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":6959},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":6960},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":6961},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":6962},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":6963},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":6964},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":6965},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":6966},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":6967},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":6968},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":6969},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":6970},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6971},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6972},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6973},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6974},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6975},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6976},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6977},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6978},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":6979},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":6980},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":6981},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":6982},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":6983},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":6984},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":6985},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":6986},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":6987},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":6988},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":6989},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":6990},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":6991},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":6992},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":6993},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":6994},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":6995},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":6996},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":6997},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":6998}]},"slime_block":{"states":[{"id":6999}]},"barrier":{"states":[{"id":7000}]},"iron_trapdoor":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"open":["true","false"],"powered":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7001},{"properties":{"facing":"north","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7002},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7003},{"properties":{"facing":"north","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7004},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7005},{"properties":{"facing":"north","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7006},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7007},{"properties":{"facing":"north","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7008},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7009},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7010},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7011},{"properties":{"facing":"north","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7012},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7013},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7014},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7015},{"properties":{"facing":"north","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7016},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7017},{"properties":{"facing":"south","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7018},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7019},{"properties":{"facing":"south","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7020},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7021},{"properties":{"facing":"south","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7022},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7023},{"properties":{"facing":"south","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7024},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7025},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7026},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7027},{"properties":{"facing":"south","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7028},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7029},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7030},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7031},{"properties":{"facing":"south","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7032},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7033},{"properties":{"facing":"west","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7034},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7035},{"properties":{"facing":"west","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7036},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7037},{"properties":{"facing":"west","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7038},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7039},{"properties":{"facing":"west","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7040},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7041},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7042},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7043},{"properties":{"facing":"west","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7044},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7045},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7046},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7047},{"properties":{"facing":"west","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7048},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"true"},"id":7049},{"properties":{"facing":"east","half":"top","open":"true","powered":"true","waterlogged":"false"},"id":7050},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"true"},"id":7051},{"properties":{"facing":"east","half":"top","open":"true","powered":"false","waterlogged":"false"},"id":7052},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"true"},"id":7053},{"properties":{"facing":"east","half":"top","open":"false","powered":"true","waterlogged":"false"},"id":7054},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"true"},"id":7055},{"properties":{"facing":"east","half":"top","open":"false","powered":"false","waterlogged":"false"},"id":7056},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"true"},"id":7057},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"true","waterlogged":"false"},"id":7058},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"true"},"id":7059},{"properties":{"facing":"east","half":"bottom","open":"true","powered":"false","waterlogged":"false"},"id":7060},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"true"},"id":7061},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"true","waterlogged":"false"},"id":7062},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"true"},"id":7063},{"properties":{"facing":"east","half":"bottom","open":"false","powered":"false","waterlogged":"false"},"id":7064}]},"prismarine":{"states":[{"id":7065}]},"prismarine_bricks":{"states":[{"id":7066}]},"dark_prismarine":{"states":[{"id":7067}]},"prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7068},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7069},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7070},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7071},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7072},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7073},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7074},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7075},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7076},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7077},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7078},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7079},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7080},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7081},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7082},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7083},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7084},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7085},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7086},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7087},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7088},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7089},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7090},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7091},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7092},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7093},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7094},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7095},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7096},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7097},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7098},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7099},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7100},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7101},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7102},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7103},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7104},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7105},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7106},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7107},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7108},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7109},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7110},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7111},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7112},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7113},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7114},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7115},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7116},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7117},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7118},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7119},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7120},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7121},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7122},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7123},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7124},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7125},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7126},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7127},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7128},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7129},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7130},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7131},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7132},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7133},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7134},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7135},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7136},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7137},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7138},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7139},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7140},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7141},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7142},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7143},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7144},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7145},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7146},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7147}]},"prismarine_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7148},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7149},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7150},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7151},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7152},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7153},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7154},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7155},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7156},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7157},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7158},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7159},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7160},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7161},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7162},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7163},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7164},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7165},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7166},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7167},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7168},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7169},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7170},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7171},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7172},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7173},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7174},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7175},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7176},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7177},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7178},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7179},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7180},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7181},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7182},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7183},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7184},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7185},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7186},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7187},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7188},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7189},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7190},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7191},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7192},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7193},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7194},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7195},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7196},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7197},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7198},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7199},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7200},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7201},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7202},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7203},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7204},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7205},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7206},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7207},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7208},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7209},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7210},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7211},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7212},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7213},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7214},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7215},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7216},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7217},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7218},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7219},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7220},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7221},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7222},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7223},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7224},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7225},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7226},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7227}]},"dark_prismarine_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7228},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7229},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7230},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7231},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7232},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7233},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7234},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7235},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7236},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7237},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7238},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7239},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7240},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7241},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7242},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7243},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7244},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7245},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7246},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7247},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7248},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7249},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7250},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7251},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7252},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7253},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7254},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7255},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7256},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7257},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7258},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7259},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7260},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7261},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7262},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7263},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7264},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7265},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7266},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7267},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7268},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7269},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7270},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7271},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7272},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7273},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7274},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7275},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7276},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7277},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7278},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7279},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7280},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7281},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7282},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7283},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7284},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7285},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7286},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7287},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7288},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7289},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7290},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7291},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7292},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7293},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7294},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7295},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7296},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7297},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7298},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7299},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7300},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7301},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7302},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7303},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7304},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7305},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7306},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7307}]},"prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7308},{"properties":{"type":"top","waterlogged":"false"},"id":7309},{"properties":{"type":"bottom","waterlogged":"true"},"id":7310},{"properties":{"type":"bottom","waterlogged":"false"},"id":7311},{"properties":{"type":"double","waterlogged":"true"},"id":7312},{"properties":{"type":"double","waterlogged":"false"},"id":7313}]},"prismarine_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7314},{"properties":{"type":"top","waterlogged":"false"},"id":7315},{"properties":{"type":"bottom","waterlogged":"true"},"id":7316},{"properties":{"type":"bottom","waterlogged":"false"},"id":7317},{"properties":{"type":"double","waterlogged":"true"},"id":7318},{"properties":{"type":"double","waterlogged":"false"},"id":7319}]},"dark_prismarine_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7320},{"properties":{"type":"top","waterlogged":"false"},"id":7321},{"properties":{"type":"bottom","waterlogged":"true"},"id":7322},{"properties":{"type":"bottom","waterlogged":"false"},"id":7323},{"properties":{"type":"double","waterlogged":"true"},"id":7324},{"properties":{"type":"double","waterlogged":"false"},"id":7325}]},"sea_lantern":{"states":[{"id":7326}]},"hay_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":7327},{"properties":{"axis":"y"},"id":7328},{"properties":{"axis":"z"},"id":7329}]},"white_carpet":{"states":[{"id":7330}]},"orange_carpet":{"states":[{"id":7331}]},"magenta_carpet":{"states":[{"id":7332}]},"light_blue_carpet":{"states":[{"id":7333}]},"yellow_carpet":{"states":[{"id":7334}]},"lime_carpet":{"states":[{"id":7335}]},"pink_carpet":{"states":[{"id":7336}]},"gray_carpet":{"states":[{"id":7337}]},"light_gray_carpet":{"states":[{"id":7338}]},"cyan_carpet":{"states":[{"id":7339}]},"purple_carpet":{"states":[{"id":7340}]},"blue_carpet":{"states":[{"id":7341}]},"brown_carpet":{"states":[{"id":7342}]},"green_carpet":{"states":[{"id":7343}]},"red_carpet":{"states":[{"id":7344}]},"black_carpet":{"states":[{"id":7345}]},"terracotta":{"states":[{"id":7346}]},"coal_block":{"states":[{"id":7347}]},"packed_ice":{"states":[{"id":7348}]},"sunflower":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7349},{"properties":{"half":"lower"},"id":7350}]},"lilac":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7351},{"properties":{"half":"lower"},"id":7352}]},"rose_bush":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7353},{"properties":{"half":"lower"},"id":7354}]},"peony":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7355},{"properties":{"half":"lower"},"id":7356}]},"tall_grass":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7357},{"properties":{"half":"lower"},"id":7358}]},"large_fern":{"properties":{"half":["upper","lower"]},"states":[{"properties":{"half":"upper"},"id":7359},{"properties":{"half":"lower"},"id":7360}]},"white_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7361},{"properties":{"rotation":"1"},"id":7362},{"properties":{"rotation":"2"},"id":7363},{"properties":{"rotation":"3"},"id":7364},{"properties":{"rotation":"4"},"id":7365},{"properties":{"rotation":"5"},"id":7366},{"properties":{"rotation":"6"},"id":7367},{"properties":{"rotation":"7"},"id":7368},{"properties":{"rotation":"8"},"id":7369},{"properties":{"rotation":"9"},"id":7370},{"properties":{"rotation":"10"},"id":7371},{"properties":{"rotation":"11"},"id":7372},{"properties":{"rotation":"12"},"id":7373},{"properties":{"rotation":"13"},"id":7374},{"properties":{"rotation":"14"},"id":7375},{"properties":{"rotation":"15"},"id":7376}]},"orange_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7377},{"properties":{"rotation":"1"},"id":7378},{"properties":{"rotation":"2"},"id":7379},{"properties":{"rotation":"3"},"id":7380},{"properties":{"rotation":"4"},"id":7381},{"properties":{"rotation":"5"},"id":7382},{"properties":{"rotation":"6"},"id":7383},{"properties":{"rotation":"7"},"id":7384},{"properties":{"rotation":"8"},"id":7385},{"properties":{"rotation":"9"},"id":7386},{"properties":{"rotation":"10"},"id":7387},{"properties":{"rotation":"11"},"id":7388},{"properties":{"rotation":"12"},"id":7389},{"properties":{"rotation":"13"},"id":7390},{"properties":{"rotation":"14"},"id":7391},{"properties":{"rotation":"15"},"id":7392}]},"magenta_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7393},{"properties":{"rotation":"1"},"id":7394},{"properties":{"rotation":"2"},"id":7395},{"properties":{"rotation":"3"},"id":7396},{"properties":{"rotation":"4"},"id":7397},{"properties":{"rotation":"5"},"id":7398},{"properties":{"rotation":"6"},"id":7399},{"properties":{"rotation":"7"},"id":7400},{"properties":{"rotation":"8"},"id":7401},{"properties":{"rotation":"9"},"id":7402},{"properties":{"rotation":"10"},"id":7403},{"properties":{"rotation":"11"},"id":7404},{"properties":{"rotation":"12"},"id":7405},{"properties":{"rotation":"13"},"id":7406},{"properties":{"rotation":"14"},"id":7407},{"properties":{"rotation":"15"},"id":7408}]},"light_blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7409},{"properties":{"rotation":"1"},"id":7410},{"properties":{"rotation":"2"},"id":7411},{"properties":{"rotation":"3"},"id":7412},{"properties":{"rotation":"4"},"id":7413},{"properties":{"rotation":"5"},"id":7414},{"properties":{"rotation":"6"},"id":7415},{"properties":{"rotation":"7"},"id":7416},{"properties":{"rotation":"8"},"id":7417},{"properties":{"rotation":"9"},"id":7418},{"properties":{"rotation":"10"},"id":7419},{"properties":{"rotation":"11"},"id":7420},{"properties":{"rotation":"12"},"id":7421},{"properties":{"rotation":"13"},"id":7422},{"properties":{"rotation":"14"},"id":7423},{"properties":{"rotation":"15"},"id":7424}]},"yellow_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7425},{"properties":{"rotation":"1"},"id":7426},{"properties":{"rotation":"2"},"id":7427},{"properties":{"rotation":"3"},"id":7428},{"properties":{"rotation":"4"},"id":7429},{"properties":{"rotation":"5"},"id":7430},{"properties":{"rotation":"6"},"id":7431},{"properties":{"rotation":"7"},"id":7432},{"properties":{"rotation":"8"},"id":7433},{"properties":{"rotation":"9"},"id":7434},{"properties":{"rotation":"10"},"id":7435},{"properties":{"rotation":"11"},"id":7436},{"properties":{"rotation":"12"},"id":7437},{"properties":{"rotation":"13"},"id":7438},{"properties":{"rotation":"14"},"id":7439},{"properties":{"rotation":"15"},"id":7440}]},"lime_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7441},{"properties":{"rotation":"1"},"id":7442},{"properties":{"rotation":"2"},"id":7443},{"properties":{"rotation":"3"},"id":7444},{"properties":{"rotation":"4"},"id":7445},{"properties":{"rotation":"5"},"id":7446},{"properties":{"rotation":"6"},"id":7447},{"properties":{"rotation":"7"},"id":7448},{"properties":{"rotation":"8"},"id":7449},{"properties":{"rotation":"9"},"id":7450},{"properties":{"rotation":"10"},"id":7451},{"properties":{"rotation":"11"},"id":7452},{"properties":{"rotation":"12"},"id":7453},{"properties":{"rotation":"13"},"id":7454},{"properties":{"rotation":"14"},"id":7455},{"properties":{"rotation":"15"},"id":7456}]},"pink_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7457},{"properties":{"rotation":"1"},"id":7458},{"properties":{"rotation":"2"},"id":7459},{"properties":{"rotation":"3"},"id":7460},{"properties":{"rotation":"4"},"id":7461},{"properties":{"rotation":"5"},"id":7462},{"properties":{"rotation":"6"},"id":7463},{"properties":{"rotation":"7"},"id":7464},{"properties":{"rotation":"8"},"id":7465},{"properties":{"rotation":"9"},"id":7466},{"properties":{"rotation":"10"},"id":7467},{"properties":{"rotation":"11"},"id":7468},{"properties":{"rotation":"12"},"id":7469},{"properties":{"rotation":"13"},"id":7470},{"properties":{"rotation":"14"},"id":7471},{"properties":{"rotation":"15"},"id":7472}]},"gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7473},{"properties":{"rotation":"1"},"id":7474},{"properties":{"rotation":"2"},"id":7475},{"properties":{"rotation":"3"},"id":7476},{"properties":{"rotation":"4"},"id":7477},{"properties":{"rotation":"5"},"id":7478},{"properties":{"rotation":"6"},"id":7479},{"properties":{"rotation":"7"},"id":7480},{"properties":{"rotation":"8"},"id":7481},{"properties":{"rotation":"9"},"id":7482},{"properties":{"rotation":"10"},"id":7483},{"properties":{"rotation":"11"},"id":7484},{"properties":{"rotation":"12"},"id":7485},{"properties":{"rotation":"13"},"id":7486},{"properties":{"rotation":"14"},"id":7487},{"properties":{"rotation":"15"},"id":7488}]},"light_gray_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7489},{"properties":{"rotation":"1"},"id":7490},{"properties":{"rotation":"2"},"id":7491},{"properties":{"rotation":"3"},"id":7492},{"properties":{"rotation":"4"},"id":7493},{"properties":{"rotation":"5"},"id":7494},{"properties":{"rotation":"6"},"id":7495},{"properties":{"rotation":"7"},"id":7496},{"properties":{"rotation":"8"},"id":7497},{"properties":{"rotation":"9"},"id":7498},{"properties":{"rotation":"10"},"id":7499},{"properties":{"rotation":"11"},"id":7500},{"properties":{"rotation":"12"},"id":7501},{"properties":{"rotation":"13"},"id":7502},{"properties":{"rotation":"14"},"id":7503},{"properties":{"rotation":"15"},"id":7504}]},"cyan_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7505},{"properties":{"rotation":"1"},"id":7506},{"properties":{"rotation":"2"},"id":7507},{"properties":{"rotation":"3"},"id":7508},{"properties":{"rotation":"4"},"id":7509},{"properties":{"rotation":"5"},"id":7510},{"properties":{"rotation":"6"},"id":7511},{"properties":{"rotation":"7"},"id":7512},{"properties":{"rotation":"8"},"id":7513},{"properties":{"rotation":"9"},"id":7514},{"properties":{"rotation":"10"},"id":7515},{"properties":{"rotation":"11"},"id":7516},{"properties":{"rotation":"12"},"id":7517},{"properties":{"rotation":"13"},"id":7518},{"properties":{"rotation":"14"},"id":7519},{"properties":{"rotation":"15"},"id":7520}]},"purple_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7521},{"properties":{"rotation":"1"},"id":7522},{"properties":{"rotation":"2"},"id":7523},{"properties":{"rotation":"3"},"id":7524},{"properties":{"rotation":"4"},"id":7525},{"properties":{"rotation":"5"},"id":7526},{"properties":{"rotation":"6"},"id":7527},{"properties":{"rotation":"7"},"id":7528},{"properties":{"rotation":"8"},"id":7529},{"properties":{"rotation":"9"},"id":7530},{"properties":{"rotation":"10"},"id":7531},{"properties":{"rotation":"11"},"id":7532},{"properties":{"rotation":"12"},"id":7533},{"properties":{"rotation":"13"},"id":7534},{"properties":{"rotation":"14"},"id":7535},{"properties":{"rotation":"15"},"id":7536}]},"blue_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7537},{"properties":{"rotation":"1"},"id":7538},{"properties":{"rotation":"2"},"id":7539},{"properties":{"rotation":"3"},"id":7540},{"properties":{"rotation":"4"},"id":7541},{"properties":{"rotation":"5"},"id":7542},{"properties":{"rotation":"6"},"id":7543},{"properties":{"rotation":"7"},"id":7544},{"properties":{"rotation":"8"},"id":7545},{"properties":{"rotation":"9"},"id":7546},{"properties":{"rotation":"10"},"id":7547},{"properties":{"rotation":"11"},"id":7548},{"properties":{"rotation":"12"},"id":7549},{"properties":{"rotation":"13"},"id":7550},{"properties":{"rotation":"14"},"id":7551},{"properties":{"rotation":"15"},"id":7552}]},"brown_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7553},{"properties":{"rotation":"1"},"id":7554},{"properties":{"rotation":"2"},"id":7555},{"properties":{"rotation":"3"},"id":7556},{"properties":{"rotation":"4"},"id":7557},{"properties":{"rotation":"5"},"id":7558},{"properties":{"rotation":"6"},"id":7559},{"properties":{"rotation":"7"},"id":7560},{"properties":{"rotation":"8"},"id":7561},{"properties":{"rotation":"9"},"id":7562},{"properties":{"rotation":"10"},"id":7563},{"properties":{"rotation":"11"},"id":7564},{"properties":{"rotation":"12"},"id":7565},{"properties":{"rotation":"13"},"id":7566},{"properties":{"rotation":"14"},"id":7567},{"properties":{"rotation":"15"},"id":7568}]},"green_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7569},{"properties":{"rotation":"1"},"id":7570},{"properties":{"rotation":"2"},"id":7571},{"properties":{"rotation":"3"},"id":7572},{"properties":{"rotation":"4"},"id":7573},{"properties":{"rotation":"5"},"id":7574},{"properties":{"rotation":"6"},"id":7575},{"properties":{"rotation":"7"},"id":7576},{"properties":{"rotation":"8"},"id":7577},{"properties":{"rotation":"9"},"id":7578},{"properties":{"rotation":"10"},"id":7579},{"properties":{"rotation":"11"},"id":7580},{"properties":{"rotation":"12"},"id":7581},{"properties":{"rotation":"13"},"id":7582},{"properties":{"rotation":"14"},"id":7583},{"properties":{"rotation":"15"},"id":7584}]},"red_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7585},{"properties":{"rotation":"1"},"id":7586},{"properties":{"rotation":"2"},"id":7587},{"properties":{"rotation":"3"},"id":7588},{"properties":{"rotation":"4"},"id":7589},{"properties":{"rotation":"5"},"id":7590},{"properties":{"rotation":"6"},"id":7591},{"properties":{"rotation":"7"},"id":7592},{"properties":{"rotation":"8"},"id":7593},{"properties":{"rotation":"9"},"id":7594},{"properties":{"rotation":"10"},"id":7595},{"properties":{"rotation":"11"},"id":7596},{"properties":{"rotation":"12"},"id":7597},{"properties":{"rotation":"13"},"id":7598},{"properties":{"rotation":"14"},"id":7599},{"properties":{"rotation":"15"},"id":7600}]},"black_banner":{"properties":{"rotation":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"]},"states":[{"properties":{"rotation":"0"},"id":7601},{"properties":{"rotation":"1"},"id":7602},{"properties":{"rotation":"2"},"id":7603},{"properties":{"rotation":"3"},"id":7604},{"properties":{"rotation":"4"},"id":7605},{"properties":{"rotation":"5"},"id":7606},{"properties":{"rotation":"6"},"id":7607},{"properties":{"rotation":"7"},"id":7608},{"properties":{"rotation":"8"},"id":7609},{"properties":{"rotation":"9"},"id":7610},{"properties":{"rotation":"10"},"id":7611},{"properties":{"rotation":"11"},"id":7612},{"properties":{"rotation":"12"},"id":7613},{"properties":{"rotation":"13"},"id":7614},{"properties":{"rotation":"14"},"id":7615},{"properties":{"rotation":"15"},"id":7616}]},"white_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7617},{"properties":{"facing":"south"},"id":7618},{"properties":{"facing":"west"},"id":7619},{"properties":{"facing":"east"},"id":7620}]},"orange_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7621},{"properties":{"facing":"south"},"id":7622},{"properties":{"facing":"west"},"id":7623},{"properties":{"facing":"east"},"id":7624}]},"magenta_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7625},{"properties":{"facing":"south"},"id":7626},{"properties":{"facing":"west"},"id":7627},{"properties":{"facing":"east"},"id":7628}]},"light_blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7629},{"properties":{"facing":"south"},"id":7630},{"properties":{"facing":"west"},"id":7631},{"properties":{"facing":"east"},"id":7632}]},"yellow_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7633},{"properties":{"facing":"south"},"id":7634},{"properties":{"facing":"west"},"id":7635},{"properties":{"facing":"east"},"id":7636}]},"lime_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7637},{"properties":{"facing":"south"},"id":7638},{"properties":{"facing":"west"},"id":7639},{"properties":{"facing":"east"},"id":7640}]},"pink_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7641},{"properties":{"facing":"south"},"id":7642},{"properties":{"facing":"west"},"id":7643},{"properties":{"facing":"east"},"id":7644}]},"gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7645},{"properties":{"facing":"south"},"id":7646},{"properties":{"facing":"west"},"id":7647},{"properties":{"facing":"east"},"id":7648}]},"light_gray_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7649},{"properties":{"facing":"south"},"id":7650},{"properties":{"facing":"west"},"id":7651},{"properties":{"facing":"east"},"id":7652}]},"cyan_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7653},{"properties":{"facing":"south"},"id":7654},{"properties":{"facing":"west"},"id":7655},{"properties":{"facing":"east"},"id":7656}]},"purple_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7657},{"properties":{"facing":"south"},"id":7658},{"properties":{"facing":"west"},"id":7659},{"properties":{"facing":"east"},"id":7660}]},"blue_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7661},{"properties":{"facing":"south"},"id":7662},{"properties":{"facing":"west"},"id":7663},{"properties":{"facing":"east"},"id":7664}]},"brown_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7665},{"properties":{"facing":"south"},"id":7666},{"properties":{"facing":"west"},"id":7667},{"properties":{"facing":"east"},"id":7668}]},"green_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7669},{"properties":{"facing":"south"},"id":7670},{"properties":{"facing":"west"},"id":7671},{"properties":{"facing":"east"},"id":7672}]},"red_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7673},{"properties":{"facing":"south"},"id":7674},{"properties":{"facing":"west"},"id":7675},{"properties":{"facing":"east"},"id":7676}]},"black_wall_banner":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":7677},{"properties":{"facing":"south"},"id":7678},{"properties":{"facing":"west"},"id":7679},{"properties":{"facing":"east"},"id":7680}]},"red_sandstone":{"states":[{"id":7681}]},"chiseled_red_sandstone":{"states":[{"id":7682}]},"cut_red_sandstone":{"states":[{"id":7683}]},"red_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":7684},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":7685},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":7686},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":7687},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":7688},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":7689},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":7690},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":7691},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":7692},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":7693},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":7694},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":7695},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7696},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7697},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7698},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7699},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7700},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7701},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7702},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7703},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":7704},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":7705},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":7706},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":7707},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":7708},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":7709},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":7710},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":7711},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":7712},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":7713},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":7714},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":7715},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7716},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7717},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7718},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7719},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7720},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7721},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7722},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7723},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":7724},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":7725},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":7726},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":7727},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":7728},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":7729},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":7730},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":7731},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":7732},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":7733},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":7734},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":7735},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7736},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7737},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7738},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7739},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7740},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7741},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7742},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7743},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":7744},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":7745},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":7746},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":7747},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":7748},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":7749},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":7750},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":7751},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":7752},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":7753},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":7754},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":7755},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":7756},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":7757},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":7758},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":7759},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":7760},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":7761},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":7762},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":7763}]},"oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7764},{"properties":{"type":"top","waterlogged":"false"},"id":7765},{"properties":{"type":"bottom","waterlogged":"true"},"id":7766},{"properties":{"type":"bottom","waterlogged":"false"},"id":7767},{"properties":{"type":"double","waterlogged":"true"},"id":7768},{"properties":{"type":"double","waterlogged":"false"},"id":7769}]},"spruce_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7770},{"properties":{"type":"top","waterlogged":"false"},"id":7771},{"properties":{"type":"bottom","waterlogged":"true"},"id":7772},{"properties":{"type":"bottom","waterlogged":"false"},"id":7773},{"properties":{"type":"double","waterlogged":"true"},"id":7774},{"properties":{"type":"double","waterlogged":"false"},"id":7775}]},"birch_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7776},{"properties":{"type":"top","waterlogged":"false"},"id":7777},{"properties":{"type":"bottom","waterlogged":"true"},"id":7778},{"properties":{"type":"bottom","waterlogged":"false"},"id":7779},{"properties":{"type":"double","waterlogged":"true"},"id":7780},{"properties":{"type":"double","waterlogged":"false"},"id":7781}]},"jungle_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7782},{"properties":{"type":"top","waterlogged":"false"},"id":7783},{"properties":{"type":"bottom","waterlogged":"true"},"id":7784},{"properties":{"type":"bottom","waterlogged":"false"},"id":7785},{"properties":{"type":"double","waterlogged":"true"},"id":7786},{"properties":{"type":"double","waterlogged":"false"},"id":7787}]},"acacia_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7788},{"properties":{"type":"top","waterlogged":"false"},"id":7789},{"properties":{"type":"bottom","waterlogged":"true"},"id":7790},{"properties":{"type":"bottom","waterlogged":"false"},"id":7791},{"properties":{"type":"double","waterlogged":"true"},"id":7792},{"properties":{"type":"double","waterlogged":"false"},"id":7793}]},"dark_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7794},{"properties":{"type":"top","waterlogged":"false"},"id":7795},{"properties":{"type":"bottom","waterlogged":"true"},"id":7796},{"properties":{"type":"bottom","waterlogged":"false"},"id":7797},{"properties":{"type":"double","waterlogged":"true"},"id":7798},{"properties":{"type":"double","waterlogged":"false"},"id":7799}]},"stone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7800},{"properties":{"type":"top","waterlogged":"false"},"id":7801},{"properties":{"type":"bottom","waterlogged":"true"},"id":7802},{"properties":{"type":"bottom","waterlogged":"false"},"id":7803},{"properties":{"type":"double","waterlogged":"true"},"id":7804},{"properties":{"type":"double","waterlogged":"false"},"id":7805}]},"smooth_stone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7806},{"properties":{"type":"top","waterlogged":"false"},"id":7807},{"properties":{"type":"bottom","waterlogged":"true"},"id":7808},{"properties":{"type":"bottom","waterlogged":"false"},"id":7809},{"properties":{"type":"double","waterlogged":"true"},"id":7810},{"properties":{"type":"double","waterlogged":"false"},"id":7811}]},"sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7812},{"properties":{"type":"top","waterlogged":"false"},"id":7813},{"properties":{"type":"bottom","waterlogged":"true"},"id":7814},{"properties":{"type":"bottom","waterlogged":"false"},"id":7815},{"properties":{"type":"double","waterlogged":"true"},"id":7816},{"properties":{"type":"double","waterlogged":"false"},"id":7817}]},"cut_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7818},{"properties":{"type":"top","waterlogged":"false"},"id":7819},{"properties":{"type":"bottom","waterlogged":"true"},"id":7820},{"properties":{"type":"bottom","waterlogged":"false"},"id":7821},{"properties":{"type":"double","waterlogged":"true"},"id":7822},{"properties":{"type":"double","waterlogged":"false"},"id":7823}]},"petrified_oak_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7824},{"properties":{"type":"top","waterlogged":"false"},"id":7825},{"properties":{"type":"bottom","waterlogged":"true"},"id":7826},{"properties":{"type":"bottom","waterlogged":"false"},"id":7827},{"properties":{"type":"double","waterlogged":"true"},"id":7828},{"properties":{"type":"double","waterlogged":"false"},"id":7829}]},"cobblestone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7830},{"properties":{"type":"top","waterlogged":"false"},"id":7831},{"properties":{"type":"bottom","waterlogged":"true"},"id":7832},{"properties":{"type":"bottom","waterlogged":"false"},"id":7833},{"properties":{"type":"double","waterlogged":"true"},"id":7834},{"properties":{"type":"double","waterlogged":"false"},"id":7835}]},"brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7836},{"properties":{"type":"top","waterlogged":"false"},"id":7837},{"properties":{"type":"bottom","waterlogged":"true"},"id":7838},{"properties":{"type":"bottom","waterlogged":"false"},"id":7839},{"properties":{"type":"double","waterlogged":"true"},"id":7840},{"properties":{"type":"double","waterlogged":"false"},"id":7841}]},"stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7842},{"properties":{"type":"top","waterlogged":"false"},"id":7843},{"properties":{"type":"bottom","waterlogged":"true"},"id":7844},{"properties":{"type":"bottom","waterlogged":"false"},"id":7845},{"properties":{"type":"double","waterlogged":"true"},"id":7846},{"properties":{"type":"double","waterlogged":"false"},"id":7847}]},"nether_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7848},{"properties":{"type":"top","waterlogged":"false"},"id":7849},{"properties":{"type":"bottom","waterlogged":"true"},"id":7850},{"properties":{"type":"bottom","waterlogged":"false"},"id":7851},{"properties":{"type":"double","waterlogged":"true"},"id":7852},{"properties":{"type":"double","waterlogged":"false"},"id":7853}]},"quartz_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7854},{"properties":{"type":"top","waterlogged":"false"},"id":7855},{"properties":{"type":"bottom","waterlogged":"true"},"id":7856},{"properties":{"type":"bottom","waterlogged":"false"},"id":7857},{"properties":{"type":"double","waterlogged":"true"},"id":7858},{"properties":{"type":"double","waterlogged":"false"},"id":7859}]},"red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7860},{"properties":{"type":"top","waterlogged":"false"},"id":7861},{"properties":{"type":"bottom","waterlogged":"true"},"id":7862},{"properties":{"type":"bottom","waterlogged":"false"},"id":7863},{"properties":{"type":"double","waterlogged":"true"},"id":7864},{"properties":{"type":"double","waterlogged":"false"},"id":7865}]},"cut_red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7866},{"properties":{"type":"top","waterlogged":"false"},"id":7867},{"properties":{"type":"bottom","waterlogged":"true"},"id":7868},{"properties":{"type":"bottom","waterlogged":"false"},"id":7869},{"properties":{"type":"double","waterlogged":"true"},"id":7870},{"properties":{"type":"double","waterlogged":"false"},"id":7871}]},"purpur_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":7872},{"properties":{"type":"top","waterlogged":"false"},"id":7873},{"properties":{"type":"bottom","waterlogged":"true"},"id":7874},{"properties":{"type":"bottom","waterlogged":"false"},"id":7875},{"properties":{"type":"double","waterlogged":"true"},"id":7876},{"properties":{"type":"double","waterlogged":"false"},"id":7877}]},"smooth_stone":{"states":[{"id":7878}]},"smooth_sandstone":{"states":[{"id":7879}]},"smooth_quartz":{"states":[{"id":7880}]},"smooth_red_sandstone":{"states":[{"id":7881}]},"spruce_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7882},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7883},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7884},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7885},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7886},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7887},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7888},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7889},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7890},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7891},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7892},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7893},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7894},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7895},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7896},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7897},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7898},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7899},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7900},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7901},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7902},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7903},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7904},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7905},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7906},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7907},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7908},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7909},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7910},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7911},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7912},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7913}]},"birch_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7914},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7915},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7916},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7917},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7918},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7919},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7920},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7921},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7922},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7923},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7924},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7925},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7926},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7927},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7928},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7929},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7930},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7931},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7932},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7933},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7934},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7935},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7936},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7937},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7938},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7939},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7940},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7941},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7942},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7943},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7944},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7945}]},"jungle_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7946},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7947},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7948},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7949},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7950},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7951},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7952},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7953},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7954},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7955},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7956},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7957},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7958},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7959},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7960},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7961},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7962},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7963},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7964},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7965},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7966},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7967},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":7968},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":7969},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":7970},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":7971},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":7972},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":7973},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":7974},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":7975},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":7976},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":7977}]},"acacia_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":7978},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":7979},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":7980},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":7981},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":7982},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":7983},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":7984},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":7985},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":7986},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":7987},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":7988},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":7989},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":7990},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":7991},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":7992},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":7993},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":7994},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":7995},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":7996},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":7997},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":7998},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":7999},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":8000},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":8001},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":8002},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":8003},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":8004},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":8005},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":8006},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":8007},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":8008},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":8009}]},"dark_oak_fence_gate":{"properties":{"facing":["north","south","west","east"],"in_wall":["true","false"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"true"},"id":8010},{"properties":{"facing":"north","in_wall":"true","open":"true","powered":"false"},"id":8011},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"true"},"id":8012},{"properties":{"facing":"north","in_wall":"true","open":"false","powered":"false"},"id":8013},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"true"},"id":8014},{"properties":{"facing":"north","in_wall":"false","open":"true","powered":"false"},"id":8015},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"true"},"id":8016},{"properties":{"facing":"north","in_wall":"false","open":"false","powered":"false"},"id":8017},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"true"},"id":8018},{"properties":{"facing":"south","in_wall":"true","open":"true","powered":"false"},"id":8019},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"true"},"id":8020},{"properties":{"facing":"south","in_wall":"true","open":"false","powered":"false"},"id":8021},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"true"},"id":8022},{"properties":{"facing":"south","in_wall":"false","open":"true","powered":"false"},"id":8023},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"true"},"id":8024},{"properties":{"facing":"south","in_wall":"false","open":"false","powered":"false"},"id":8025},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"true"},"id":8026},{"properties":{"facing":"west","in_wall":"true","open":"true","powered":"false"},"id":8027},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"true"},"id":8028},{"properties":{"facing":"west","in_wall":"true","open":"false","powered":"false"},"id":8029},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"true"},"id":8030},{"properties":{"facing":"west","in_wall":"false","open":"true","powered":"false"},"id":8031},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"true"},"id":8032},{"properties":{"facing":"west","in_wall":"false","open":"false","powered":"false"},"id":8033},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"true"},"id":8034},{"properties":{"facing":"east","in_wall":"true","open":"true","powered":"false"},"id":8035},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"true"},"id":8036},{"properties":{"facing":"east","in_wall":"true","open":"false","powered":"false"},"id":8037},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"true"},"id":8038},{"properties":{"facing":"east","in_wall":"false","open":"true","powered":"false"},"id":8039},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"true"},"id":8040},{"properties":{"facing":"east","in_wall":"false","open":"false","powered":"false"},"id":8041}]},"spruce_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8042},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8043},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8044},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8045},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8046},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8047},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8048},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8049},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8050},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8051},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8052},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8053},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8054},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8055},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8056},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8057},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8058},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8059},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8060},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8061},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8062},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8063},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8064},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8065},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8066},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8067},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8068},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8069},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8070},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8071},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8072},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8073}]},"birch_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8074},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8075},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8076},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8077},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8078},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8079},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8080},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8081},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8082},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8083},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8084},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8085},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8086},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8087},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8088},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8089},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8090},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8091},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8092},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8093},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8094},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8095},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8096},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8097},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8098},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8099},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8100},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8101},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8102},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8103},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8104},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8105}]},"jungle_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8106},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8107},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8108},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8109},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8110},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8111},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8112},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8113},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8114},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8115},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8116},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8117},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8118},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8119},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8120},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8121},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8122},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8123},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8124},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8125},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8126},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8127},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8128},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8129},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8130},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8131},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8132},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8133},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8134},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8135},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8136},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8137}]},"acacia_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8138},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8139},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8140},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8141},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8142},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8143},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8144},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8145},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8146},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8147},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8148},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8149},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8150},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8151},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8152},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8153},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8154},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8155},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8156},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8157},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8158},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8159},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8160},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8161},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8162},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8163},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8164},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8165},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8166},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8167},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8168},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8169}]},"dark_oak_fence":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8170},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8171},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8172},{"properties":{"east":"true","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8173},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8174},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8175},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8176},{"properties":{"east":"true","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8177},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8178},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8179},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8180},{"properties":{"east":"true","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8181},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8182},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8183},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8184},{"properties":{"east":"true","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8185},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"true"},"id":8186},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"true","west":"false"},"id":8187},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"true"},"id":8188},{"properties":{"east":"false","north":"true","south":"true","waterlogged":"false","west":"false"},"id":8189},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"true"},"id":8190},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"true","west":"false"},"id":8191},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"true"},"id":8192},{"properties":{"east":"false","north":"true","south":"false","waterlogged":"false","west":"false"},"id":8193},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"true"},"id":8194},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"true","west":"false"},"id":8195},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"true"},"id":8196},{"properties":{"east":"false","north":"false","south":"true","waterlogged":"false","west":"false"},"id":8197},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"true"},"id":8198},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"true","west":"false"},"id":8199},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"true"},"id":8200},{"properties":{"east":"false","north":"false","south":"false","waterlogged":"false","west":"false"},"id":8201}]},"spruce_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8202},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8203},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8204},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8205},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8206},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8207},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8208},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8209},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8210},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8211},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8212},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8213},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8214},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8215},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8216},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8217},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8218},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8219},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8220},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8221},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8222},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8223},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8224},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8225},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8226},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8227},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8228},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8229},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8230},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8231},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8232},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8233},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8234},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8235},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8236},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8237},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8238},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8239},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8240},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8241},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8242},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8243},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8244},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8245},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8246},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8247},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8248},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8249},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8250},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8251},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8252},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8253},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8254},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8255},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8256},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8257},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8258},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8259},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8260},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8261},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8262},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8263},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8264},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8265}]},"birch_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8266},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8267},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8268},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8269},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8271},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8272},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8273},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8274},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8275},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8276},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8277},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8278},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8279},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8280},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8281},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8282},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8283},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8284},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8285},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8286},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8287},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8288},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8289},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8290},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8291},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8292},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8293},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8294},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8295},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8296},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8297},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8298},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8299},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8300},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8301},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8302},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8303},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8304},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8305},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8306},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8307},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8308},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8309},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8310},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8311},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8312},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8313},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8314},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8315},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8316},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8317},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8318},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8319},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8320},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8321},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8322},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8323},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8324},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8325},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8326},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8327},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8328},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8329}]},"jungle_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8330},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8331},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8332},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8333},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8334},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8335},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8336},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8337},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8338},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8339},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8340},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8341},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8342},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8343},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8344},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8345},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8346},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8347},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8348},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8349},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8350},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8351},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8352},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8353},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8354},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8355},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8356},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8357},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8358},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8359},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8360},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8361},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8362},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8363},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8364},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8365},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8366},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8367},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8368},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8369},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8370},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8371},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8372},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8373},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8374},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8375},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8376},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8377},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8378},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8379},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8380},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8381},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8382},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8383},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8384},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8385},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8386},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8387},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8388},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8389},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8390},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8391},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8392},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8393}]},"acacia_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8394},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8395},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8396},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8397},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8398},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8399},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8400},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8401},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8402},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8403},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8404},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8405},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8406},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8407},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8408},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8409},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8410},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8411},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8412},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8413},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8414},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8415},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8416},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8417},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8418},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8419},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8420},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8421},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8422},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8423},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8424},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8425},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8426},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8427},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8428},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8429},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8430},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8431},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8432},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8433},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8434},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8435},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8436},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8437},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8438},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8439},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8440},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8441},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8442},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8443},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8444},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8445},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8446},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8447},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8448},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8449},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8450},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8451},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8452},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8453},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8454},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8455},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8456},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8457}]},"dark_oak_door":{"properties":{"facing":["north","south","west","east"],"half":["upper","lower"],"hinge":["left","right"],"open":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8458},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8459},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8460},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8461},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8462},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8463},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8464},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8465},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8466},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8467},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8468},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8469},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8470},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8471},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8472},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8473},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8474},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8475},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8476},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8477},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8478},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8479},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8480},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8481},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8482},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8483},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8484},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8485},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8486},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8487},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8488},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8489},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8490},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8491},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8492},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8493},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8494},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8495},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8496},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8497},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8498},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8499},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8500},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8501},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8502},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8503},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8504},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8505},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"true"},"id":8506},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true","powered":"false"},"id":8507},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"true"},"id":8508},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false","powered":"false"},"id":8509},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"true"},"id":8510},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true","powered":"false"},"id":8511},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"true"},"id":8512},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false","powered":"false"},"id":8513},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"true"},"id":8514},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true","powered":"false"},"id":8515},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"true"},"id":8516},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false","powered":"false"},"id":8517},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"true"},"id":8518},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true","powered":"false"},"id":8519},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"true"},"id":8520},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false","powered":"false"},"id":8521}]},"end_rod":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8522},{"properties":{"facing":"east"},"id":8523},{"properties":{"facing":"south"},"id":8524},{"properties":{"facing":"west"},"id":8525},{"properties":{"facing":"up"},"id":8526},{"properties":{"facing":"down"},"id":8527}]},"chorus_plant":{"properties":{"down":["true","false"],"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"west":["true","false"]},"states":[{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8528},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8529},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8530},{"properties":{"down":"true","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8531},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8532},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8533},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8534},{"properties":{"down":"true","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8535},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8536},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8537},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8538},{"properties":{"down":"true","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8539},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8540},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8541},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8542},{"properties":{"down":"true","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8543},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8544},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8545},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8546},{"properties":{"down":"true","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8547},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8548},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8549},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8550},{"properties":{"down":"true","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8551},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8552},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8553},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8554},{"properties":{"down":"true","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8555},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8556},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8557},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8558},{"properties":{"down":"true","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8559},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"true"},"id":8560},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"true","west":"false"},"id":8561},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"true"},"id":8562},{"properties":{"down":"false","east":"true","north":"true","south":"true","up":"false","west":"false"},"id":8563},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"true"},"id":8564},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"true","west":"false"},"id":8565},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"true"},"id":8566},{"properties":{"down":"false","east":"true","north":"true","south":"false","up":"false","west":"false"},"id":8567},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"true"},"id":8568},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"true","west":"false"},"id":8569},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"true"},"id":8570},{"properties":{"down":"false","east":"true","north":"false","south":"true","up":"false","west":"false"},"id":8571},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"true"},"id":8572},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"true","west":"false"},"id":8573},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"true"},"id":8574},{"properties":{"down":"false","east":"true","north":"false","south":"false","up":"false","west":"false"},"id":8575},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"true"},"id":8576},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"true","west":"false"},"id":8577},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"true"},"id":8578},{"properties":{"down":"false","east":"false","north":"true","south":"true","up":"false","west":"false"},"id":8579},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"true"},"id":8580},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"true","west":"false"},"id":8581},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"true"},"id":8582},{"properties":{"down":"false","east":"false","north":"true","south":"false","up":"false","west":"false"},"id":8583},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"true"},"id":8584},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"true","west":"false"},"id":8585},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"true"},"id":8586},{"properties":{"down":"false","east":"false","north":"false","south":"true","up":"false","west":"false"},"id":8587},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"true"},"id":8588},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"true","west":"false"},"id":8589},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"true"},"id":8590},{"properties":{"down":"false","east":"false","north":"false","south":"false","up":"false","west":"false"},"id":8591}]},"chorus_flower":{"properties":{"age":["0","1","2","3","4","5"]},"states":[{"properties":{"age":"0"},"id":8592},{"properties":{"age":"1"},"id":8593},{"properties":{"age":"2"},"id":8594},{"properties":{"age":"3"},"id":8595},{"properties":{"age":"4"},"id":8596},{"properties":{"age":"5"},"id":8597}]},"purpur_block":{"states":[{"id":8598}]},"purpur_pillar":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8599},{"properties":{"axis":"y"},"id":8600},{"properties":{"axis":"z"},"id":8601}]},"purpur_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":8602},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":8603},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":8604},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":8605},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":8606},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":8607},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":8608},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":8609},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":8610},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":8611},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":8612},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":8613},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8614},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8615},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8616},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8617},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8618},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8619},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8620},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8621},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":8622},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":8623},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":8624},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":8625},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":8626},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":8627},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":8628},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":8629},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":8630},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":8631},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":8632},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":8633},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8634},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8635},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8636},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8637},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8638},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8639},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8640},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8641},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":8642},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":8643},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":8644},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":8645},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":8646},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":8647},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":8648},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":8649},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":8650},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":8651},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":8652},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":8653},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8654},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8655},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8656},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8657},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8658},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8659},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8660},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8661},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":8662},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":8663},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":8664},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":8665},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":8666},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":8667},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":8668},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":8669},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":8670},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":8671},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":8672},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":8673},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":8674},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":8675},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":8676},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":8677},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":8678},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":8679},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":8680},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":8681}]},"end_stone_bricks":{"states":[{"id":8682}]},"beetroots":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8683},{"properties":{"age":"1"},"id":8684},{"properties":{"age":"2"},"id":8685},{"properties":{"age":"3"},"id":8686}]},"grass_path":{"states":[{"id":8687}]},"end_gateway":{"states":[{"id":8688}]},"repeating_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8689},{"properties":{"conditional":"true","facing":"east"},"id":8690},{"properties":{"conditional":"true","facing":"south"},"id":8691},{"properties":{"conditional":"true","facing":"west"},"id":8692},{"properties":{"conditional":"true","facing":"up"},"id":8693},{"properties":{"conditional":"true","facing":"down"},"id":8694},{"properties":{"conditional":"false","facing":"north"},"id":8695},{"properties":{"conditional":"false","facing":"east"},"id":8696},{"properties":{"conditional":"false","facing":"south"},"id":8697},{"properties":{"conditional":"false","facing":"west"},"id":8698},{"properties":{"conditional":"false","facing":"up"},"id":8699},{"properties":{"conditional":"false","facing":"down"},"id":8700}]},"chain_command_block":{"properties":{"conditional":["true","false"],"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"conditional":"true","facing":"north"},"id":8701},{"properties":{"conditional":"true","facing":"east"},"id":8702},{"properties":{"conditional":"true","facing":"south"},"id":8703},{"properties":{"conditional":"true","facing":"west"},"id":8704},{"properties":{"conditional":"true","facing":"up"},"id":8705},{"properties":{"conditional":"true","facing":"down"},"id":8706},{"properties":{"conditional":"false","facing":"north"},"id":8707},{"properties":{"conditional":"false","facing":"east"},"id":8708},{"properties":{"conditional":"false","facing":"south"},"id":8709},{"properties":{"conditional":"false","facing":"west"},"id":8710},{"properties":{"conditional":"false","facing":"up"},"id":8711},{"properties":{"conditional":"false","facing":"down"},"id":8712}]},"frosted_ice":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":8713},{"properties":{"age":"1"},"id":8714},{"properties":{"age":"2"},"id":8715},{"properties":{"age":"3"},"id":8716}]},"magma_block":{"states":[{"id":8717}]},"nether_wart_block":{"states":[{"id":8718}]},"red_nether_bricks":{"states":[{"id":8719}]},"bone_block":{"properties":{"axis":["x","y","z"]},"states":[{"properties":{"axis":"x"},"id":8720},{"properties":{"axis":"y"},"id":8721},{"properties":{"axis":"z"},"id":8722}]},"structure_void":{"states":[{"id":8723}]},"observer":{"properties":{"facing":["north","east","south","west","up","down"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","powered":"true"},"id":8724},{"properties":{"facing":"north","powered":"false"},"id":8725},{"properties":{"facing":"east","powered":"true"},"id":8726},{"properties":{"facing":"east","powered":"false"},"id":8727},{"properties":{"facing":"south","powered":"true"},"id":8728},{"properties":{"facing":"south","powered":"false"},"id":8729},{"properties":{"facing":"west","powered":"true"},"id":8730},{"properties":{"facing":"west","powered":"false"},"id":8731},{"properties":{"facing":"up","powered":"true"},"id":8732},{"properties":{"facing":"up","powered":"false"},"id":8733},{"properties":{"facing":"down","powered":"true"},"id":8734},{"properties":{"facing":"down","powered":"false"},"id":8735}]},"shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8736},{"properties":{"facing":"east"},"id":8737},{"properties":{"facing":"south"},"id":8738},{"properties":{"facing":"west"},"id":8739},{"properties":{"facing":"up"},"id":8740},{"properties":{"facing":"down"},"id":8741}]},"white_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8742},{"properties":{"facing":"east"},"id":8743},{"properties":{"facing":"south"},"id":8744},{"properties":{"facing":"west"},"id":8745},{"properties":{"facing":"up"},"id":8746},{"properties":{"facing":"down"},"id":8747}]},"orange_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8748},{"properties":{"facing":"east"},"id":8749},{"properties":{"facing":"south"},"id":8750},{"properties":{"facing":"west"},"id":8751},{"properties":{"facing":"up"},"id":8752},{"properties":{"facing":"down"},"id":8753}]},"magenta_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8754},{"properties":{"facing":"east"},"id":8755},{"properties":{"facing":"south"},"id":8756},{"properties":{"facing":"west"},"id":8757},{"properties":{"facing":"up"},"id":8758},{"properties":{"facing":"down"},"id":8759}]},"light_blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8760},{"properties":{"facing":"east"},"id":8761},{"properties":{"facing":"south"},"id":8762},{"properties":{"facing":"west"},"id":8763},{"properties":{"facing":"up"},"id":8764},{"properties":{"facing":"down"},"id":8765}]},"yellow_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8766},{"properties":{"facing":"east"},"id":8767},{"properties":{"facing":"south"},"id":8768},{"properties":{"facing":"west"},"id":8769},{"properties":{"facing":"up"},"id":8770},{"properties":{"facing":"down"},"id":8771}]},"lime_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8772},{"properties":{"facing":"east"},"id":8773},{"properties":{"facing":"south"},"id":8774},{"properties":{"facing":"west"},"id":8775},{"properties":{"facing":"up"},"id":8776},{"properties":{"facing":"down"},"id":8777}]},"pink_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8778},{"properties":{"facing":"east"},"id":8779},{"properties":{"facing":"south"},"id":8780},{"properties":{"facing":"west"},"id":8781},{"properties":{"facing":"up"},"id":8782},{"properties":{"facing":"down"},"id":8783}]},"gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8784},{"properties":{"facing":"east"},"id":8785},{"properties":{"facing":"south"},"id":8786},{"properties":{"facing":"west"},"id":8787},{"properties":{"facing":"up"},"id":8788},{"properties":{"facing":"down"},"id":8789}]},"light_gray_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8790},{"properties":{"facing":"east"},"id":8791},{"properties":{"facing":"south"},"id":8792},{"properties":{"facing":"west"},"id":8793},{"properties":{"facing":"up"},"id":8794},{"properties":{"facing":"down"},"id":8795}]},"cyan_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8796},{"properties":{"facing":"east"},"id":8797},{"properties":{"facing":"south"},"id":8798},{"properties":{"facing":"west"},"id":8799},{"properties":{"facing":"up"},"id":8800},{"properties":{"facing":"down"},"id":8801}]},"purple_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8802},{"properties":{"facing":"east"},"id":8803},{"properties":{"facing":"south"},"id":8804},{"properties":{"facing":"west"},"id":8805},{"properties":{"facing":"up"},"id":8806},{"properties":{"facing":"down"},"id":8807}]},"blue_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8808},{"properties":{"facing":"east"},"id":8809},{"properties":{"facing":"south"},"id":8810},{"properties":{"facing":"west"},"id":8811},{"properties":{"facing":"up"},"id":8812},{"properties":{"facing":"down"},"id":8813}]},"brown_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8814},{"properties":{"facing":"east"},"id":8815},{"properties":{"facing":"south"},"id":8816},{"properties":{"facing":"west"},"id":8817},{"properties":{"facing":"up"},"id":8818},{"properties":{"facing":"down"},"id":8819}]},"green_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8820},{"properties":{"facing":"east"},"id":8821},{"properties":{"facing":"south"},"id":8822},{"properties":{"facing":"west"},"id":8823},{"properties":{"facing":"up"},"id":8824},{"properties":{"facing":"down"},"id":8825}]},"red_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8826},{"properties":{"facing":"east"},"id":8827},{"properties":{"facing":"south"},"id":8828},{"properties":{"facing":"west"},"id":8829},{"properties":{"facing":"up"},"id":8830},{"properties":{"facing":"down"},"id":8831}]},"black_shulker_box":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":8832},{"properties":{"facing":"east"},"id":8833},{"properties":{"facing":"south"},"id":8834},{"properties":{"facing":"west"},"id":8835},{"properties":{"facing":"up"},"id":8836},{"properties":{"facing":"down"},"id":8837}]},"white_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8838},{"properties":{"facing":"south"},"id":8839},{"properties":{"facing":"west"},"id":8840},{"properties":{"facing":"east"},"id":8841}]},"orange_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8842},{"properties":{"facing":"south"},"id":8843},{"properties":{"facing":"west"},"id":8844},{"properties":{"facing":"east"},"id":8845}]},"magenta_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8846},{"properties":{"facing":"south"},"id":8847},{"properties":{"facing":"west"},"id":8848},{"properties":{"facing":"east"},"id":8849}]},"light_blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8850},{"properties":{"facing":"south"},"id":8851},{"properties":{"facing":"west"},"id":8852},{"properties":{"facing":"east"},"id":8853}]},"yellow_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8854},{"properties":{"facing":"south"},"id":8855},{"properties":{"facing":"west"},"id":8856},{"properties":{"facing":"east"},"id":8857}]},"lime_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8858},{"properties":{"facing":"south"},"id":8859},{"properties":{"facing":"west"},"id":8860},{"properties":{"facing":"east"},"id":8861}]},"pink_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8862},{"properties":{"facing":"south"},"id":8863},{"properties":{"facing":"west"},"id":8864},{"properties":{"facing":"east"},"id":8865}]},"gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8866},{"properties":{"facing":"south"},"id":8867},{"properties":{"facing":"west"},"id":8868},{"properties":{"facing":"east"},"id":8869}]},"light_gray_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8870},{"properties":{"facing":"south"},"id":8871},{"properties":{"facing":"west"},"id":8872},{"properties":{"facing":"east"},"id":8873}]},"cyan_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8874},{"properties":{"facing":"south"},"id":8875},{"properties":{"facing":"west"},"id":8876},{"properties":{"facing":"east"},"id":8877}]},"purple_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8878},{"properties":{"facing":"south"},"id":8879},{"properties":{"facing":"west"},"id":8880},{"properties":{"facing":"east"},"id":8881}]},"blue_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8882},{"properties":{"facing":"south"},"id":8883},{"properties":{"facing":"west"},"id":8884},{"properties":{"facing":"east"},"id":8885}]},"brown_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8886},{"properties":{"facing":"south"},"id":8887},{"properties":{"facing":"west"},"id":8888},{"properties":{"facing":"east"},"id":8889}]},"green_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8890},{"properties":{"facing":"south"},"id":8891},{"properties":{"facing":"west"},"id":8892},{"properties":{"facing":"east"},"id":8893}]},"red_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8894},{"properties":{"facing":"south"},"id":8895},{"properties":{"facing":"west"},"id":8896},{"properties":{"facing":"east"},"id":8897}]},"black_glazed_terracotta":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":8898},{"properties":{"facing":"south"},"id":8899},{"properties":{"facing":"west"},"id":8900},{"properties":{"facing":"east"},"id":8901}]},"white_concrete":{"states":[{"id":8902}]},"orange_concrete":{"states":[{"id":8903}]},"magenta_concrete":{"states":[{"id":8904}]},"light_blue_concrete":{"states":[{"id":8905}]},"yellow_concrete":{"states":[{"id":8906}]},"lime_concrete":{"states":[{"id":8907}]},"pink_concrete":{"states":[{"id":8908}]},"gray_concrete":{"states":[{"id":8909}]},"light_gray_concrete":{"states":[{"id":8910}]},"cyan_concrete":{"states":[{"id":8911}]},"purple_concrete":{"states":[{"id":8912}]},"blue_concrete":{"states":[{"id":8913}]},"brown_concrete":{"states":[{"id":8914}]},"green_concrete":{"states":[{"id":8915}]},"red_concrete":{"states":[{"id":8916}]},"black_concrete":{"states":[{"id":8917}]},"white_concrete_powder":{"states":[{"id":8918}]},"orange_concrete_powder":{"states":[{"id":8919}]},"magenta_concrete_powder":{"states":[{"id":8920}]},"light_blue_concrete_powder":{"states":[{"id":8921}]},"yellow_concrete_powder":{"states":[{"id":8922}]},"lime_concrete_powder":{"states":[{"id":8923}]},"pink_concrete_powder":{"states":[{"id":8924}]},"gray_concrete_powder":{"states":[{"id":8925}]},"light_gray_concrete_powder":{"states":[{"id":8926}]},"cyan_concrete_powder":{"states":[{"id":8927}]},"purple_concrete_powder":{"states":[{"id":8928}]},"blue_concrete_powder":{"states":[{"id":8929}]},"brown_concrete_powder":{"states":[{"id":8930}]},"green_concrete_powder":{"states":[{"id":8931}]},"red_concrete_powder":{"states":[{"id":8932}]},"black_concrete_powder":{"states":[{"id":8933}]},"kelp":{"properties":{"age":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25"]},"states":[{"properties":{"age":"0"},"id":8934},{"properties":{"age":"1"},"id":8935},{"properties":{"age":"2"},"id":8936},{"properties":{"age":"3"},"id":8937},{"properties":{"age":"4"},"id":8938},{"properties":{"age":"5"},"id":8939},{"properties":{"age":"6"},"id":8940},{"properties":{"age":"7"},"id":8941},{"properties":{"age":"8"},"id":8942},{"properties":{"age":"9"},"id":8943},{"properties":{"age":"10"},"id":8944},{"properties":{"age":"11"},"id":8945},{"properties":{"age":"12"},"id":8946},{"properties":{"age":"13"},"id":8947},{"properties":{"age":"14"},"id":8948},{"properties":{"age":"15"},"id":8949},{"properties":{"age":"16"},"id":8950},{"properties":{"age":"17"},"id":8951},{"properties":{"age":"18"},"id":8952},{"properties":{"age":"19"},"id":8953},{"properties":{"age":"20"},"id":8954},{"properties":{"age":"21"},"id":8955},{"properties":{"age":"22"},"id":8956},{"properties":{"age":"23"},"id":8957},{"properties":{"age":"24"},"id":8958},{"properties":{"age":"25"},"id":8959}]},"kelp_plant":{"states":[{"id":8960}]},"dried_kelp_block":{"states":[{"id":8961}]},"turtle_egg":{"properties":{"eggs":["1","2","3","4"],"hatch":["0","1","2"]},"states":[{"properties":{"eggs":"1","hatch":"0"},"id":8962},{"properties":{"eggs":"1","hatch":"1"},"id":8963},{"properties":{"eggs":"1","hatch":"2"},"id":8964},{"properties":{"eggs":"2","hatch":"0"},"id":8965},{"properties":{"eggs":"2","hatch":"1"},"id":8966},{"properties":{"eggs":"2","hatch":"2"},"id":8967},{"properties":{"eggs":"3","hatch":"0"},"id":8968},{"properties":{"eggs":"3","hatch":"1"},"id":8969},{"properties":{"eggs":"3","hatch":"2"},"id":8970},{"properties":{"eggs":"4","hatch":"0"},"id":8971},{"properties":{"eggs":"4","hatch":"1"},"id":8972},{"properties":{"eggs":"4","hatch":"2"},"id":8973}]},"dead_tube_coral_block":{"states":[{"id":8974}]},"dead_brain_coral_block":{"states":[{"id":8975}]},"dead_bubble_coral_block":{"states":[{"id":8976}]},"dead_fire_coral_block":{"states":[{"id":8977}]},"dead_horn_coral_block":{"states":[{"id":8978}]},"tube_coral_block":{"states":[{"id":8979}]},"brain_coral_block":{"states":[{"id":8980}]},"bubble_coral_block":{"states":[{"id":8981}]},"fire_coral_block":{"states":[{"id":8982}]},"horn_coral_block":{"states":[{"id":8983}]},"dead_tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8984},{"properties":{"waterlogged":"false"},"id":8985}]},"dead_brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8986},{"properties":{"waterlogged":"false"},"id":8987}]},"dead_bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8988},{"properties":{"waterlogged":"false"},"id":8989}]},"dead_fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8990},{"properties":{"waterlogged":"false"},"id":8991}]},"dead_horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8992},{"properties":{"waterlogged":"false"},"id":8993}]},"tube_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8994},{"properties":{"waterlogged":"false"},"id":8995}]},"brain_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8996},{"properties":{"waterlogged":"false"},"id":8997}]},"bubble_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":8998},{"properties":{"waterlogged":"false"},"id":8999}]},"fire_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9000},{"properties":{"waterlogged":"false"},"id":9001}]},"horn_coral":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9002},{"properties":{"waterlogged":"false"},"id":9003}]},"dead_tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9004},{"properties":{"waterlogged":"false"},"id":9005}]},"dead_brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9006},{"properties":{"waterlogged":"false"},"id":9007}]},"dead_bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9008},{"properties":{"waterlogged":"false"},"id":9009}]},"dead_fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9010},{"properties":{"waterlogged":"false"},"id":9011}]},"dead_horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9012},{"properties":{"waterlogged":"false"},"id":9013}]},"tube_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9014},{"properties":{"waterlogged":"false"},"id":9015}]},"brain_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9016},{"properties":{"waterlogged":"false"},"id":9017}]},"bubble_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9018},{"properties":{"waterlogged":"false"},"id":9019}]},"fire_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9020},{"properties":{"waterlogged":"false"},"id":9021}]},"horn_coral_fan":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9022},{"properties":{"waterlogged":"false"},"id":9023}]},"dead_tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9024},{"properties":{"facing":"north","waterlogged":"false"},"id":9025},{"properties":{"facing":"south","waterlogged":"true"},"id":9026},{"properties":{"facing":"south","waterlogged":"false"},"id":9027},{"properties":{"facing":"west","waterlogged":"true"},"id":9028},{"properties":{"facing":"west","waterlogged":"false"},"id":9029},{"properties":{"facing":"east","waterlogged":"true"},"id":9030},{"properties":{"facing":"east","waterlogged":"false"},"id":9031}]},"dead_brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9032},{"properties":{"facing":"north","waterlogged":"false"},"id":9033},{"properties":{"facing":"south","waterlogged":"true"},"id":9034},{"properties":{"facing":"south","waterlogged":"false"},"id":9035},{"properties":{"facing":"west","waterlogged":"true"},"id":9036},{"properties":{"facing":"west","waterlogged":"false"},"id":9037},{"properties":{"facing":"east","waterlogged":"true"},"id":9038},{"properties":{"facing":"east","waterlogged":"false"},"id":9039}]},"dead_bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9040},{"properties":{"facing":"north","waterlogged":"false"},"id":9041},{"properties":{"facing":"south","waterlogged":"true"},"id":9042},{"properties":{"facing":"south","waterlogged":"false"},"id":9043},{"properties":{"facing":"west","waterlogged":"true"},"id":9044},{"properties":{"facing":"west","waterlogged":"false"},"id":9045},{"properties":{"facing":"east","waterlogged":"true"},"id":9046},{"properties":{"facing":"east","waterlogged":"false"},"id":9047}]},"dead_fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9048},{"properties":{"facing":"north","waterlogged":"false"},"id":9049},{"properties":{"facing":"south","waterlogged":"true"},"id":9050},{"properties":{"facing":"south","waterlogged":"false"},"id":9051},{"properties":{"facing":"west","waterlogged":"true"},"id":9052},{"properties":{"facing":"west","waterlogged":"false"},"id":9053},{"properties":{"facing":"east","waterlogged":"true"},"id":9054},{"properties":{"facing":"east","waterlogged":"false"},"id":9055}]},"dead_horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9056},{"properties":{"facing":"north","waterlogged":"false"},"id":9057},{"properties":{"facing":"south","waterlogged":"true"},"id":9058},{"properties":{"facing":"south","waterlogged":"false"},"id":9059},{"properties":{"facing":"west","waterlogged":"true"},"id":9060},{"properties":{"facing":"west","waterlogged":"false"},"id":9061},{"properties":{"facing":"east","waterlogged":"true"},"id":9062},{"properties":{"facing":"east","waterlogged":"false"},"id":9063}]},"tube_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9064},{"properties":{"facing":"north","waterlogged":"false"},"id":9065},{"properties":{"facing":"south","waterlogged":"true"},"id":9066},{"properties":{"facing":"south","waterlogged":"false"},"id":9067},{"properties":{"facing":"west","waterlogged":"true"},"id":9068},{"properties":{"facing":"west","waterlogged":"false"},"id":9069},{"properties":{"facing":"east","waterlogged":"true"},"id":9070},{"properties":{"facing":"east","waterlogged":"false"},"id":9071}]},"brain_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9072},{"properties":{"facing":"north","waterlogged":"false"},"id":9073},{"properties":{"facing":"south","waterlogged":"true"},"id":9074},{"properties":{"facing":"south","waterlogged":"false"},"id":9075},{"properties":{"facing":"west","waterlogged":"true"},"id":9076},{"properties":{"facing":"west","waterlogged":"false"},"id":9077},{"properties":{"facing":"east","waterlogged":"true"},"id":9078},{"properties":{"facing":"east","waterlogged":"false"},"id":9079}]},"bubble_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9080},{"properties":{"facing":"north","waterlogged":"false"},"id":9081},{"properties":{"facing":"south","waterlogged":"true"},"id":9082},{"properties":{"facing":"south","waterlogged":"false"},"id":9083},{"properties":{"facing":"west","waterlogged":"true"},"id":9084},{"properties":{"facing":"west","waterlogged":"false"},"id":9085},{"properties":{"facing":"east","waterlogged":"true"},"id":9086},{"properties":{"facing":"east","waterlogged":"false"},"id":9087}]},"fire_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9088},{"properties":{"facing":"north","waterlogged":"false"},"id":9089},{"properties":{"facing":"south","waterlogged":"true"},"id":9090},{"properties":{"facing":"south","waterlogged":"false"},"id":9091},{"properties":{"facing":"west","waterlogged":"true"},"id":9092},{"properties":{"facing":"west","waterlogged":"false"},"id":9093},{"properties":{"facing":"east","waterlogged":"true"},"id":9094},{"properties":{"facing":"east","waterlogged":"false"},"id":9095}]},"horn_coral_wall_fan":{"properties":{"facing":["north","south","west","east"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","waterlogged":"true"},"id":9096},{"properties":{"facing":"north","waterlogged":"false"},"id":9097},{"properties":{"facing":"south","waterlogged":"true"},"id":9098},{"properties":{"facing":"south","waterlogged":"false"},"id":9099},{"properties":{"facing":"west","waterlogged":"true"},"id":9100},{"properties":{"facing":"west","waterlogged":"false"},"id":9101},{"properties":{"facing":"east","waterlogged":"true"},"id":9102},{"properties":{"facing":"east","waterlogged":"false"},"id":9103}]},"sea_pickle":{"properties":{"pickles":["1","2","3","4"],"waterlogged":["true","false"]},"states":[{"properties":{"pickles":"1","waterlogged":"true"},"id":9104},{"properties":{"pickles":"1","waterlogged":"false"},"id":9105},{"properties":{"pickles":"2","waterlogged":"true"},"id":9106},{"properties":{"pickles":"2","waterlogged":"false"},"id":9107},{"properties":{"pickles":"3","waterlogged":"true"},"id":9108},{"properties":{"pickles":"3","waterlogged":"false"},"id":9109},{"properties":{"pickles":"4","waterlogged":"true"},"id":9110},{"properties":{"pickles":"4","waterlogged":"false"},"id":9111}]},"blue_ice":{"states":[{"id":9112}]},"conduit":{"properties":{"waterlogged":["true","false"]},"states":[{"properties":{"waterlogged":"true"},"id":9113},{"properties":{"waterlogged":"false"},"id":9114}]},"bamboo_sapling":{"states":[{"id":9115}]},"bamboo":{"properties":{"age":["0","1"],"leaves":["none","small","large"],"stage":["0","1"]},"states":[{"properties":{"age":"0","leaves":"none","stage":"0"},"id":9116},{"properties":{"age":"0","leaves":"none","stage":"1"},"id":9117},{"properties":{"age":"0","leaves":"small","stage":"0"},"id":9118},{"properties":{"age":"0","leaves":"small","stage":"1"},"id":9119},{"properties":{"age":"0","leaves":"large","stage":"0"},"id":9120},{"properties":{"age":"0","leaves":"large","stage":"1"},"id":9121},{"properties":{"age":"1","leaves":"none","stage":"0"},"id":9122},{"properties":{"age":"1","leaves":"none","stage":"1"},"id":9123},{"properties":{"age":"1","leaves":"small","stage":"0"},"id":9124},{"properties":{"age":"1","leaves":"small","stage":"1"},"id":9125},{"properties":{"age":"1","leaves":"large","stage":"0"},"id":9126},{"properties":{"age":"1","leaves":"large","stage":"1"},"id":9127}]},"potted_bamboo":{"states":[{"id":9128}]},"void_air":{"states":[{"id":9129}]},"cave_air":{"states":[{"id":9130}]},"bubble_column":{"properties":{"drag":["true","false"]},"states":[{"properties":{"drag":"true"},"id":9131},{"properties":{"drag":"false"},"id":9132}]},"polished_granite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9133},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9134},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9135},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9136},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9137},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9138},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9139},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9140},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9141},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9142},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9143},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9144},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9145},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9146},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9147},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9148},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9149},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9150},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9151},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9152},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9153},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9154},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9155},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9156},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9157},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9158},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9159},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9160},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9161},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9162},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9163},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9164},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9165},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9166},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9167},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9168},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9169},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9170},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9171},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9172},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9173},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9174},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9175},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9176},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9177},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9178},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9179},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9180},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9181},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9182},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9183},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9184},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9185},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9186},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9187},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9188},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9189},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9190},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9191},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9192},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9193},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9194},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9195},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9196},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9197},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9198},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9199},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9200},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9201},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9202},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9203},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9204},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9205},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9206},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9207},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9208},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9209},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9210},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9211},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9212}]},"smooth_red_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9213},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9214},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9215},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9216},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9217},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9218},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9219},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9220},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9221},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9222},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9223},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9224},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9225},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9226},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9227},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9228},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9229},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9230},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9231},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9232},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9233},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9234},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9235},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9236},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9237},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9238},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9239},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9240},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9241},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9242},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9243},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9244},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9245},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9246},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9247},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9248},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9249},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9250},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9251},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9252},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9253},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9254},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9255},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9256},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9257},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9258},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9259},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9260},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9261},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9262},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9263},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9264},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9265},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9266},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9267},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9268},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9269},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9270},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9271},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9272},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9273},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9274},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9275},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9276},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9277},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9278},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9279},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9280},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9281},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9282},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9283},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9284},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9285},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9286},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9287},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9288},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9289},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9290},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9291},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9292}]},"mossy_stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9293},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9294},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9295},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9296},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9297},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9298},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9299},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9300},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9301},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9302},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9303},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9304},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9305},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9306},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9307},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9308},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9309},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9310},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9311},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9312},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9313},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9314},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9315},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9316},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9317},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9318},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9319},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9320},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9321},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9322},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9323},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9324},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9325},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9326},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9327},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9328},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9329},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9330},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9331},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9332},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9333},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9334},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9335},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9336},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9337},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9338},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9339},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9340},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9341},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9342},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9343},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9344},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9345},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9346},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9347},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9348},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9349},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9350},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9351},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9352},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9353},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9354},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9355},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9356},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9357},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9358},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9359},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9360},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9361},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9362},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9363},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9364},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9365},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9366},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9367},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9368},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9369},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9370},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9371},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9372}]},"polished_diorite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9373},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9374},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9375},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9376},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9377},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9378},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9379},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9380},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9381},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9382},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9383},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9384},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9385},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9386},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9387},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9388},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9389},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9390},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9391},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9392},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9393},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9394},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9395},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9396},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9397},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9398},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9399},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9400},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9401},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9402},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9403},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9404},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9405},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9406},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9407},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9408},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9409},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9410},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9411},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9412},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9413},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9414},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9415},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9416},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9417},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9418},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9419},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9420},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9421},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9422},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9423},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9424},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9425},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9426},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9427},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9428},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9429},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9430},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9431},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9432},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9433},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9434},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9435},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9436},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9437},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9438},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9439},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9440},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9441},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9442},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9443},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9444},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9445},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9446},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9447},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9448},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9449},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9450},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9451},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9452}]},"mossy_cobblestone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9453},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9454},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9455},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9456},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9457},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9458},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9459},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9460},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9461},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9462},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9463},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9464},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9465},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9466},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9467},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9468},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9469},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9470},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9471},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9472},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9473},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9474},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9475},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9476},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9477},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9478},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9479},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9480},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9481},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9482},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9483},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9484},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9485},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9486},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9487},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9488},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9489},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9490},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9491},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9492},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9493},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9494},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9495},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9496},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9497},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9498},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9499},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9500},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9501},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9502},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9503},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9504},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9505},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9506},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9507},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9508},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9509},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9510},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9511},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9512},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9513},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9514},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9515},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9516},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9517},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9518},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9519},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9520},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9521},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9522},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9523},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9524},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9525},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9526},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9527},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9528},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9529},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9530},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9531},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9532}]},"end_stone_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9533},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9534},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9535},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9536},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9537},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9538},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9539},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9540},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9541},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9542},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9543},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9544},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9545},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9546},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9547},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9548},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9549},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9550},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9551},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9552},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9553},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9554},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9555},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9556},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9557},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9558},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9559},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9560},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9561},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9562},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9563},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9564},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9565},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9566},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9567},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9568},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9569},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9570},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9571},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9572},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9573},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9574},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9575},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9576},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9577},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9578},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9579},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9580},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9581},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9582},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9583},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9584},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9585},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9586},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9587},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9588},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9589},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9590},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9591},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9592},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9593},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9594},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9595},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9596},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9597},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9598},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9599},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9600},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9601},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9602},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9603},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9604},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9605},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9606},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9607},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9608},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9609},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9610},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9611},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9612}]},"stone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9613},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9614},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9615},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9616},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9617},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9618},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9619},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9620},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9621},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9622},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9623},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9624},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9625},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9626},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9627},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9628},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9629},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9630},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9631},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9632},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9633},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9634},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9635},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9636},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9637},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9638},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9639},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9640},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9641},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9642},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9643},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9644},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9645},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9646},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9647},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9648},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9649},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9650},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9651},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9652},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9653},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9654},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9655},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9656},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9657},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9658},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9659},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9660},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9661},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9662},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9663},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9664},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9665},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9666},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9667},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9668},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9669},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9670},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9671},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9672},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9673},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9674},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9675},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9676},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9677},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9678},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9679},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9680},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9681},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9682},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9683},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9684},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9685},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9686},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9687},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9688},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9689},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9690},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9691},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9692}]},"smooth_sandstone_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9693},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9694},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9695},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9696},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9697},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9698},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9699},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9700},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9701},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9702},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9703},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9704},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9705},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9706},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9707},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9708},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9709},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9710},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9711},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9712},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9713},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9714},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9715},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9716},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9717},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9718},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9719},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9720},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9721},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9722},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9723},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9724},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9725},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9726},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9727},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9728},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9729},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9730},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9731},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9732},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9733},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9734},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9735},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9736},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9737},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9738},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9739},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9740},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9741},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9742},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9743},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9744},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9745},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9746},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9747},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9748},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9749},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9750},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9751},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9752},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9753},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9754},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9755},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9756},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9757},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9758},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9759},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9760},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9761},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9762},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9763},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9764},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9765},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9766},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9767},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9768},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9769},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9770},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9771},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9772}]},"smooth_quartz_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9773},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9774},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9775},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9776},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9777},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9778},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9779},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9780},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9781},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9782},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9783},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9784},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9785},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9786},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9787},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9788},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9789},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9790},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9791},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9792},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9793},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9794},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9795},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9796},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9797},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9798},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9799},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9800},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9801},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9802},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9803},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9804},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9805},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9806},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9807},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9808},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9809},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9810},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9811},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9812},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9813},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9814},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9815},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9816},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9817},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9818},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9819},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9820},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9821},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9822},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9823},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9824},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9825},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9826},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9827},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9828},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9829},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9830},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9831},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9832},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9833},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9834},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9835},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9836},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9837},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9838},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9839},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9840},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9841},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9842},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9843},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9844},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9845},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9846},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9847},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9848},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9849},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9850},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9851},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9852}]},"granite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9853},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9854},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9855},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9856},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9857},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9858},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9859},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9860},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9861},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9862},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9863},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9864},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9865},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9866},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9867},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9868},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9869},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9870},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9871},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9872},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9873},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9874},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9875},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9876},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9877},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9878},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9879},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9880},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9881},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9882},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9883},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9884},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9885},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9886},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9887},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9888},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9889},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9890},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9891},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9892},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9893},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9894},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9895},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9896},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9897},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9898},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9899},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9900},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9901},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9902},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9903},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9904},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9905},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9906},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9907},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9908},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9909},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9910},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9911},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9912},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9913},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9914},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9915},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9916},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9917},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9918},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9919},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":9920},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":9921},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":9922},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":9923},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":9924},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9925},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9926},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9927},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9928},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9929},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9930},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9931},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9932}]},"andesite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":9933},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":9934},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":9935},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":9936},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":9937},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":9938},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":9939},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":9940},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":9941},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":9942},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":9943},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":9944},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9945},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9946},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9947},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9948},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9949},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9950},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9951},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9952},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":9953},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":9954},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":9955},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":9956},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":9957},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":9958},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":9959},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":9960},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":9961},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":9962},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":9963},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":9964},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9965},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9966},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9967},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9968},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9969},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9970},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9971},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9972},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":9973},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":9974},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":9975},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":9976},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":9977},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":9978},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":9979},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":9980},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":9981},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":9982},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":9983},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":9984},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":9985},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":9986},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":9987},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":9988},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":9989},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":9990},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":9991},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":9992},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":9993},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":9994},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":9995},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":9996},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":9997},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":9998},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":9999},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10000},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10001},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10002},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10003},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10004},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10005},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10006},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10007},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10008},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10009},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10010},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10011},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10012}]},"red_nether_brick_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10013},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10014},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10015},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10016},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10017},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10018},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10019},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10020},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10021},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10022},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10023},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10024},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10025},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10026},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10027},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10028},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10029},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10030},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10031},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10032},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10033},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10034},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10035},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10036},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10037},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10038},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10039},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10040},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10041},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10042},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10043},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10044},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10045},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10046},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10047},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10048},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10049},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10050},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10051},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10052},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10053},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10054},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10055},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10056},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10057},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10058},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10059},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10060},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10061},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10062},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10063},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10064},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10065},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10066},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10067},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10068},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10069},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10070},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10071},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10072},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10073},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10074},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10075},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10076},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10077},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10078},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10079},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10080},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10081},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10082},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10083},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10084},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10085},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10086},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10087},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10088},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10089},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10090},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10091},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10092}]},"polished_andesite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10093},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10094},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10095},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10096},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10097},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10098},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10099},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10100},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10101},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10102},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10103},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10104},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10105},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10106},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10107},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10108},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10109},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10110},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10111},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10112},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10113},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10114},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10115},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10116},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10117},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10118},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10119},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10120},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10121},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10122},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10123},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10124},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10125},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10126},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10127},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10128},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10129},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10130},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10131},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10132},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10133},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10134},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10135},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10136},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10137},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10138},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10139},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10140},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10141},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10142},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10143},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10144},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10145},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10146},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10147},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10148},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10149},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10150},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10151},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10152},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10153},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10154},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10155},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10156},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10157},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10158},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10159},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10160},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10161},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10162},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10163},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10164},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10165},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10166},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10167},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10168},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10169},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10170},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10171},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10172}]},"diorite_stairs":{"properties":{"facing":["north","south","west","east"],"half":["top","bottom"],"shape":["straight","inner_left","inner_right","outer_left","outer_right"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"true"},"id":10173},{"properties":{"facing":"north","half":"top","shape":"straight","waterlogged":"false"},"id":10174},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"true"},"id":10175},{"properties":{"facing":"north","half":"top","shape":"inner_left","waterlogged":"false"},"id":10176},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"true"},"id":10177},{"properties":{"facing":"north","half":"top","shape":"inner_right","waterlogged":"false"},"id":10178},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"true"},"id":10179},{"properties":{"facing":"north","half":"top","shape":"outer_left","waterlogged":"false"},"id":10180},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"true"},"id":10181},{"properties":{"facing":"north","half":"top","shape":"outer_right","waterlogged":"false"},"id":10182},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"true"},"id":10183},{"properties":{"facing":"north","half":"bottom","shape":"straight","waterlogged":"false"},"id":10184},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10185},{"properties":{"facing":"north","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10186},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10187},{"properties":{"facing":"north","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10188},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10189},{"properties":{"facing":"north","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10190},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10191},{"properties":{"facing":"north","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10192},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"true"},"id":10193},{"properties":{"facing":"south","half":"top","shape":"straight","waterlogged":"false"},"id":10194},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"true"},"id":10195},{"properties":{"facing":"south","half":"top","shape":"inner_left","waterlogged":"false"},"id":10196},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"true"},"id":10197},{"properties":{"facing":"south","half":"top","shape":"inner_right","waterlogged":"false"},"id":10198},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"true"},"id":10199},{"properties":{"facing":"south","half":"top","shape":"outer_left","waterlogged":"false"},"id":10200},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"true"},"id":10201},{"properties":{"facing":"south","half":"top","shape":"outer_right","waterlogged":"false"},"id":10202},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"true"},"id":10203},{"properties":{"facing":"south","half":"bottom","shape":"straight","waterlogged":"false"},"id":10204},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10205},{"properties":{"facing":"south","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10206},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10207},{"properties":{"facing":"south","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10208},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10209},{"properties":{"facing":"south","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10210},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10211},{"properties":{"facing":"south","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10212},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"true"},"id":10213},{"properties":{"facing":"west","half":"top","shape":"straight","waterlogged":"false"},"id":10214},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"true"},"id":10215},{"properties":{"facing":"west","half":"top","shape":"inner_left","waterlogged":"false"},"id":10216},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"true"},"id":10217},{"properties":{"facing":"west","half":"top","shape":"inner_right","waterlogged":"false"},"id":10218},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"true"},"id":10219},{"properties":{"facing":"west","half":"top","shape":"outer_left","waterlogged":"false"},"id":10220},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"true"},"id":10221},{"properties":{"facing":"west","half":"top","shape":"outer_right","waterlogged":"false"},"id":10222},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"true"},"id":10223},{"properties":{"facing":"west","half":"bottom","shape":"straight","waterlogged":"false"},"id":10224},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10225},{"properties":{"facing":"west","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10226},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10227},{"properties":{"facing":"west","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10228},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10229},{"properties":{"facing":"west","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10230},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10231},{"properties":{"facing":"west","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10232},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"true"},"id":10233},{"properties":{"facing":"east","half":"top","shape":"straight","waterlogged":"false"},"id":10234},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"true"},"id":10235},{"properties":{"facing":"east","half":"top","shape":"inner_left","waterlogged":"false"},"id":10236},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"true"},"id":10237},{"properties":{"facing":"east","half":"top","shape":"inner_right","waterlogged":"false"},"id":10238},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"true"},"id":10239},{"properties":{"facing":"east","half":"top","shape":"outer_left","waterlogged":"false"},"id":10240},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"true"},"id":10241},{"properties":{"facing":"east","half":"top","shape":"outer_right","waterlogged":"false"},"id":10242},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"true"},"id":10243},{"properties":{"facing":"east","half":"bottom","shape":"straight","waterlogged":"false"},"id":10244},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"true"},"id":10245},{"properties":{"facing":"east","half":"bottom","shape":"inner_left","waterlogged":"false"},"id":10246},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"true"},"id":10247},{"properties":{"facing":"east","half":"bottom","shape":"inner_right","waterlogged":"false"},"id":10248},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"true"},"id":10249},{"properties":{"facing":"east","half":"bottom","shape":"outer_left","waterlogged":"false"},"id":10250},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"true"},"id":10251},{"properties":{"facing":"east","half":"bottom","shape":"outer_right","waterlogged":"false"},"id":10252}]},"polished_granite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10253},{"properties":{"type":"top","waterlogged":"false"},"id":10254},{"properties":{"type":"bottom","waterlogged":"true"},"id":10255},{"properties":{"type":"bottom","waterlogged":"false"},"id":10256},{"properties":{"type":"double","waterlogged":"true"},"id":10257},{"properties":{"type":"double","waterlogged":"false"},"id":10258}]},"smooth_red_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10259},{"properties":{"type":"top","waterlogged":"false"},"id":10260},{"properties":{"type":"bottom","waterlogged":"true"},"id":10261},{"properties":{"type":"bottom","waterlogged":"false"},"id":10262},{"properties":{"type":"double","waterlogged":"true"},"id":10263},{"properties":{"type":"double","waterlogged":"false"},"id":10264}]},"mossy_stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10265},{"properties":{"type":"top","waterlogged":"false"},"id":10266},{"properties":{"type":"bottom","waterlogged":"true"},"id":10267},{"properties":{"type":"bottom","waterlogged":"false"},"id":10268},{"properties":{"type":"double","waterlogged":"true"},"id":10269},{"properties":{"type":"double","waterlogged":"false"},"id":10270}]},"polished_diorite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10271},{"properties":{"type":"top","waterlogged":"false"},"id":10272},{"properties":{"type":"bottom","waterlogged":"true"},"id":10273},{"properties":{"type":"bottom","waterlogged":"false"},"id":10274},{"properties":{"type":"double","waterlogged":"true"},"id":10275},{"properties":{"type":"double","waterlogged":"false"},"id":10276}]},"mossy_cobblestone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10277},{"properties":{"type":"top","waterlogged":"false"},"id":10278},{"properties":{"type":"bottom","waterlogged":"true"},"id":10279},{"properties":{"type":"bottom","waterlogged":"false"},"id":10280},{"properties":{"type":"double","waterlogged":"true"},"id":10281},{"properties":{"type":"double","waterlogged":"false"},"id":10282}]},"end_stone_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10283},{"properties":{"type":"top","waterlogged":"false"},"id":10284},{"properties":{"type":"bottom","waterlogged":"true"},"id":10285},{"properties":{"type":"bottom","waterlogged":"false"},"id":10286},{"properties":{"type":"double","waterlogged":"true"},"id":10287},{"properties":{"type":"double","waterlogged":"false"},"id":10288}]},"smooth_sandstone_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10289},{"properties":{"type":"top","waterlogged":"false"},"id":10290},{"properties":{"type":"bottom","waterlogged":"true"},"id":10291},{"properties":{"type":"bottom","waterlogged":"false"},"id":10292},{"properties":{"type":"double","waterlogged":"true"},"id":10293},{"properties":{"type":"double","waterlogged":"false"},"id":10294}]},"smooth_quartz_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10295},{"properties":{"type":"top","waterlogged":"false"},"id":10296},{"properties":{"type":"bottom","waterlogged":"true"},"id":10297},{"properties":{"type":"bottom","waterlogged":"false"},"id":10298},{"properties":{"type":"double","waterlogged":"true"},"id":10299},{"properties":{"type":"double","waterlogged":"false"},"id":10300}]},"granite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10301},{"properties":{"type":"top","waterlogged":"false"},"id":10302},{"properties":{"type":"bottom","waterlogged":"true"},"id":10303},{"properties":{"type":"bottom","waterlogged":"false"},"id":10304},{"properties":{"type":"double","waterlogged":"true"},"id":10305},{"properties":{"type":"double","waterlogged":"false"},"id":10306}]},"andesite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10307},{"properties":{"type":"top","waterlogged":"false"},"id":10308},{"properties":{"type":"bottom","waterlogged":"true"},"id":10309},{"properties":{"type":"bottom","waterlogged":"false"},"id":10310},{"properties":{"type":"double","waterlogged":"true"},"id":10311},{"properties":{"type":"double","waterlogged":"false"},"id":10312}]},"red_nether_brick_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10313},{"properties":{"type":"top","waterlogged":"false"},"id":10314},{"properties":{"type":"bottom","waterlogged":"true"},"id":10315},{"properties":{"type":"bottom","waterlogged":"false"},"id":10316},{"properties":{"type":"double","waterlogged":"true"},"id":10317},{"properties":{"type":"double","waterlogged":"false"},"id":10318}]},"polished_andesite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10319},{"properties":{"type":"top","waterlogged":"false"},"id":10320},{"properties":{"type":"bottom","waterlogged":"true"},"id":10321},{"properties":{"type":"bottom","waterlogged":"false"},"id":10322},{"properties":{"type":"double","waterlogged":"true"},"id":10323},{"properties":{"type":"double","waterlogged":"false"},"id":10324}]},"diorite_slab":{"properties":{"type":["top","bottom","double"],"waterlogged":["true","false"]},"states":[{"properties":{"type":"top","waterlogged":"true"},"id":10325},{"properties":{"type":"top","waterlogged":"false"},"id":10326},{"properties":{"type":"bottom","waterlogged":"true"},"id":10327},{"properties":{"type":"bottom","waterlogged":"false"},"id":10328},{"properties":{"type":"double","waterlogged":"true"},"id":10329},{"properties":{"type":"double","waterlogged":"false"},"id":10330}]},"brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10331},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10332},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10333},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10334},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10335},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10336},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10337},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10338},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10339},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10340},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10341},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10342},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10343},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10344},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10345},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10346},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10347},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10348},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10349},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10350},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10351},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10352},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10353},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10354},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10355},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10356},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10357},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10358},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10359},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10360},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10361},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10362},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10363},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10364},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10365},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10366},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10367},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10368},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10369},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10370},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10371},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10372},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10373},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10374},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10375},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10376},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10377},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10378},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10379},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10380},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10381},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10382},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10383},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10384},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10385},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10386},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10387},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10388},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10389},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10390},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10391},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10392},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10393},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10394}]},"prismarine_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10395},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10396},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10397},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10398},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10399},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10400},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10401},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10402},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10403},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10404},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10405},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10406},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10407},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10408},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10409},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10410},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10411},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10412},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10413},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10414},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10415},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10416},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10417},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10418},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10419},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10420},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10421},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10422},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10423},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10424},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10425},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10426},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10427},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10428},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10429},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10430},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10431},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10432},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10433},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10434},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10435},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10436},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10437},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10438},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10439},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10440},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10441},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10442},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10443},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10444},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10445},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10446},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10447},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10448},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10449},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10450},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10451},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10452},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10453},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10454},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10455},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10456},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10457},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10458}]},"red_sandstone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10459},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10460},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10461},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10462},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10463},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10464},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10465},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10466},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10467},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10468},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10469},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10470},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10471},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10472},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10473},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10474},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10475},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10476},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10477},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10478},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10479},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10480},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10481},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10482},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10483},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10484},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10485},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10486},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10487},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10488},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10489},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10490},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10491},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10492},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10493},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10494},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10495},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10496},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10497},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10498},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10499},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10500},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10501},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10502},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10503},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10504},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10505},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10506},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10507},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10508},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10509},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10510},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10511},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10512},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10513},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10514},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10515},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10516},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10517},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10518},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10519},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10520},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10521},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10522}]},"mossy_stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10523},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10524},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10525},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10526},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10527},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10528},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10529},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10530},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10531},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10532},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10533},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10534},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10535},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10536},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10537},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10538},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10539},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10540},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10541},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10542},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10543},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10544},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10545},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10546},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10547},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10548},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10549},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10550},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10551},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10552},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10553},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10554},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10555},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10556},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10557},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10558},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10559},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10560},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10561},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10562},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10563},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10564},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10565},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10566},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10567},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10568},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10569},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10570},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10571},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10572},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10573},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10574},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10575},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10576},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10577},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10578},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10579},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10580},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10581},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10582},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10583},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10584},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10585},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10586}]},"granite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10587},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10588},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10589},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10590},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10591},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10592},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10593},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10594},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10595},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10596},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10597},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10598},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10599},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10600},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10601},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10602},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10603},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10604},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10605},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10606},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10607},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10608},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10609},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10610},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10611},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10612},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10613},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10614},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10615},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10616},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10617},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10618},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10619},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10620},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10621},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10622},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10623},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10624},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10625},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10626},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10627},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10628},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10629},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10630},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10631},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10632},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10633},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10634},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10635},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10636},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10637},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10638},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10639},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10640},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10641},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10642},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10643},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10644},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10645},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10646},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10647},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10648},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10649},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10650}]},"stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10651},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10652},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10653},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10654},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10655},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10656},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10657},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10658},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10659},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10660},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10661},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10662},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10663},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10664},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10665},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10666},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10667},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10668},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10669},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10670},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10671},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10672},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10673},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10674},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10675},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10676},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10677},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10678},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10679},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10680},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10681},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10682},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10683},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10684},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10685},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10686},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10687},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10688},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10689},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10690},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10691},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10692},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10693},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10694},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10695},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10696},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10697},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10698},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10699},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10700},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10701},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10702},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10703},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10704},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10705},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10706},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10707},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10708},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10709},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10710},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10711},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10712},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10713},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10714}]},"nether_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10715},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10716},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10717},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10718},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10719},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10720},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10721},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10722},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10723},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10724},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10725},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10726},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10727},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10728},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10729},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10730},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10731},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10732},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10733},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10734},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10735},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10736},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10737},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10738},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10739},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10740},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10741},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10742},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10743},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10744},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10745},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10746},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10747},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10748},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10749},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10750},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10751},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10752},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10753},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10754},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10755},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10756},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10757},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10758},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10759},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10760},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10761},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10762},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10763},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10764},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10765},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10766},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10767},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10768},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10769},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10770},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10771},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10772},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10773},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10774},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10775},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10776},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10777},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10778}]},"andesite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10779},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10780},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10781},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10782},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10783},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10784},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10785},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10786},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10787},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10788},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10789},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10790},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10791},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10792},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10793},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10794},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10795},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10796},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10797},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10798},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10799},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10800},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10801},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10802},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10803},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10804},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10805},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10806},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10807},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10808},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10809},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10810},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10811},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10812},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10813},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10814},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10815},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10816},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10817},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10818},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10819},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10820},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10821},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10822},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10823},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10824},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10825},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10826},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10827},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10828},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10829},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10830},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10831},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10832},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10833},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10834},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10835},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10836},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10837},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10838},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10839},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10840},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10841},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10842}]},"red_nether_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10843},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10844},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10845},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10846},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10847},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10848},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10849},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10850},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10851},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10852},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10853},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10854},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10855},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10856},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10857},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10858},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10859},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10860},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10861},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10862},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10863},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10864},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10865},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10866},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10867},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10868},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10869},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10870},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10871},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10872},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10873},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10874},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10875},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10876},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10877},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10878},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10879},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10880},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10881},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10882},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10883},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10884},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10885},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10886},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10887},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10888},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10889},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10890},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10891},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10892},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10893},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10894},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10895},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10896},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10897},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10898},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10899},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10900},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10901},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10902},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10903},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10904},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10905},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10906}]},"sandstone_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10907},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10908},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10909},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10910},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10911},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10912},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10913},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10914},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10915},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10916},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10917},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10918},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10919},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10920},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10921},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10922},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10923},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10924},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10925},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10926},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10927},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10928},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10929},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10930},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10931},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10932},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10933},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10934},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10935},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10936},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10937},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10938},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10939},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10940},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10941},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10942},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10943},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10944},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10945},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10946},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10947},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10948},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10949},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10950},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10951},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10952},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10953},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10954},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10955},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10956},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10957},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10958},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10959},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10960},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10961},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10962},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10963},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10964},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10965},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10966},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10967},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10968},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10969},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10970}]},"end_stone_brick_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10971},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10972},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10973},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10974},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10975},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10976},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10977},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10978},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10979},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10980},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10981},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10982},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10983},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":10984},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":10985},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":10986},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":10987},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":10988},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":10989},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":10990},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":10991},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":10992},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":10993},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":10994},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":10995},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":10996},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":10997},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":10998},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":10999},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11000},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11001},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11002},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11003},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11004},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11005},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11006},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11007},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11008},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11009},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11010},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11011},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11012},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11013},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11014},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11015},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11016},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11017},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11018},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11019},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11020},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11021},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11022},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11023},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11024},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11025},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11026},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11027},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11028},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11029},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11030},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11031},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11032},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11033},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11034}]},"diorite_wall":{"properties":{"east":["true","false"],"north":["true","false"],"south":["true","false"],"up":["true","false"],"waterlogged":["true","false"],"west":["true","false"]},"states":[{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11035},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11036},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11037},{"properties":{"east":"true","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11038},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11039},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11040},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11041},{"properties":{"east":"true","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11042},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11043},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11044},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11045},{"properties":{"east":"true","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11046},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11047},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11048},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11049},{"properties":{"east":"true","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11050},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11051},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11052},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11053},{"properties":{"east":"true","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11054},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11055},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11056},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11057},{"properties":{"east":"true","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11058},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11059},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11060},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11061},{"properties":{"east":"true","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11062},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11063},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11064},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11065},{"properties":{"east":"true","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11066},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11067},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11068},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11069},{"properties":{"east":"false","north":"true","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11070},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11071},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11072},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11073},{"properties":{"east":"false","north":"true","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11074},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11075},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11076},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11077},{"properties":{"east":"false","north":"true","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11078},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11079},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11080},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11081},{"properties":{"east":"false","north":"true","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11082},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"true"},"id":11083},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"true","west":"false"},"id":11084},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"true"},"id":11085},{"properties":{"east":"false","north":"false","south":"true","up":"true","waterlogged":"false","west":"false"},"id":11086},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"true"},"id":11087},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"true","west":"false"},"id":11088},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"true"},"id":11089},{"properties":{"east":"false","north":"false","south":"true","up":"false","waterlogged":"false","west":"false"},"id":11090},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"true"},"id":11091},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"true","west":"false"},"id":11092},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"true"},"id":11093},{"properties":{"east":"false","north":"false","south":"false","up":"true","waterlogged":"false","west":"false"},"id":11094},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"true"},"id":11095},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"true","west":"false"},"id":11096},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"true"},"id":11097},{"properties":{"east":"false","north":"false","south":"false","up":"false","waterlogged":"false","west":"false"},"id":11098}]},"scaffolding":{"properties":{"bottom":["true","false"],"distance":["0","1","2","3","4","5","6","7"],"waterlogged":["true","false"]},"states":[{"properties":{"bottom":"true","distance":"0","waterlogged":"true"},"id":11099},{"properties":{"bottom":"true","distance":"0","waterlogged":"false"},"id":11100},{"properties":{"bottom":"true","distance":"1","waterlogged":"true"},"id":11101},{"properties":{"bottom":"true","distance":"1","waterlogged":"false"},"id":11102},{"properties":{"bottom":"true","distance":"2","waterlogged":"true"},"id":11103},{"properties":{"bottom":"true","distance":"2","waterlogged":"false"},"id":11104},{"properties":{"bottom":"true","distance":"3","waterlogged":"true"},"id":11105},{"properties":{"bottom":"true","distance":"3","waterlogged":"false"},"id":11106},{"properties":{"bottom":"true","distance":"4","waterlogged":"true"},"id":11107},{"properties":{"bottom":"true","distance":"4","waterlogged":"false"},"id":11108},{"properties":{"bottom":"true","distance":"5","waterlogged":"true"},"id":11109},{"properties":{"bottom":"true","distance":"5","waterlogged":"false"},"id":11110},{"properties":{"bottom":"true","distance":"6","waterlogged":"true"},"id":11111},{"properties":{"bottom":"true","distance":"6","waterlogged":"false"},"id":11112},{"properties":{"bottom":"true","distance":"7","waterlogged":"true"},"id":11113},{"properties":{"bottom":"true","distance":"7","waterlogged":"false"},"id":11114},{"properties":{"bottom":"false","distance":"0","waterlogged":"true"},"id":11115},{"properties":{"bottom":"false","distance":"0","waterlogged":"false"},"id":11116},{"properties":{"bottom":"false","distance":"1","waterlogged":"true"},"id":11117},{"properties":{"bottom":"false","distance":"1","waterlogged":"false"},"id":11118},{"properties":{"bottom":"false","distance":"2","waterlogged":"true"},"id":11119},{"properties":{"bottom":"false","distance":"2","waterlogged":"false"},"id":11120},{"properties":{"bottom":"false","distance":"3","waterlogged":"true"},"id":11121},{"properties":{"bottom":"false","distance":"3","waterlogged":"false"},"id":11122},{"properties":{"bottom":"false","distance":"4","waterlogged":"true"},"id":11123},{"properties":{"bottom":"false","distance":"4","waterlogged":"false"},"id":11124},{"properties":{"bottom":"false","distance":"5","waterlogged":"true"},"id":11125},{"properties":{"bottom":"false","distance":"5","waterlogged":"false"},"id":11126},{"properties":{"bottom":"false","distance":"6","waterlogged":"true"},"id":11127},{"properties":{"bottom":"false","distance":"6","waterlogged":"false"},"id":11128},{"properties":{"bottom":"false","distance":"7","waterlogged":"true"},"id":11129},{"properties":{"bottom":"false","distance":"7","waterlogged":"false"},"id":11130}]},"loom":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":11131},{"properties":{"facing":"south"},"id":11132},{"properties":{"facing":"west"},"id":11133},{"properties":{"facing":"east"},"id":11134}]},"barrel":{"properties":{"facing":["north","east","south","west","up","down"],"open":["true","false"]},"states":[{"properties":{"facing":"north","open":"true"},"id":11135},{"properties":{"facing":"north","open":"false"},"id":11136},{"properties":{"facing":"east","open":"true"},"id":11137},{"properties":{"facing":"east","open":"false"},"id":11138},{"properties":{"facing":"south","open":"true"},"id":11139},{"properties":{"facing":"south","open":"false"},"id":11140},{"properties":{"facing":"west","open":"true"},"id":11141},{"properties":{"facing":"west","open":"false"},"id":11142},{"properties":{"facing":"up","open":"true"},"id":11143},{"properties":{"facing":"up","open":"false"},"id":11144},{"properties":{"facing":"down","open":"true"},"id":11145},{"properties":{"facing":"down","open":"false"},"id":11146}]},"smoker":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":11147},{"properties":{"facing":"north","lit":"false"},"id":11148},{"properties":{"facing":"south","lit":"true"},"id":11149},{"properties":{"facing":"south","lit":"false"},"id":11150},{"properties":{"facing":"west","lit":"true"},"id":11151},{"properties":{"facing":"west","lit":"false"},"id":11152},{"properties":{"facing":"east","lit":"true"},"id":11153},{"properties":{"facing":"east","lit":"false"},"id":11154}]},"blast_furnace":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true"},"id":11155},{"properties":{"facing":"north","lit":"false"},"id":11156},{"properties":{"facing":"south","lit":"true"},"id":11157},{"properties":{"facing":"south","lit":"false"},"id":11158},{"properties":{"facing":"west","lit":"true"},"id":11159},{"properties":{"facing":"west","lit":"false"},"id":11160},{"properties":{"facing":"east","lit":"true"},"id":11161},{"properties":{"facing":"east","lit":"false"},"id":11162}]},"cartography_table":{"states":[{"id":11163}]},"fletching_table":{"states":[{"id":11164}]},"grindstone":{"properties":{"face":["floor","wall","ceiling"],"facing":["north","south","west","east"]},"states":[{"properties":{"face":"floor","facing":"north"},"id":11165},{"properties":{"face":"floor","facing":"south"},"id":11166},{"properties":{"face":"floor","facing":"west"},"id":11167},{"properties":{"face":"floor","facing":"east"},"id":11168},{"properties":{"face":"wall","facing":"north"},"id":11169},{"properties":{"face":"wall","facing":"south"},"id":11170},{"properties":{"face":"wall","facing":"west"},"id":11171},{"properties":{"face":"wall","facing":"east"},"id":11172},{"properties":{"face":"ceiling","facing":"north"},"id":11173},{"properties":{"face":"ceiling","facing":"south"},"id":11174},{"properties":{"face":"ceiling","facing":"west"},"id":11175},{"properties":{"face":"ceiling","facing":"east"},"id":11176}]},"lectern":{"properties":{"facing":["north","south","west","east"],"has_book":["true","false"],"powered":["true","false"]},"states":[{"properties":{"facing":"north","has_book":"true","powered":"true"},"id":11177},{"properties":{"facing":"north","has_book":"true","powered":"false"},"id":11178},{"properties":{"facing":"north","has_book":"false","powered":"true"},"id":11179},{"properties":{"facing":"north","has_book":"false","powered":"false"},"id":11180},{"properties":{"facing":"south","has_book":"true","powered":"true"},"id":11181},{"properties":{"facing":"south","has_book":"true","powered":"false"},"id":11182},{"properties":{"facing":"south","has_book":"false","powered":"true"},"id":11183},{"properties":{"facing":"south","has_book":"false","powered":"false"},"id":11184},{"properties":{"facing":"west","has_book":"true","powered":"true"},"id":11185},{"properties":{"facing":"west","has_book":"true","powered":"false"},"id":11186},{"properties":{"facing":"west","has_book":"false","powered":"true"},"id":11187},{"properties":{"facing":"west","has_book":"false","powered":"false"},"id":11188},{"properties":{"facing":"east","has_book":"true","powered":"true"},"id":11189},{"properties":{"facing":"east","has_book":"true","powered":"false"},"id":11190},{"properties":{"facing":"east","has_book":"false","powered":"true"},"id":11191},{"properties":{"facing":"east","has_book":"false","powered":"false"},"id":11192}]},"smithing_table":{"states":[{"id":11193}]},"stonecutter":{"properties":{"facing":["north","south","west","east"]},"states":[{"properties":{"facing":"north"},"id":11194},{"properties":{"facing":"south"},"id":11195},{"properties":{"facing":"west"},"id":11196},{"properties":{"facing":"east"},"id":11197}]},"bell":{"properties":{"attachment":["floor","ceiling","single_wall","double_wall"],"facing":["north","south","west","east"],"powered":["true","false"]},"states":[{"properties":{"attachment":"floor","facing":"north","powered":"true"},"id":11198},{"properties":{"attachment":"floor","facing":"north","powered":"false"},"id":11199},{"properties":{"attachment":"floor","facing":"south","powered":"true"},"id":11200},{"properties":{"attachment":"floor","facing":"south","powered":"false"},"id":11201},{"properties":{"attachment":"floor","facing":"west","powered":"true"},"id":11202},{"properties":{"attachment":"floor","facing":"west","powered":"false"},"id":11203},{"properties":{"attachment":"floor","facing":"east","powered":"true"},"id":11204},{"properties":{"attachment":"floor","facing":"east","powered":"false"},"id":11205},{"properties":{"attachment":"ceiling","facing":"north","powered":"true"},"id":11206},{"properties":{"attachment":"ceiling","facing":"north","powered":"false"},"id":11207},{"properties":{"attachment":"ceiling","facing":"south","powered":"true"},"id":11208},{"properties":{"attachment":"ceiling","facing":"south","powered":"false"},"id":11209},{"properties":{"attachment":"ceiling","facing":"west","powered":"true"},"id":11210},{"properties":{"attachment":"ceiling","facing":"west","powered":"false"},"id":11211},{"properties":{"attachment":"ceiling","facing":"east","powered":"true"},"id":11212},{"properties":{"attachment":"ceiling","facing":"east","powered":"false"},"id":11213},{"properties":{"attachment":"single_wall","facing":"north","powered":"true"},"id":11214},{"properties":{"attachment":"single_wall","facing":"north","powered":"false"},"id":11215},{"properties":{"attachment":"single_wall","facing":"south","powered":"true"},"id":11216},{"properties":{"attachment":"single_wall","facing":"south","powered":"false"},"id":11217},{"properties":{"attachment":"single_wall","facing":"west","powered":"true"},"id":11218},{"properties":{"attachment":"single_wall","facing":"west","powered":"false"},"id":11219},{"properties":{"attachment":"single_wall","facing":"east","powered":"true"},"id":11220},{"properties":{"attachment":"single_wall","facing":"east","powered":"false"},"id":11221},{"properties":{"attachment":"double_wall","facing":"north","powered":"true"},"id":11222},{"properties":{"attachment":"double_wall","facing":"north","powered":"false"},"id":11223},{"properties":{"attachment":"double_wall","facing":"south","powered":"true"},"id":11224},{"properties":{"attachment":"double_wall","facing":"south","powered":"false"},"id":11225},{"properties":{"attachment":"double_wall","facing":"west","powered":"true"},"id":11226},{"properties":{"attachment":"double_wall","facing":"west","powered":"false"},"id":11227},{"properties":{"attachment":"double_wall","facing":"east","powered":"true"},"id":11228},{"properties":{"attachment":"double_wall","facing":"east","powered":"false"},"id":11229}]},"lantern":{"properties":{"hanging":["true","false"]},"states":[{"properties":{"hanging":"true"},"id":11230},{"properties":{"hanging":"false"},"id":11231}]},"campfire":{"properties":{"facing":["north","south","west","east"],"lit":["true","false"],"signal_fire":["true","false"],"waterlogged":["true","false"]},"states":[{"properties":{"facing":"north","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11232},{"properties":{"facing":"north","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11233},{"properties":{"facing":"north","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11234},{"properties":{"facing":"north","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11235},{"properties":{"facing":"north","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11236},{"properties":{"facing":"north","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11237},{"properties":{"facing":"north","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11238},{"properties":{"facing":"north","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11239},{"properties":{"facing":"south","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11240},{"properties":{"facing":"south","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11241},{"properties":{"facing":"south","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11242},{"properties":{"facing":"south","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11243},{"properties":{"facing":"south","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11244},{"properties":{"facing":"south","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11245},{"properties":{"facing":"south","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11246},{"properties":{"facing":"south","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11247},{"properties":{"facing":"west","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11248},{"properties":{"facing":"west","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11249},{"properties":{"facing":"west","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11250},{"properties":{"facing":"west","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11251},{"properties":{"facing":"west","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11252},{"properties":{"facing":"west","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11253},{"properties":{"facing":"west","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11254},{"properties":{"facing":"west","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11255},{"properties":{"facing":"east","lit":"true","signal_fire":"true","waterlogged":"true"},"id":11256},{"properties":{"facing":"east","lit":"true","signal_fire":"true","waterlogged":"false"},"id":11257},{"properties":{"facing":"east","lit":"true","signal_fire":"false","waterlogged":"true"},"id":11258},{"properties":{"facing":"east","lit":"true","signal_fire":"false","waterlogged":"false"},"id":11259},{"properties":{"facing":"east","lit":"false","signal_fire":"true","waterlogged":"true"},"id":11260},{"properties":{"facing":"east","lit":"false","signal_fire":"true","waterlogged":"false"},"id":11261},{"properties":{"facing":"east","lit":"false","signal_fire":"false","waterlogged":"true"},"id":11262},{"properties":{"facing":"east","lit":"false","signal_fire":"false","waterlogged":"false"},"id":11263}]},"sweet_berry_bush":{"properties":{"age":["0","1","2","3"]},"states":[{"properties":{"age":"0"},"id":11264},{"properties":{"age":"1"},"id":11265},{"properties":{"age":"2"},"id":11266},{"properties":{"age":"3"},"id":11267}]},"structure_block":{"properties":{"mode":["save","load","corner","data"]},"states":[{"properties":{"mode":"save"},"id":11268},{"properties":{"mode":"load"},"id":11269},{"properties":{"mode":"corner"},"id":11270},{"properties":{"mode":"data"},"id":11271}]},"jigsaw":{"properties":{"facing":["north","east","south","west","up","down"]},"states":[{"properties":{"facing":"north"},"id":11272},{"properties":{"facing":"east"},"id":11273},{"properties":{"facing":"south"},"id":11274},{"properties":{"facing":"west"},"id":11275},{"properties":{"facing":"up"},"id":11276},{"properties":{"facing":"down"},"id":11277}]},"composter":{"properties":{"level":["0","1","2","3","4","5","6","7","8"]},"states":[{"properties":{"level":"0"},"id":11278},{"properties":{"level":"1"},"id":11279},{"properties":{"level":"2"},"id":11280},{"properties":{"level":"3"},"id":11281},{"properties":{"level":"4"},"id":11282},{"properties":{"level":"5"},"id":11283},{"properties":{"level":"6"},"id":11284},{"properties":{"level":"7"},"id":11285},{"properties":{"level":"8"},"id":11286}]},"bee_nest":{"properties":{"facing":["north","south","west","east"],"honey_level":["0","1","2","3","4","5"]},"states":[{"properties":{"facing":"north","honey_level":"0"},"id":11287},{"properties":{"facing":"north","honey_level":"1"},"id":11288},{"properties":{"facing":"north","honey_level":"2"},"id":11289},{"properties":{"facing":"north","honey_level":"3"},"id":11290},{"properties":{"facing":"north","honey_level":"4"},"id":11291},{"properties":{"facing":"north","honey_level":"5"},"id":11292},{"properties":{"facing":"south","honey_level":"0"},"id":11293},{"properties":{"facing":"south","honey_level":"1"},"id":11294},{"properties":{"facing":"south","honey_level":"2"},"id":11295},{"properties":{"facing":"south","honey_level":"3"},"id":11296},{"properties":{"facing":"south","honey_level":"4"},"id":11297},{"properties":{"facing":"south","honey_level":"5"},"id":11298},{"properties":{"facing":"west","honey_level":"0"},"id":11299},{"properties":{"facing":"west","honey_level":"1"},"id":11300},{"properties":{"facing":"west","honey_level":"2"},"id":11301},{"properties":{"facing":"west","honey_level":"3"},"id":11302},{"properties":{"facing":"west","honey_level":"4"},"id":11303},{"properties":{"facing":"west","honey_level":"5"},"id":11304},{"properties":{"facing":"east","honey_level":"0"},"id":11305},{"properties":{"facing":"east","honey_level":"1"},"id":11306},{"properties":{"facing":"east","honey_level":"2"},"id":11307},{"properties":{"facing":"east","honey_level":"3"},"id":11308},{"properties":{"facing":"east","honey_level":"4"},"id":11309},{"properties":{"facing":"east","honey_level":"5"},"id":11310}]},"beehive":{"properties":{"facing":["north","south","west","east"],"honey_level":["0","1","2","3","4","5"]},"states":[{"properties":{"facing":"north","honey_level":"0"},"id":11311},{"properties":{"facing":"north","honey_level":"1"},"id":11312},{"properties":{"facing":"north","honey_level":"2"},"id":11313},{"properties":{"facing":"north","honey_level":"3"},"id":11314},{"properties":{"facing":"north","honey_level":"4"},"id":11315},{"properties":{"facing":"north","honey_level":"5"},"id":11316},{"properties":{"facing":"south","honey_level":"0"},"id":11317},{"properties":{"facing":"south","honey_level":"1"},"id":11318},{"properties":{"facing":"south","honey_level":"2"},"id":11319},{"properties":{"facing":"south","honey_level":"3"},"id":11320},{"properties":{"facing":"south","honey_level":"4"},"id":11321},{"properties":{"facing":"south","honey_level":"5"},"id":11322},{"properties":{"facing":"west","honey_level":"0"},"id":11323},{"properties":{"facing":"west","honey_level":"1"},"id":11324},{"properties":{"facing":"west","honey_level":"2"},"id":11325},{"properties":{"facing":"west","honey_level":"3"},"id":11326},{"properties":{"facing":"west","honey_level":"4"},"id":11327},{"properties":{"facing":"west","honey_level":"5"},"id":11328},{"properties":{"facing":"east","honey_level":"0"},"id":11329},{"properties":{"facing":"east","honey_level":"1"},"id":11330},{"properties":{"facing":"east","honey_level":"2"},"id":11331},{"properties":{"facing":"east","honey_level":"3"},"id":11332},{"properties":{"facing":"east","honey_level":"4"},"id":11333},{"properties":{"facing":"east","honey_level":"5"},"id":11334}]},"honey_block":{"states":[{"id":11335}]},"honeycomb_block":{"states":[{"id":11336}]}}} \ 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 07cd3e4ed..a43cc74da 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":{"protocol_id":0,"entries":{"ambient.cave":{"protocol_id":0},"ambient.underwater.enter":{"protocol_id":1},"ambient.underwater.exit":{"protocol_id":2},"ambient.underwater.loop":{"protocol_id":3},"ambient.underwater.loop.additions":{"protocol_id":4},"ambient.underwater.loop.additions.rare":{"protocol_id":5},"ambient.underwater.loop.additions.ultra_rare":{"protocol_id":6},"block.anvil.break":{"protocol_id":7},"block.anvil.destroy":{"protocol_id":8},"block.anvil.fall":{"protocol_id":9},"block.anvil.hit":{"protocol_id":10},"block.anvil.land":{"protocol_id":11},"block.anvil.place":{"protocol_id":12},"block.anvil.step":{"protocol_id":13},"block.anvil.use":{"protocol_id":14},"item.armor.equip_chain":{"protocol_id":15},"item.armor.equip_diamond":{"protocol_id":16},"item.armor.equip_elytra":{"protocol_id":17},"item.armor.equip_generic":{"protocol_id":18},"item.armor.equip_gold":{"protocol_id":19},"item.armor.equip_iron":{"protocol_id":20},"item.armor.equip_leather":{"protocol_id":21},"item.armor.equip_turtle":{"protocol_id":22},"entity.armor_stand.break":{"protocol_id":23},"entity.armor_stand.fall":{"protocol_id":24},"entity.armor_stand.hit":{"protocol_id":25},"entity.armor_stand.place":{"protocol_id":26},"entity.arrow.hit":{"protocol_id":27},"entity.arrow.hit_player":{"protocol_id":28},"entity.arrow.shoot":{"protocol_id":29},"item.axe.strip":{"protocol_id":30},"block.bamboo.break":{"protocol_id":31},"block.bamboo.fall":{"protocol_id":32},"block.bamboo.hit":{"protocol_id":33},"block.bamboo.place":{"protocol_id":34},"block.bamboo.step":{"protocol_id":35},"block.bamboo_sapling.break":{"protocol_id":36},"block.bamboo_sapling.hit":{"protocol_id":37},"block.bamboo_sapling.place":{"protocol_id":38},"block.barrel.close":{"protocol_id":39},"block.barrel.open":{"protocol_id":40},"entity.bat.ambient":{"protocol_id":41},"entity.bat.death":{"protocol_id":42},"entity.bat.hurt":{"protocol_id":43},"entity.bat.loop":{"protocol_id":44},"entity.bat.takeoff":{"protocol_id":45},"block.beacon.activate":{"protocol_id":46},"block.beacon.ambient":{"protocol_id":47},"block.beacon.deactivate":{"protocol_id":48},"block.beacon.power_select":{"protocol_id":49},"entity.bee.death":{"protocol_id":50},"entity.bee.hurt":{"protocol_id":51},"entity.bee.loop_aggressive":{"protocol_id":52},"entity.bee.loop":{"protocol_id":53},"entity.bee.sting":{"protocol_id":54},"entity.bee.pollinate":{"protocol_id":55},"block.beehive.drip":{"protocol_id":56},"block.beehive.enter":{"protocol_id":57},"block.beehive.exit":{"protocol_id":58},"block.beehive.shear":{"protocol_id":59},"block.beehive.work":{"protocol_id":60},"block.bell.use":{"protocol_id":61},"block.bell.resonate":{"protocol_id":62},"entity.blaze.ambient":{"protocol_id":63},"entity.blaze.burn":{"protocol_id":64},"entity.blaze.death":{"protocol_id":65},"entity.blaze.hurt":{"protocol_id":66},"entity.blaze.shoot":{"protocol_id":67},"entity.boat.paddle_land":{"protocol_id":68},"entity.boat.paddle_water":{"protocol_id":69},"item.book.page_turn":{"protocol_id":70},"item.book.put":{"protocol_id":71},"entity.fishing_bobber.retrieve":{"protocol_id":72},"entity.fishing_bobber.splash":{"protocol_id":73},"entity.fishing_bobber.throw":{"protocol_id":74},"block.blastfurnace.fire_crackle":{"protocol_id":75},"item.bottle.empty":{"protocol_id":76},"item.bottle.fill":{"protocol_id":77},"item.bottle.fill_dragonbreath":{"protocol_id":78},"block.brewing_stand.brew":{"protocol_id":79},"block.bubble_column.bubble_pop":{"protocol_id":80},"block.bubble_column.upwards_ambient":{"protocol_id":81},"block.bubble_column.upwards_inside":{"protocol_id":82},"block.bubble_column.whirlpool_ambient":{"protocol_id":83},"block.bubble_column.whirlpool_inside":{"protocol_id":84},"item.bucket.empty":{"protocol_id":85},"item.bucket.empty_fish":{"protocol_id":86},"item.bucket.empty_lava":{"protocol_id":87},"item.bucket.fill":{"protocol_id":88},"item.bucket.fill_fish":{"protocol_id":89},"item.bucket.fill_lava":{"protocol_id":90},"block.campfire.crackle":{"protocol_id":91},"entity.cat.ambient":{"protocol_id":92},"entity.cat.stray_ambient":{"protocol_id":93},"entity.cat.death":{"protocol_id":94},"entity.cat.eat":{"protocol_id":95},"entity.cat.hiss":{"protocol_id":96},"entity.cat.beg_for_food":{"protocol_id":97},"entity.cat.hurt":{"protocol_id":98},"entity.cat.purr":{"protocol_id":99},"entity.cat.purreow":{"protocol_id":100},"block.chest.close":{"protocol_id":101},"block.chest.locked":{"protocol_id":102},"block.chest.open":{"protocol_id":103},"entity.chicken.ambient":{"protocol_id":104},"entity.chicken.death":{"protocol_id":105},"entity.chicken.egg":{"protocol_id":106},"entity.chicken.hurt":{"protocol_id":107},"entity.chicken.step":{"protocol_id":108},"block.chorus_flower.death":{"protocol_id":109},"block.chorus_flower.grow":{"protocol_id":110},"item.chorus_fruit.teleport":{"protocol_id":111},"block.wool.break":{"protocol_id":112},"block.wool.fall":{"protocol_id":113},"block.wool.hit":{"protocol_id":114},"block.wool.place":{"protocol_id":115},"block.wool.step":{"protocol_id":116},"entity.cod.ambient":{"protocol_id":117},"entity.cod.death":{"protocol_id":118},"entity.cod.flop":{"protocol_id":119},"entity.cod.hurt":{"protocol_id":120},"block.comparator.click":{"protocol_id":121},"block.composter.empty":{"protocol_id":122},"block.composter.fill":{"protocol_id":123},"block.composter.fill_success":{"protocol_id":124},"block.composter.ready":{"protocol_id":125},"block.conduit.activate":{"protocol_id":126},"block.conduit.ambient":{"protocol_id":127},"block.conduit.ambient.short":{"protocol_id":128},"block.conduit.attack.target":{"protocol_id":129},"block.conduit.deactivate":{"protocol_id":130},"entity.cow.ambient":{"protocol_id":131},"entity.cow.death":{"protocol_id":132},"entity.cow.hurt":{"protocol_id":133},"entity.cow.milk":{"protocol_id":134},"entity.cow.step":{"protocol_id":135},"entity.creeper.death":{"protocol_id":136},"entity.creeper.hurt":{"protocol_id":137},"entity.creeper.primed":{"protocol_id":138},"block.crop.break":{"protocol_id":139},"item.crop.plant":{"protocol_id":140},"item.crossbow.hit":{"protocol_id":141},"item.crossbow.loading_end":{"protocol_id":142},"item.crossbow.loading_middle":{"protocol_id":143},"item.crossbow.loading_start":{"protocol_id":144},"item.crossbow.quick_charge_1":{"protocol_id":145},"item.crossbow.quick_charge_2":{"protocol_id":146},"item.crossbow.quick_charge_3":{"protocol_id":147},"item.crossbow.shoot":{"protocol_id":148},"block.dispenser.dispense":{"protocol_id":149},"block.dispenser.fail":{"protocol_id":150},"block.dispenser.launch":{"protocol_id":151},"entity.dolphin.ambient":{"protocol_id":152},"entity.dolphin.ambient_water":{"protocol_id":153},"entity.dolphin.attack":{"protocol_id":154},"entity.dolphin.death":{"protocol_id":155},"entity.dolphin.eat":{"protocol_id":156},"entity.dolphin.hurt":{"protocol_id":157},"entity.dolphin.jump":{"protocol_id":158},"entity.dolphin.play":{"protocol_id":159},"entity.dolphin.splash":{"protocol_id":160},"entity.dolphin.swim":{"protocol_id":161},"entity.donkey.ambient":{"protocol_id":162},"entity.donkey.angry":{"protocol_id":163},"entity.donkey.chest":{"protocol_id":164},"entity.donkey.death":{"protocol_id":165},"entity.donkey.hurt":{"protocol_id":166},"entity.drowned.ambient":{"protocol_id":167},"entity.drowned.ambient_water":{"protocol_id":168},"entity.drowned.death":{"protocol_id":169},"entity.drowned.death_water":{"protocol_id":170},"entity.drowned.hurt":{"protocol_id":171},"entity.drowned.hurt_water":{"protocol_id":172},"entity.drowned.shoot":{"protocol_id":173},"entity.drowned.step":{"protocol_id":174},"entity.drowned.swim":{"protocol_id":175},"entity.egg.throw":{"protocol_id":176},"entity.elder_guardian.ambient":{"protocol_id":177},"entity.elder_guardian.ambient_land":{"protocol_id":178},"entity.elder_guardian.curse":{"protocol_id":179},"entity.elder_guardian.death":{"protocol_id":180},"entity.elder_guardian.death_land":{"protocol_id":181},"entity.elder_guardian.flop":{"protocol_id":182},"entity.elder_guardian.hurt":{"protocol_id":183},"entity.elder_guardian.hurt_land":{"protocol_id":184},"item.elytra.flying":{"protocol_id":185},"block.enchantment_table.use":{"protocol_id":186},"block.ender_chest.close":{"protocol_id":187},"block.ender_chest.open":{"protocol_id":188},"entity.ender_dragon.ambient":{"protocol_id":189},"entity.ender_dragon.death":{"protocol_id":190},"entity.dragon_fireball.explode":{"protocol_id":191},"entity.ender_dragon.flap":{"protocol_id":192},"entity.ender_dragon.growl":{"protocol_id":193},"entity.ender_dragon.hurt":{"protocol_id":194},"entity.ender_dragon.shoot":{"protocol_id":195},"entity.ender_eye.death":{"protocol_id":196},"entity.ender_eye.launch":{"protocol_id":197},"entity.enderman.ambient":{"protocol_id":198},"entity.enderman.death":{"protocol_id":199},"entity.enderman.hurt":{"protocol_id":200},"entity.enderman.scream":{"protocol_id":201},"entity.enderman.stare":{"protocol_id":202},"entity.enderman.teleport":{"protocol_id":203},"entity.endermite.ambient":{"protocol_id":204},"entity.endermite.death":{"protocol_id":205},"entity.endermite.hurt":{"protocol_id":206},"entity.endermite.step":{"protocol_id":207},"entity.ender_pearl.throw":{"protocol_id":208},"block.end_gateway.spawn":{"protocol_id":209},"block.end_portal_frame.fill":{"protocol_id":210},"block.end_portal.spawn":{"protocol_id":211},"entity.evoker.ambient":{"protocol_id":212},"entity.evoker.cast_spell":{"protocol_id":213},"entity.evoker.celebrate":{"protocol_id":214},"entity.evoker.death":{"protocol_id":215},"entity.evoker_fangs.attack":{"protocol_id":216},"entity.evoker.hurt":{"protocol_id":217},"entity.evoker.prepare_attack":{"protocol_id":218},"entity.evoker.prepare_summon":{"protocol_id":219},"entity.evoker.prepare_wololo":{"protocol_id":220},"entity.experience_bottle.throw":{"protocol_id":221},"entity.experience_orb.pickup":{"protocol_id":222},"block.fence_gate.close":{"protocol_id":223},"block.fence_gate.open":{"protocol_id":224},"item.firecharge.use":{"protocol_id":225},"entity.firework_rocket.blast":{"protocol_id":226},"entity.firework_rocket.blast_far":{"protocol_id":227},"entity.firework_rocket.large_blast":{"protocol_id":228},"entity.firework_rocket.large_blast_far":{"protocol_id":229},"entity.firework_rocket.launch":{"protocol_id":230},"entity.firework_rocket.shoot":{"protocol_id":231},"entity.firework_rocket.twinkle":{"protocol_id":232},"entity.firework_rocket.twinkle_far":{"protocol_id":233},"block.fire.ambient":{"protocol_id":234},"block.fire.extinguish":{"protocol_id":235},"entity.fish.swim":{"protocol_id":236},"item.flintandsteel.use":{"protocol_id":237},"entity.fox.aggro":{"protocol_id":238},"entity.fox.ambient":{"protocol_id":239},"entity.fox.bite":{"protocol_id":240},"entity.fox.death":{"protocol_id":241},"entity.fox.eat":{"protocol_id":242},"entity.fox.hurt":{"protocol_id":243},"entity.fox.screech":{"protocol_id":244},"entity.fox.sleep":{"protocol_id":245},"entity.fox.sniff":{"protocol_id":246},"entity.fox.spit":{"protocol_id":247},"block.furnace.fire_crackle":{"protocol_id":248},"entity.generic.big_fall":{"protocol_id":249},"entity.generic.burn":{"protocol_id":250},"entity.generic.death":{"protocol_id":251},"entity.generic.drink":{"protocol_id":252},"entity.generic.eat":{"protocol_id":253},"entity.generic.explode":{"protocol_id":254},"entity.generic.extinguish_fire":{"protocol_id":255},"entity.generic.hurt":{"protocol_id":256},"entity.generic.small_fall":{"protocol_id":257},"entity.generic.splash":{"protocol_id":258},"entity.generic.swim":{"protocol_id":259},"entity.ghast.ambient":{"protocol_id":260},"entity.ghast.death":{"protocol_id":261},"entity.ghast.hurt":{"protocol_id":262},"entity.ghast.scream":{"protocol_id":263},"entity.ghast.shoot":{"protocol_id":264},"entity.ghast.warn":{"protocol_id":265},"block.glass.break":{"protocol_id":266},"block.glass.fall":{"protocol_id":267},"block.glass.hit":{"protocol_id":268},"block.glass.place":{"protocol_id":269},"block.glass.step":{"protocol_id":270},"block.grass.break":{"protocol_id":271},"block.grass.fall":{"protocol_id":272},"block.grass.hit":{"protocol_id":273},"block.grass.place":{"protocol_id":274},"block.grass.step":{"protocol_id":275},"block.wet_grass.break":{"protocol_id":276},"block.wet_grass.fall":{"protocol_id":277},"block.wet_grass.hit":{"protocol_id":278},"block.wet_grass.place":{"protocol_id":279},"block.wet_grass.step":{"protocol_id":280},"block.coral_block.break":{"protocol_id":281},"block.coral_block.fall":{"protocol_id":282},"block.coral_block.hit":{"protocol_id":283},"block.coral_block.place":{"protocol_id":284},"block.coral_block.step":{"protocol_id":285},"block.gravel.break":{"protocol_id":286},"block.gravel.fall":{"protocol_id":287},"block.gravel.hit":{"protocol_id":288},"block.gravel.place":{"protocol_id":289},"block.gravel.step":{"protocol_id":290},"block.grindstone.use":{"protocol_id":291},"entity.guardian.ambient":{"protocol_id":292},"entity.guardian.ambient_land":{"protocol_id":293},"entity.guardian.attack":{"protocol_id":294},"entity.guardian.death":{"protocol_id":295},"entity.guardian.death_land":{"protocol_id":296},"entity.guardian.flop":{"protocol_id":297},"entity.guardian.hurt":{"protocol_id":298},"entity.guardian.hurt_land":{"protocol_id":299},"item.hoe.till":{"protocol_id":300},"block.honey_block.break":{"protocol_id":301},"block.honey_block.fall":{"protocol_id":302},"block.honey_block.hit":{"protocol_id":303},"block.honey_block.place":{"protocol_id":304},"block.honey_block.slide":{"protocol_id":305},"block.honey_block.step":{"protocol_id":306},"item.honey_bottle.drink":{"protocol_id":307},"entity.horse.ambient":{"protocol_id":308},"entity.horse.angry":{"protocol_id":309},"entity.horse.armor":{"protocol_id":310},"entity.horse.breathe":{"protocol_id":311},"entity.horse.death":{"protocol_id":312},"entity.horse.eat":{"protocol_id":313},"entity.horse.gallop":{"protocol_id":314},"entity.horse.hurt":{"protocol_id":315},"entity.horse.jump":{"protocol_id":316},"entity.horse.land":{"protocol_id":317},"entity.horse.saddle":{"protocol_id":318},"entity.horse.step":{"protocol_id":319},"entity.horse.step_wood":{"protocol_id":320},"entity.hostile.big_fall":{"protocol_id":321},"entity.hostile.death":{"protocol_id":322},"entity.hostile.hurt":{"protocol_id":323},"entity.hostile.small_fall":{"protocol_id":324},"entity.hostile.splash":{"protocol_id":325},"entity.hostile.swim":{"protocol_id":326},"entity.husk.ambient":{"protocol_id":327},"entity.husk.converted_to_zombie":{"protocol_id":328},"entity.husk.death":{"protocol_id":329},"entity.husk.hurt":{"protocol_id":330},"entity.husk.step":{"protocol_id":331},"entity.ravager.ambient":{"protocol_id":332},"entity.ravager.attack":{"protocol_id":333},"entity.ravager.celebrate":{"protocol_id":334},"entity.ravager.death":{"protocol_id":335},"entity.ravager.hurt":{"protocol_id":336},"entity.ravager.step":{"protocol_id":337},"entity.ravager.stunned":{"protocol_id":338},"entity.ravager.roar":{"protocol_id":339},"entity.illusioner.ambient":{"protocol_id":340},"entity.illusioner.cast_spell":{"protocol_id":341},"entity.illusioner.death":{"protocol_id":342},"entity.illusioner.hurt":{"protocol_id":343},"entity.illusioner.mirror_move":{"protocol_id":344},"entity.illusioner.prepare_blindness":{"protocol_id":345},"entity.illusioner.prepare_mirror":{"protocol_id":346},"block.iron_door.close":{"protocol_id":347},"block.iron_door.open":{"protocol_id":348},"entity.iron_golem.attack":{"protocol_id":349},"entity.iron_golem.damage":{"protocol_id":350},"entity.iron_golem.death":{"protocol_id":351},"entity.iron_golem.hurt":{"protocol_id":352},"entity.iron_golem.repair":{"protocol_id":353},"entity.iron_golem.step":{"protocol_id":354},"block.iron_trapdoor.close":{"protocol_id":355},"block.iron_trapdoor.open":{"protocol_id":356},"entity.item_frame.add_item":{"protocol_id":357},"entity.item_frame.break":{"protocol_id":358},"entity.item_frame.place":{"protocol_id":359},"entity.item_frame.remove_item":{"protocol_id":360},"entity.item_frame.rotate_item":{"protocol_id":361},"entity.item.break":{"protocol_id":362},"entity.item.pickup":{"protocol_id":363},"block.ladder.break":{"protocol_id":364},"block.ladder.fall":{"protocol_id":365},"block.ladder.hit":{"protocol_id":366},"block.ladder.place":{"protocol_id":367},"block.ladder.step":{"protocol_id":368},"block.lantern.break":{"protocol_id":369},"block.lantern.fall":{"protocol_id":370},"block.lantern.hit":{"protocol_id":371},"block.lantern.place":{"protocol_id":372},"block.lantern.step":{"protocol_id":373},"block.lava.ambient":{"protocol_id":374},"block.lava.extinguish":{"protocol_id":375},"block.lava.pop":{"protocol_id":376},"entity.leash_knot.break":{"protocol_id":377},"entity.leash_knot.place":{"protocol_id":378},"block.lever.click":{"protocol_id":379},"entity.lightning_bolt.impact":{"protocol_id":380},"entity.lightning_bolt.thunder":{"protocol_id":381},"entity.lingering_potion.throw":{"protocol_id":382},"entity.llama.ambient":{"protocol_id":383},"entity.llama.angry":{"protocol_id":384},"entity.llama.chest":{"protocol_id":385},"entity.llama.death":{"protocol_id":386},"entity.llama.eat":{"protocol_id":387},"entity.llama.hurt":{"protocol_id":388},"entity.llama.spit":{"protocol_id":389},"entity.llama.step":{"protocol_id":390},"entity.llama.swag":{"protocol_id":391},"entity.magma_cube.death":{"protocol_id":392},"entity.magma_cube.hurt":{"protocol_id":393},"entity.magma_cube.jump":{"protocol_id":394},"entity.magma_cube.squish":{"protocol_id":395},"block.metal.break":{"protocol_id":396},"block.metal.fall":{"protocol_id":397},"block.metal.hit":{"protocol_id":398},"block.metal.place":{"protocol_id":399},"block.metal_pressure_plate.click_off":{"protocol_id":400},"block.metal_pressure_plate.click_on":{"protocol_id":401},"block.metal.step":{"protocol_id":402},"entity.minecart.inside":{"protocol_id":403},"entity.minecart.riding":{"protocol_id":404},"entity.mooshroom.convert":{"protocol_id":405},"entity.mooshroom.eat":{"protocol_id":406},"entity.mooshroom.milk":{"protocol_id":407},"entity.mooshroom.suspicious_milk":{"protocol_id":408},"entity.mooshroom.shear":{"protocol_id":409},"entity.mule.ambient":{"protocol_id":410},"entity.mule.chest":{"protocol_id":411},"entity.mule.death":{"protocol_id":412},"entity.mule.hurt":{"protocol_id":413},"music.creative":{"protocol_id":414},"music.credits":{"protocol_id":415},"music.dragon":{"protocol_id":416},"music.end":{"protocol_id":417},"music.game":{"protocol_id":418},"music.menu":{"protocol_id":419},"music.nether":{"protocol_id":420},"music.under_water":{"protocol_id":421},"block.nether_wart.break":{"protocol_id":422},"item.nether_wart.plant":{"protocol_id":423},"block.note_block.basedrum":{"protocol_id":424},"block.note_block.bass":{"protocol_id":425},"block.note_block.bell":{"protocol_id":426},"block.note_block.chime":{"protocol_id":427},"block.note_block.flute":{"protocol_id":428},"block.note_block.guitar":{"protocol_id":429},"block.note_block.harp":{"protocol_id":430},"block.note_block.hat":{"protocol_id":431},"block.note_block.pling":{"protocol_id":432},"block.note_block.snare":{"protocol_id":433},"block.note_block.xylophone":{"protocol_id":434},"block.note_block.iron_xylophone":{"protocol_id":435},"block.note_block.cow_bell":{"protocol_id":436},"block.note_block.didgeridoo":{"protocol_id":437},"block.note_block.bit":{"protocol_id":438},"block.note_block.banjo":{"protocol_id":439},"entity.ocelot.hurt":{"protocol_id":440},"entity.ocelot.ambient":{"protocol_id":441},"entity.ocelot.death":{"protocol_id":442},"entity.painting.break":{"protocol_id":443},"entity.painting.place":{"protocol_id":444},"entity.panda.pre_sneeze":{"protocol_id":445},"entity.panda.sneeze":{"protocol_id":446},"entity.panda.ambient":{"protocol_id":447},"entity.panda.death":{"protocol_id":448},"entity.panda.eat":{"protocol_id":449},"entity.panda.step":{"protocol_id":450},"entity.panda.cant_breed":{"protocol_id":451},"entity.panda.aggressive_ambient":{"protocol_id":452},"entity.panda.worried_ambient":{"protocol_id":453},"entity.panda.hurt":{"protocol_id":454},"entity.panda.bite":{"protocol_id":455},"entity.parrot.ambient":{"protocol_id":456},"entity.parrot.death":{"protocol_id":457},"entity.parrot.eat":{"protocol_id":458},"entity.parrot.fly":{"protocol_id":459},"entity.parrot.hurt":{"protocol_id":460},"entity.parrot.imitate.blaze":{"protocol_id":461},"entity.parrot.imitate.creeper":{"protocol_id":462},"entity.parrot.imitate.drowned":{"protocol_id":463},"entity.parrot.imitate.elder_guardian":{"protocol_id":464},"entity.parrot.imitate.ender_dragon":{"protocol_id":465},"entity.parrot.imitate.endermite":{"protocol_id":466},"entity.parrot.imitate.evoker":{"protocol_id":467},"entity.parrot.imitate.ghast":{"protocol_id":468},"entity.parrot.imitate.guardian":{"protocol_id":469},"entity.parrot.imitate.husk":{"protocol_id":470},"entity.parrot.imitate.illusioner":{"protocol_id":471},"entity.parrot.imitate.magma_cube":{"protocol_id":472},"entity.parrot.imitate.phantom":{"protocol_id":473},"entity.parrot.imitate.pillager":{"protocol_id":474},"entity.parrot.imitate.ravager":{"protocol_id":475},"entity.parrot.imitate.shulker":{"protocol_id":476},"entity.parrot.imitate.silverfish":{"protocol_id":477},"entity.parrot.imitate.skeleton":{"protocol_id":478},"entity.parrot.imitate.slime":{"protocol_id":479},"entity.parrot.imitate.spider":{"protocol_id":480},"entity.parrot.imitate.stray":{"protocol_id":481},"entity.parrot.imitate.vex":{"protocol_id":482},"entity.parrot.imitate.vindicator":{"protocol_id":483},"entity.parrot.imitate.witch":{"protocol_id":484},"entity.parrot.imitate.wither":{"protocol_id":485},"entity.parrot.imitate.wither_skeleton":{"protocol_id":486},"entity.parrot.imitate.zombie":{"protocol_id":487},"entity.parrot.imitate.zombie_villager":{"protocol_id":488},"entity.parrot.step":{"protocol_id":489},"entity.phantom.ambient":{"protocol_id":490},"entity.phantom.bite":{"protocol_id":491},"entity.phantom.death":{"protocol_id":492},"entity.phantom.flap":{"protocol_id":493},"entity.phantom.hurt":{"protocol_id":494},"entity.phantom.swoop":{"protocol_id":495},"entity.pig.ambient":{"protocol_id":496},"entity.pig.death":{"protocol_id":497},"entity.pig.hurt":{"protocol_id":498},"entity.pig.saddle":{"protocol_id":499},"entity.pig.step":{"protocol_id":500},"entity.pillager.ambient":{"protocol_id":501},"entity.pillager.celebrate":{"protocol_id":502},"entity.pillager.death":{"protocol_id":503},"entity.pillager.hurt":{"protocol_id":504},"block.piston.contract":{"protocol_id":505},"block.piston.extend":{"protocol_id":506},"entity.player.attack.crit":{"protocol_id":507},"entity.player.attack.knockback":{"protocol_id":508},"entity.player.attack.nodamage":{"protocol_id":509},"entity.player.attack.strong":{"protocol_id":510},"entity.player.attack.sweep":{"protocol_id":511},"entity.player.attack.weak":{"protocol_id":512},"entity.player.big_fall":{"protocol_id":513},"entity.player.breath":{"protocol_id":514},"entity.player.burp":{"protocol_id":515},"entity.player.death":{"protocol_id":516},"entity.player.hurt":{"protocol_id":517},"entity.player.hurt_drown":{"protocol_id":518},"entity.player.hurt_on_fire":{"protocol_id":519},"entity.player.hurt_sweet_berry_bush":{"protocol_id":520},"entity.player.levelup":{"protocol_id":521},"entity.player.small_fall":{"protocol_id":522},"entity.player.splash":{"protocol_id":523},"entity.player.splash.high_speed":{"protocol_id":524},"entity.player.swim":{"protocol_id":525},"entity.polar_bear.ambient":{"protocol_id":526},"entity.polar_bear.ambient_baby":{"protocol_id":527},"entity.polar_bear.death":{"protocol_id":528},"entity.polar_bear.hurt":{"protocol_id":529},"entity.polar_bear.step":{"protocol_id":530},"entity.polar_bear.warning":{"protocol_id":531},"block.portal.ambient":{"protocol_id":532},"block.portal.travel":{"protocol_id":533},"block.portal.trigger":{"protocol_id":534},"entity.puffer_fish.ambient":{"protocol_id":535},"entity.puffer_fish.blow_out":{"protocol_id":536},"entity.puffer_fish.blow_up":{"protocol_id":537},"entity.puffer_fish.death":{"protocol_id":538},"entity.puffer_fish.flop":{"protocol_id":539},"entity.puffer_fish.hurt":{"protocol_id":540},"entity.puffer_fish.sting":{"protocol_id":541},"block.pumpkin.carve":{"protocol_id":542},"entity.rabbit.ambient":{"protocol_id":543},"entity.rabbit.attack":{"protocol_id":544},"entity.rabbit.death":{"protocol_id":545},"entity.rabbit.hurt":{"protocol_id":546},"entity.rabbit.jump":{"protocol_id":547},"event.raid.horn":{"protocol_id":548},"music_disc.11":{"protocol_id":549},"music_disc.13":{"protocol_id":550},"music_disc.blocks":{"protocol_id":551},"music_disc.cat":{"protocol_id":552},"music_disc.chirp":{"protocol_id":553},"music_disc.far":{"protocol_id":554},"music_disc.mall":{"protocol_id":555},"music_disc.mellohi":{"protocol_id":556},"music_disc.stal":{"protocol_id":557},"music_disc.strad":{"protocol_id":558},"music_disc.wait":{"protocol_id":559},"music_disc.ward":{"protocol_id":560},"block.redstone_torch.burnout":{"protocol_id":561},"entity.salmon.ambient":{"protocol_id":562},"entity.salmon.death":{"protocol_id":563},"entity.salmon.flop":{"protocol_id":564},"entity.salmon.hurt":{"protocol_id":565},"block.sand.break":{"protocol_id":566},"block.sand.fall":{"protocol_id":567},"block.sand.hit":{"protocol_id":568},"block.sand.place":{"protocol_id":569},"block.sand.step":{"protocol_id":570},"block.scaffolding.break":{"protocol_id":571},"block.scaffolding.fall":{"protocol_id":572},"block.scaffolding.hit":{"protocol_id":573},"block.scaffolding.place":{"protocol_id":574},"block.scaffolding.step":{"protocol_id":575},"entity.sheep.ambient":{"protocol_id":576},"entity.sheep.death":{"protocol_id":577},"entity.sheep.hurt":{"protocol_id":578},"entity.sheep.shear":{"protocol_id":579},"entity.sheep.step":{"protocol_id":580},"item.shield.block":{"protocol_id":581},"item.shield.break":{"protocol_id":582},"item.shovel.flatten":{"protocol_id":583},"entity.shulker.ambient":{"protocol_id":584},"block.shulker_box.close":{"protocol_id":585},"block.shulker_box.open":{"protocol_id":586},"entity.shulker_bullet.hit":{"protocol_id":587},"entity.shulker_bullet.hurt":{"protocol_id":588},"entity.shulker.close":{"protocol_id":589},"entity.shulker.death":{"protocol_id":590},"entity.shulker.hurt":{"protocol_id":591},"entity.shulker.hurt_closed":{"protocol_id":592},"entity.shulker.open":{"protocol_id":593},"entity.shulker.shoot":{"protocol_id":594},"entity.shulker.teleport":{"protocol_id":595},"entity.silverfish.ambient":{"protocol_id":596},"entity.silverfish.death":{"protocol_id":597},"entity.silverfish.hurt":{"protocol_id":598},"entity.silverfish.step":{"protocol_id":599},"entity.skeleton.ambient":{"protocol_id":600},"entity.skeleton.death":{"protocol_id":601},"entity.skeleton_horse.ambient":{"protocol_id":602},"entity.skeleton_horse.death":{"protocol_id":603},"entity.skeleton_horse.hurt":{"protocol_id":604},"entity.skeleton_horse.swim":{"protocol_id":605},"entity.skeleton_horse.ambient_water":{"protocol_id":606},"entity.skeleton_horse.gallop_water":{"protocol_id":607},"entity.skeleton_horse.jump_water":{"protocol_id":608},"entity.skeleton_horse.step_water":{"protocol_id":609},"entity.skeleton.hurt":{"protocol_id":610},"entity.skeleton.shoot":{"protocol_id":611},"entity.skeleton.step":{"protocol_id":612},"entity.slime.attack":{"protocol_id":613},"entity.slime.death":{"protocol_id":614},"entity.slime.hurt":{"protocol_id":615},"entity.slime.jump":{"protocol_id":616},"entity.slime.squish":{"protocol_id":617},"block.slime_block.break":{"protocol_id":618},"block.slime_block.fall":{"protocol_id":619},"block.slime_block.hit":{"protocol_id":620},"block.slime_block.place":{"protocol_id":621},"block.slime_block.step":{"protocol_id":622},"entity.magma_cube.death_small":{"protocol_id":623},"entity.magma_cube.hurt_small":{"protocol_id":624},"entity.magma_cube.squish_small":{"protocol_id":625},"entity.slime.death_small":{"protocol_id":626},"entity.slime.hurt_small":{"protocol_id":627},"entity.slime.jump_small":{"protocol_id":628},"entity.slime.squish_small":{"protocol_id":629},"block.smoker.smoke":{"protocol_id":630},"entity.snowball.throw":{"protocol_id":631},"block.snow.break":{"protocol_id":632},"block.snow.fall":{"protocol_id":633},"entity.snow_golem.ambient":{"protocol_id":634},"entity.snow_golem.death":{"protocol_id":635},"entity.snow_golem.hurt":{"protocol_id":636},"entity.snow_golem.shoot":{"protocol_id":637},"block.snow.hit":{"protocol_id":638},"block.snow.place":{"protocol_id":639},"block.snow.step":{"protocol_id":640},"entity.spider.ambient":{"protocol_id":641},"entity.spider.death":{"protocol_id":642},"entity.spider.hurt":{"protocol_id":643},"entity.spider.step":{"protocol_id":644},"entity.splash_potion.break":{"protocol_id":645},"entity.splash_potion.throw":{"protocol_id":646},"entity.squid.ambient":{"protocol_id":647},"entity.squid.death":{"protocol_id":648},"entity.squid.hurt":{"protocol_id":649},"entity.squid.squirt":{"protocol_id":650},"block.stone.break":{"protocol_id":651},"block.stone_button.click_off":{"protocol_id":652},"block.stone_button.click_on":{"protocol_id":653},"block.stone.fall":{"protocol_id":654},"block.stone.hit":{"protocol_id":655},"block.stone.place":{"protocol_id":656},"block.stone_pressure_plate.click_off":{"protocol_id":657},"block.stone_pressure_plate.click_on":{"protocol_id":658},"block.stone.step":{"protocol_id":659},"entity.stray.ambient":{"protocol_id":660},"entity.stray.death":{"protocol_id":661},"entity.stray.hurt":{"protocol_id":662},"entity.stray.step":{"protocol_id":663},"block.sweet_berry_bush.break":{"protocol_id":664},"block.sweet_berry_bush.place":{"protocol_id":665},"item.sweet_berries.pick_from_bush":{"protocol_id":666},"enchant.thorns.hit":{"protocol_id":667},"entity.tnt.primed":{"protocol_id":668},"item.totem.use":{"protocol_id":669},"item.trident.hit":{"protocol_id":670},"item.trident.hit_ground":{"protocol_id":671},"item.trident.return":{"protocol_id":672},"item.trident.riptide_1":{"protocol_id":673},"item.trident.riptide_2":{"protocol_id":674},"item.trident.riptide_3":{"protocol_id":675},"item.trident.throw":{"protocol_id":676},"item.trident.thunder":{"protocol_id":677},"block.tripwire.attach":{"protocol_id":678},"block.tripwire.click_off":{"protocol_id":679},"block.tripwire.click_on":{"protocol_id":680},"block.tripwire.detach":{"protocol_id":681},"entity.tropical_fish.ambient":{"protocol_id":682},"entity.tropical_fish.death":{"protocol_id":683},"entity.tropical_fish.flop":{"protocol_id":684},"entity.tropical_fish.hurt":{"protocol_id":685},"entity.turtle.ambient_land":{"protocol_id":686},"entity.turtle.death":{"protocol_id":687},"entity.turtle.death_baby":{"protocol_id":688},"entity.turtle.egg_break":{"protocol_id":689},"entity.turtle.egg_crack":{"protocol_id":690},"entity.turtle.egg_hatch":{"protocol_id":691},"entity.turtle.hurt":{"protocol_id":692},"entity.turtle.hurt_baby":{"protocol_id":693},"entity.turtle.lay_egg":{"protocol_id":694},"entity.turtle.shamble":{"protocol_id":695},"entity.turtle.shamble_baby":{"protocol_id":696},"entity.turtle.swim":{"protocol_id":697},"ui.button.click":{"protocol_id":698},"ui.loom.select_pattern":{"protocol_id":699},"ui.loom.take_result":{"protocol_id":700},"ui.cartography_table.take_result":{"protocol_id":701},"ui.stonecutter.take_result":{"protocol_id":702},"ui.stonecutter.select_recipe":{"protocol_id":703},"ui.toast.challenge_complete":{"protocol_id":704},"ui.toast.in":{"protocol_id":705},"ui.toast.out":{"protocol_id":706},"entity.vex.ambient":{"protocol_id":707},"entity.vex.charge":{"protocol_id":708},"entity.vex.death":{"protocol_id":709},"entity.vex.hurt":{"protocol_id":710},"entity.villager.ambient":{"protocol_id":711},"entity.villager.celebrate":{"protocol_id":712},"entity.villager.death":{"protocol_id":713},"entity.villager.hurt":{"protocol_id":714},"entity.villager.no":{"protocol_id":715},"entity.villager.trade":{"protocol_id":716},"entity.villager.yes":{"protocol_id":717},"entity.villager.work_armorer":{"protocol_id":718},"entity.villager.work_butcher":{"protocol_id":719},"entity.villager.work_cartographer":{"protocol_id":720},"entity.villager.work_cleric":{"protocol_id":721},"entity.villager.work_farmer":{"protocol_id":722},"entity.villager.work_fisherman":{"protocol_id":723},"entity.villager.work_fletcher":{"protocol_id":724},"entity.villager.work_leatherworker":{"protocol_id":725},"entity.villager.work_librarian":{"protocol_id":726},"entity.villager.work_mason":{"protocol_id":727},"entity.villager.work_shepherd":{"protocol_id":728},"entity.villager.work_toolsmith":{"protocol_id":729},"entity.villager.work_weaponsmith":{"protocol_id":730},"entity.vindicator.ambient":{"protocol_id":731},"entity.vindicator.celebrate":{"protocol_id":732},"entity.vindicator.death":{"protocol_id":733},"entity.vindicator.hurt":{"protocol_id":734},"block.lily_pad.place":{"protocol_id":735},"entity.wandering_trader.ambient":{"protocol_id":736},"entity.wandering_trader.death":{"protocol_id":737},"entity.wandering_trader.disappeared":{"protocol_id":738},"entity.wandering_trader.drink_milk":{"protocol_id":739},"entity.wandering_trader.drink_potion":{"protocol_id":740},"entity.wandering_trader.hurt":{"protocol_id":741},"entity.wandering_trader.no":{"protocol_id":742},"entity.wandering_trader.reappeared":{"protocol_id":743},"entity.wandering_trader.trade":{"protocol_id":744},"entity.wandering_trader.yes":{"protocol_id":745},"block.water.ambient":{"protocol_id":746},"weather.rain":{"protocol_id":747},"weather.rain.above":{"protocol_id":748},"entity.witch.ambient":{"protocol_id":749},"entity.witch.celebrate":{"protocol_id":750},"entity.witch.death":{"protocol_id":751},"entity.witch.drink":{"protocol_id":752},"entity.witch.hurt":{"protocol_id":753},"entity.witch.throw":{"protocol_id":754},"entity.wither.ambient":{"protocol_id":755},"entity.wither.break_block":{"protocol_id":756},"entity.wither.death":{"protocol_id":757},"entity.wither.hurt":{"protocol_id":758},"entity.wither.shoot":{"protocol_id":759},"entity.wither_skeleton.ambient":{"protocol_id":760},"entity.wither_skeleton.death":{"protocol_id":761},"entity.wither_skeleton.hurt":{"protocol_id":762},"entity.wither_skeleton.step":{"protocol_id":763},"entity.wither.spawn":{"protocol_id":764},"entity.wolf.ambient":{"protocol_id":765},"entity.wolf.death":{"protocol_id":766},"entity.wolf.growl":{"protocol_id":767},"entity.wolf.howl":{"protocol_id":768},"entity.wolf.hurt":{"protocol_id":769},"entity.wolf.pant":{"protocol_id":770},"entity.wolf.shake":{"protocol_id":771},"entity.wolf.step":{"protocol_id":772},"entity.wolf.whine":{"protocol_id":773},"block.wooden_door.close":{"protocol_id":774},"block.wooden_door.open":{"protocol_id":775},"block.wooden_trapdoor.close":{"protocol_id":776},"block.wooden_trapdoor.open":{"protocol_id":777},"block.wood.break":{"protocol_id":778},"block.wooden_button.click_off":{"protocol_id":779},"block.wooden_button.click_on":{"protocol_id":780},"block.wood.fall":{"protocol_id":781},"block.wood.hit":{"protocol_id":782},"block.wood.place":{"protocol_id":783},"block.wooden_pressure_plate.click_off":{"protocol_id":784},"block.wooden_pressure_plate.click_on":{"protocol_id":785},"block.wood.step":{"protocol_id":786},"entity.zombie.ambient":{"protocol_id":787},"entity.zombie.attack_wooden_door":{"protocol_id":788},"entity.zombie.attack_iron_door":{"protocol_id":789},"entity.zombie.break_wooden_door":{"protocol_id":790},"entity.zombie.converted_to_drowned":{"protocol_id":791},"entity.zombie.death":{"protocol_id":792},"entity.zombie.destroy_egg":{"protocol_id":793},"entity.zombie_horse.ambient":{"protocol_id":794},"entity.zombie_horse.death":{"protocol_id":795},"entity.zombie_horse.hurt":{"protocol_id":796},"entity.zombie.hurt":{"protocol_id":797},"entity.zombie.infect":{"protocol_id":798},"entity.zombie_pigman.ambient":{"protocol_id":799},"entity.zombie_pigman.angry":{"protocol_id":800},"entity.zombie_pigman.death":{"protocol_id":801},"entity.zombie_pigman.hurt":{"protocol_id":802},"entity.zombie.step":{"protocol_id":803},"entity.zombie_villager.ambient":{"protocol_id":804},"entity.zombie_villager.converted":{"protocol_id":805},"entity.zombie_villager.cure":{"protocol_id":806},"entity.zombie_villager.death":{"protocol_id":807},"entity.zombie_villager.hurt":{"protocol_id":808},"entity.zombie_villager.step":{"protocol_id":809}}},"fluid":{"default":"empty","protocol_id":1,"entries":{"empty":{"protocol_id":0},"flowing_water":{"protocol_id":1},"water":{"protocol_id":2},"flowing_lava":{"protocol_id":3},"lava":{"protocol_id":4}}},"mob_effect":{"protocol_id":2,"entries":{"speed":{"protocol_id":1},"slowness":{"protocol_id":2},"haste":{"protocol_id":3},"mining_fatigue":{"protocol_id":4},"strength":{"protocol_id":5},"instant_health":{"protocol_id":6},"instant_damage":{"protocol_id":7},"jump_boost":{"protocol_id":8},"nausea":{"protocol_id":9},"regeneration":{"protocol_id":10},"resistance":{"protocol_id":11},"fire_resistance":{"protocol_id":12},"water_breathing":{"protocol_id":13},"invisibility":{"protocol_id":14},"blindness":{"protocol_id":15},"night_vision":{"protocol_id":16},"hunger":{"protocol_id":17},"weakness":{"protocol_id":18},"poison":{"protocol_id":19},"wither":{"protocol_id":20},"health_boost":{"protocol_id":21},"absorption":{"protocol_id":22},"saturation":{"protocol_id":23},"glowing":{"protocol_id":24},"levitation":{"protocol_id":25},"luck":{"protocol_id":26},"unluck":{"protocol_id":27},"slow_falling":{"protocol_id":28},"conduit_power":{"protocol_id":29},"dolphins_grace":{"protocol_id":30},"bad_omen":{"protocol_id":31},"hero_of_the_village":{"protocol_id":32}}},"block":{"default":"air","protocol_id":3,"entries":{"air":{"protocol_id":0},"stone":{"protocol_id":1},"granite":{"protocol_id":2},"polished_granite":{"protocol_id":3},"diorite":{"protocol_id":4},"polished_diorite":{"protocol_id":5},"andesite":{"protocol_id":6},"polished_andesite":{"protocol_id":7},"grass_block":{"protocol_id":8},"dirt":{"protocol_id":9},"coarse_dirt":{"protocol_id":10},"podzol":{"protocol_id":11},"cobblestone":{"protocol_id":12},"oak_planks":{"protocol_id":13},"spruce_planks":{"protocol_id":14},"birch_planks":{"protocol_id":15},"jungle_planks":{"protocol_id":16},"acacia_planks":{"protocol_id":17},"dark_oak_planks":{"protocol_id":18},"oak_sapling":{"protocol_id":19},"spruce_sapling":{"protocol_id":20},"birch_sapling":{"protocol_id":21},"jungle_sapling":{"protocol_id":22},"acacia_sapling":{"protocol_id":23},"dark_oak_sapling":{"protocol_id":24},"bedrock":{"protocol_id":25},"water":{"protocol_id":26},"lava":{"protocol_id":27},"sand":{"protocol_id":28},"red_sand":{"protocol_id":29},"gravel":{"protocol_id":30},"gold_ore":{"protocol_id":31},"iron_ore":{"protocol_id":32},"coal_ore":{"protocol_id":33},"oak_log":{"protocol_id":34},"spruce_log":{"protocol_id":35},"birch_log":{"protocol_id":36},"jungle_log":{"protocol_id":37},"acacia_log":{"protocol_id":38},"dark_oak_log":{"protocol_id":39},"stripped_spruce_log":{"protocol_id":40},"stripped_birch_log":{"protocol_id":41},"stripped_jungle_log":{"protocol_id":42},"stripped_acacia_log":{"protocol_id":43},"stripped_dark_oak_log":{"protocol_id":44},"stripped_oak_log":{"protocol_id":45},"oak_wood":{"protocol_id":46},"spruce_wood":{"protocol_id":47},"birch_wood":{"protocol_id":48},"jungle_wood":{"protocol_id":49},"acacia_wood":{"protocol_id":50},"dark_oak_wood":{"protocol_id":51},"stripped_oak_wood":{"protocol_id":52},"stripped_spruce_wood":{"protocol_id":53},"stripped_birch_wood":{"protocol_id":54},"stripped_jungle_wood":{"protocol_id":55},"stripped_acacia_wood":{"protocol_id":56},"stripped_dark_oak_wood":{"protocol_id":57},"oak_leaves":{"protocol_id":58},"spruce_leaves":{"protocol_id":59},"birch_leaves":{"protocol_id":60},"jungle_leaves":{"protocol_id":61},"acacia_leaves":{"protocol_id":62},"dark_oak_leaves":{"protocol_id":63},"sponge":{"protocol_id":64},"wet_sponge":{"protocol_id":65},"glass":{"protocol_id":66},"lapis_ore":{"protocol_id":67},"lapis_block":{"protocol_id":68},"dispenser":{"protocol_id":69},"sandstone":{"protocol_id":70},"chiseled_sandstone":{"protocol_id":71},"cut_sandstone":{"protocol_id":72},"note_block":{"protocol_id":73},"white_bed":{"protocol_id":74},"orange_bed":{"protocol_id":75},"magenta_bed":{"protocol_id":76},"light_blue_bed":{"protocol_id":77},"yellow_bed":{"protocol_id":78},"lime_bed":{"protocol_id":79},"pink_bed":{"protocol_id":80},"gray_bed":{"protocol_id":81},"light_gray_bed":{"protocol_id":82},"cyan_bed":{"protocol_id":83},"purple_bed":{"protocol_id":84},"blue_bed":{"protocol_id":85},"brown_bed":{"protocol_id":86},"green_bed":{"protocol_id":87},"red_bed":{"protocol_id":88},"black_bed":{"protocol_id":89},"powered_rail":{"protocol_id":90},"detector_rail":{"protocol_id":91},"sticky_piston":{"protocol_id":92},"cobweb":{"protocol_id":93},"grass":{"protocol_id":94},"fern":{"protocol_id":95},"dead_bush":{"protocol_id":96},"seagrass":{"protocol_id":97},"tall_seagrass":{"protocol_id":98},"piston":{"protocol_id":99},"piston_head":{"protocol_id":100},"white_wool":{"protocol_id":101},"orange_wool":{"protocol_id":102},"magenta_wool":{"protocol_id":103},"light_blue_wool":{"protocol_id":104},"yellow_wool":{"protocol_id":105},"lime_wool":{"protocol_id":106},"pink_wool":{"protocol_id":107},"gray_wool":{"protocol_id":108},"light_gray_wool":{"protocol_id":109},"cyan_wool":{"protocol_id":110},"purple_wool":{"protocol_id":111},"blue_wool":{"protocol_id":112},"brown_wool":{"protocol_id":113},"green_wool":{"protocol_id":114},"red_wool":{"protocol_id":115},"black_wool":{"protocol_id":116},"moving_piston":{"protocol_id":117},"dandelion":{"protocol_id":118},"poppy":{"protocol_id":119},"blue_orchid":{"protocol_id":120},"allium":{"protocol_id":121},"azure_bluet":{"protocol_id":122},"red_tulip":{"protocol_id":123},"orange_tulip":{"protocol_id":124},"white_tulip":{"protocol_id":125},"pink_tulip":{"protocol_id":126},"oxeye_daisy":{"protocol_id":127},"cornflower":{"protocol_id":128},"wither_rose":{"protocol_id":129},"lily_of_the_valley":{"protocol_id":130},"brown_mushroom":{"protocol_id":131},"red_mushroom":{"protocol_id":132},"gold_block":{"protocol_id":133},"iron_block":{"protocol_id":134},"bricks":{"protocol_id":135},"tnt":{"protocol_id":136},"bookshelf":{"protocol_id":137},"mossy_cobblestone":{"protocol_id":138},"obsidian":{"protocol_id":139},"torch":{"protocol_id":140},"wall_torch":{"protocol_id":141},"fire":{"protocol_id":142},"spawner":{"protocol_id":143},"oak_stairs":{"protocol_id":144},"chest":{"protocol_id":145},"redstone_wire":{"protocol_id":146},"diamond_ore":{"protocol_id":147},"diamond_block":{"protocol_id":148},"crafting_table":{"protocol_id":149},"wheat":{"protocol_id":150},"farmland":{"protocol_id":151},"furnace":{"protocol_id":152},"oak_sign":{"protocol_id":153},"spruce_sign":{"protocol_id":154},"birch_sign":{"protocol_id":155},"acacia_sign":{"protocol_id":156},"jungle_sign":{"protocol_id":157},"dark_oak_sign":{"protocol_id":158},"oak_door":{"protocol_id":159},"ladder":{"protocol_id":160},"rail":{"protocol_id":161},"cobblestone_stairs":{"protocol_id":162},"oak_wall_sign":{"protocol_id":163},"spruce_wall_sign":{"protocol_id":164},"birch_wall_sign":{"protocol_id":165},"acacia_wall_sign":{"protocol_id":166},"jungle_wall_sign":{"protocol_id":167},"dark_oak_wall_sign":{"protocol_id":168},"lever":{"protocol_id":169},"stone_pressure_plate":{"protocol_id":170},"iron_door":{"protocol_id":171},"oak_pressure_plate":{"protocol_id":172},"spruce_pressure_plate":{"protocol_id":173},"birch_pressure_plate":{"protocol_id":174},"jungle_pressure_plate":{"protocol_id":175},"acacia_pressure_plate":{"protocol_id":176},"dark_oak_pressure_plate":{"protocol_id":177},"redstone_ore":{"protocol_id":178},"redstone_torch":{"protocol_id":179},"redstone_wall_torch":{"protocol_id":180},"stone_button":{"protocol_id":181},"snow":{"protocol_id":182},"ice":{"protocol_id":183},"snow_block":{"protocol_id":184},"cactus":{"protocol_id":185},"clay":{"protocol_id":186},"sugar_cane":{"protocol_id":187},"jukebox":{"protocol_id":188},"oak_fence":{"protocol_id":189},"pumpkin":{"protocol_id":190},"netherrack":{"protocol_id":191},"soul_sand":{"protocol_id":192},"glowstone":{"protocol_id":193},"nether_portal":{"protocol_id":194},"carved_pumpkin":{"protocol_id":195},"jack_o_lantern":{"protocol_id":196},"cake":{"protocol_id":197},"repeater":{"protocol_id":198},"white_stained_glass":{"protocol_id":199},"orange_stained_glass":{"protocol_id":200},"magenta_stained_glass":{"protocol_id":201},"light_blue_stained_glass":{"protocol_id":202},"yellow_stained_glass":{"protocol_id":203},"lime_stained_glass":{"protocol_id":204},"pink_stained_glass":{"protocol_id":205},"gray_stained_glass":{"protocol_id":206},"light_gray_stained_glass":{"protocol_id":207},"cyan_stained_glass":{"protocol_id":208},"purple_stained_glass":{"protocol_id":209},"blue_stained_glass":{"protocol_id":210},"brown_stained_glass":{"protocol_id":211},"green_stained_glass":{"protocol_id":212},"red_stained_glass":{"protocol_id":213},"black_stained_glass":{"protocol_id":214},"oak_trapdoor":{"protocol_id":215},"spruce_trapdoor":{"protocol_id":216},"birch_trapdoor":{"protocol_id":217},"jungle_trapdoor":{"protocol_id":218},"acacia_trapdoor":{"protocol_id":219},"dark_oak_trapdoor":{"protocol_id":220},"stone_bricks":{"protocol_id":221},"mossy_stone_bricks":{"protocol_id":222},"cracked_stone_bricks":{"protocol_id":223},"chiseled_stone_bricks":{"protocol_id":224},"infested_stone":{"protocol_id":225},"infested_cobblestone":{"protocol_id":226},"infested_stone_bricks":{"protocol_id":227},"infested_mossy_stone_bricks":{"protocol_id":228},"infested_cracked_stone_bricks":{"protocol_id":229},"infested_chiseled_stone_bricks":{"protocol_id":230},"brown_mushroom_block":{"protocol_id":231},"red_mushroom_block":{"protocol_id":232},"mushroom_stem":{"protocol_id":233},"iron_bars":{"protocol_id":234},"glass_pane":{"protocol_id":235},"melon":{"protocol_id":236},"attached_pumpkin_stem":{"protocol_id":237},"attached_melon_stem":{"protocol_id":238},"pumpkin_stem":{"protocol_id":239},"melon_stem":{"protocol_id":240},"vine":{"protocol_id":241},"oak_fence_gate":{"protocol_id":242},"brick_stairs":{"protocol_id":243},"stone_brick_stairs":{"protocol_id":244},"mycelium":{"protocol_id":245},"lily_pad":{"protocol_id":246},"nether_bricks":{"protocol_id":247},"nether_brick_fence":{"protocol_id":248},"nether_brick_stairs":{"protocol_id":249},"nether_wart":{"protocol_id":250},"enchanting_table":{"protocol_id":251},"brewing_stand":{"protocol_id":252},"cauldron":{"protocol_id":253},"end_portal":{"protocol_id":254},"end_portal_frame":{"protocol_id":255},"end_stone":{"protocol_id":256},"dragon_egg":{"protocol_id":257},"redstone_lamp":{"protocol_id":258},"cocoa":{"protocol_id":259},"sandstone_stairs":{"protocol_id":260},"emerald_ore":{"protocol_id":261},"ender_chest":{"protocol_id":262},"tripwire_hook":{"protocol_id":263},"tripwire":{"protocol_id":264},"emerald_block":{"protocol_id":265},"spruce_stairs":{"protocol_id":266},"birch_stairs":{"protocol_id":267},"jungle_stairs":{"protocol_id":268},"command_block":{"protocol_id":269},"beacon":{"protocol_id":270},"cobblestone_wall":{"protocol_id":271},"mossy_cobblestone_wall":{"protocol_id":272},"flower_pot":{"protocol_id":273},"potted_oak_sapling":{"protocol_id":274},"potted_spruce_sapling":{"protocol_id":275},"potted_birch_sapling":{"protocol_id":276},"potted_jungle_sapling":{"protocol_id":277},"potted_acacia_sapling":{"protocol_id":278},"potted_dark_oak_sapling":{"protocol_id":279},"potted_fern":{"protocol_id":280},"potted_dandelion":{"protocol_id":281},"potted_poppy":{"protocol_id":282},"potted_blue_orchid":{"protocol_id":283},"potted_allium":{"protocol_id":284},"potted_azure_bluet":{"protocol_id":285},"potted_red_tulip":{"protocol_id":286},"potted_orange_tulip":{"protocol_id":287},"potted_white_tulip":{"protocol_id":288},"potted_pink_tulip":{"protocol_id":289},"potted_oxeye_daisy":{"protocol_id":290},"potted_cornflower":{"protocol_id":291},"potted_lily_of_the_valley":{"protocol_id":292},"potted_wither_rose":{"protocol_id":293},"potted_red_mushroom":{"protocol_id":294},"potted_brown_mushroom":{"protocol_id":295},"potted_dead_bush":{"protocol_id":296},"potted_cactus":{"protocol_id":297},"carrots":{"protocol_id":298},"potatoes":{"protocol_id":299},"oak_button":{"protocol_id":300},"spruce_button":{"protocol_id":301},"birch_button":{"protocol_id":302},"jungle_button":{"protocol_id":303},"acacia_button":{"protocol_id":304},"dark_oak_button":{"protocol_id":305},"skeleton_skull":{"protocol_id":306},"skeleton_wall_skull":{"protocol_id":307},"wither_skeleton_skull":{"protocol_id":308},"wither_skeleton_wall_skull":{"protocol_id":309},"zombie_head":{"protocol_id":310},"zombie_wall_head":{"protocol_id":311},"player_head":{"protocol_id":312},"player_wall_head":{"protocol_id":313},"creeper_head":{"protocol_id":314},"creeper_wall_head":{"protocol_id":315},"dragon_head":{"protocol_id":316},"dragon_wall_head":{"protocol_id":317},"anvil":{"protocol_id":318},"chipped_anvil":{"protocol_id":319},"damaged_anvil":{"protocol_id":320},"trapped_chest":{"protocol_id":321},"light_weighted_pressure_plate":{"protocol_id":322},"heavy_weighted_pressure_plate":{"protocol_id":323},"comparator":{"protocol_id":324},"daylight_detector":{"protocol_id":325},"redstone_block":{"protocol_id":326},"nether_quartz_ore":{"protocol_id":327},"hopper":{"protocol_id":328},"quartz_block":{"protocol_id":329},"chiseled_quartz_block":{"protocol_id":330},"quartz_pillar":{"protocol_id":331},"quartz_stairs":{"protocol_id":332},"activator_rail":{"protocol_id":333},"dropper":{"protocol_id":334},"white_terracotta":{"protocol_id":335},"orange_terracotta":{"protocol_id":336},"magenta_terracotta":{"protocol_id":337},"light_blue_terracotta":{"protocol_id":338},"yellow_terracotta":{"protocol_id":339},"lime_terracotta":{"protocol_id":340},"pink_terracotta":{"protocol_id":341},"gray_terracotta":{"protocol_id":342},"light_gray_terracotta":{"protocol_id":343},"cyan_terracotta":{"protocol_id":344},"purple_terracotta":{"protocol_id":345},"blue_terracotta":{"protocol_id":346},"brown_terracotta":{"protocol_id":347},"green_terracotta":{"protocol_id":348},"red_terracotta":{"protocol_id":349},"black_terracotta":{"protocol_id":350},"white_stained_glass_pane":{"protocol_id":351},"orange_stained_glass_pane":{"protocol_id":352},"magenta_stained_glass_pane":{"protocol_id":353},"light_blue_stained_glass_pane":{"protocol_id":354},"yellow_stained_glass_pane":{"protocol_id":355},"lime_stained_glass_pane":{"protocol_id":356},"pink_stained_glass_pane":{"protocol_id":357},"gray_stained_glass_pane":{"protocol_id":358},"light_gray_stained_glass_pane":{"protocol_id":359},"cyan_stained_glass_pane":{"protocol_id":360},"purple_stained_glass_pane":{"protocol_id":361},"blue_stained_glass_pane":{"protocol_id":362},"brown_stained_glass_pane":{"protocol_id":363},"green_stained_glass_pane":{"protocol_id":364},"red_stained_glass_pane":{"protocol_id":365},"black_stained_glass_pane":{"protocol_id":366},"acacia_stairs":{"protocol_id":367},"dark_oak_stairs":{"protocol_id":368},"slime_block":{"protocol_id":369},"barrier":{"protocol_id":370},"iron_trapdoor":{"protocol_id":371},"prismarine":{"protocol_id":372},"prismarine_bricks":{"protocol_id":373},"dark_prismarine":{"protocol_id":374},"prismarine_stairs":{"protocol_id":375},"prismarine_brick_stairs":{"protocol_id":376},"dark_prismarine_stairs":{"protocol_id":377},"prismarine_slab":{"protocol_id":378},"prismarine_brick_slab":{"protocol_id":379},"dark_prismarine_slab":{"protocol_id":380},"sea_lantern":{"protocol_id":381},"hay_block":{"protocol_id":382},"white_carpet":{"protocol_id":383},"orange_carpet":{"protocol_id":384},"magenta_carpet":{"protocol_id":385},"light_blue_carpet":{"protocol_id":386},"yellow_carpet":{"protocol_id":387},"lime_carpet":{"protocol_id":388},"pink_carpet":{"protocol_id":389},"gray_carpet":{"protocol_id":390},"light_gray_carpet":{"protocol_id":391},"cyan_carpet":{"protocol_id":392},"purple_carpet":{"protocol_id":393},"blue_carpet":{"protocol_id":394},"brown_carpet":{"protocol_id":395},"green_carpet":{"protocol_id":396},"red_carpet":{"protocol_id":397},"black_carpet":{"protocol_id":398},"terracotta":{"protocol_id":399},"coal_block":{"protocol_id":400},"packed_ice":{"protocol_id":401},"sunflower":{"protocol_id":402},"lilac":{"protocol_id":403},"rose_bush":{"protocol_id":404},"peony":{"protocol_id":405},"tall_grass":{"protocol_id":406},"large_fern":{"protocol_id":407},"white_banner":{"protocol_id":408},"orange_banner":{"protocol_id":409},"magenta_banner":{"protocol_id":410},"light_blue_banner":{"protocol_id":411},"yellow_banner":{"protocol_id":412},"lime_banner":{"protocol_id":413},"pink_banner":{"protocol_id":414},"gray_banner":{"protocol_id":415},"light_gray_banner":{"protocol_id":416},"cyan_banner":{"protocol_id":417},"purple_banner":{"protocol_id":418},"blue_banner":{"protocol_id":419},"brown_banner":{"protocol_id":420},"green_banner":{"protocol_id":421},"red_banner":{"protocol_id":422},"black_banner":{"protocol_id":423},"white_wall_banner":{"protocol_id":424},"orange_wall_banner":{"protocol_id":425},"magenta_wall_banner":{"protocol_id":426},"light_blue_wall_banner":{"protocol_id":427},"yellow_wall_banner":{"protocol_id":428},"lime_wall_banner":{"protocol_id":429},"pink_wall_banner":{"protocol_id":430},"gray_wall_banner":{"protocol_id":431},"light_gray_wall_banner":{"protocol_id":432},"cyan_wall_banner":{"protocol_id":433},"purple_wall_banner":{"protocol_id":434},"blue_wall_banner":{"protocol_id":435},"brown_wall_banner":{"protocol_id":436},"green_wall_banner":{"protocol_id":437},"red_wall_banner":{"protocol_id":438},"black_wall_banner":{"protocol_id":439},"red_sandstone":{"protocol_id":440},"chiseled_red_sandstone":{"protocol_id":441},"cut_red_sandstone":{"protocol_id":442},"red_sandstone_stairs":{"protocol_id":443},"oak_slab":{"protocol_id":444},"spruce_slab":{"protocol_id":445},"birch_slab":{"protocol_id":446},"jungle_slab":{"protocol_id":447},"acacia_slab":{"protocol_id":448},"dark_oak_slab":{"protocol_id":449},"stone_slab":{"protocol_id":450},"smooth_stone_slab":{"protocol_id":451},"sandstone_slab":{"protocol_id":452},"cut_sandstone_slab":{"protocol_id":453},"petrified_oak_slab":{"protocol_id":454},"cobblestone_slab":{"protocol_id":455},"brick_slab":{"protocol_id":456},"stone_brick_slab":{"protocol_id":457},"nether_brick_slab":{"protocol_id":458},"quartz_slab":{"protocol_id":459},"red_sandstone_slab":{"protocol_id":460},"cut_red_sandstone_slab":{"protocol_id":461},"purpur_slab":{"protocol_id":462},"smooth_stone":{"protocol_id":463},"smooth_sandstone":{"protocol_id":464},"smooth_quartz":{"protocol_id":465},"smooth_red_sandstone":{"protocol_id":466},"spruce_fence_gate":{"protocol_id":467},"birch_fence_gate":{"protocol_id":468},"jungle_fence_gate":{"protocol_id":469},"acacia_fence_gate":{"protocol_id":470},"dark_oak_fence_gate":{"protocol_id":471},"spruce_fence":{"protocol_id":472},"birch_fence":{"protocol_id":473},"jungle_fence":{"protocol_id":474},"acacia_fence":{"protocol_id":475},"dark_oak_fence":{"protocol_id":476},"spruce_door":{"protocol_id":477},"birch_door":{"protocol_id":478},"jungle_door":{"protocol_id":479},"acacia_door":{"protocol_id":480},"dark_oak_door":{"protocol_id":481},"end_rod":{"protocol_id":482},"chorus_plant":{"protocol_id":483},"chorus_flower":{"protocol_id":484},"purpur_block":{"protocol_id":485},"purpur_pillar":{"protocol_id":486},"purpur_stairs":{"protocol_id":487},"end_stone_bricks":{"protocol_id":488},"beetroots":{"protocol_id":489},"grass_path":{"protocol_id":490},"end_gateway":{"protocol_id":491},"repeating_command_block":{"protocol_id":492},"chain_command_block":{"protocol_id":493},"frosted_ice":{"protocol_id":494},"magma_block":{"protocol_id":495},"nether_wart_block":{"protocol_id":496},"red_nether_bricks":{"protocol_id":497},"bone_block":{"protocol_id":498},"structure_void":{"protocol_id":499},"observer":{"protocol_id":500},"shulker_box":{"protocol_id":501},"white_shulker_box":{"protocol_id":502},"orange_shulker_box":{"protocol_id":503},"magenta_shulker_box":{"protocol_id":504},"light_blue_shulker_box":{"protocol_id":505},"yellow_shulker_box":{"protocol_id":506},"lime_shulker_box":{"protocol_id":507},"pink_shulker_box":{"protocol_id":508},"gray_shulker_box":{"protocol_id":509},"light_gray_shulker_box":{"protocol_id":510},"cyan_shulker_box":{"protocol_id":511},"purple_shulker_box":{"protocol_id":512},"blue_shulker_box":{"protocol_id":513},"brown_shulker_box":{"protocol_id":514},"green_shulker_box":{"protocol_id":515},"red_shulker_box":{"protocol_id":516},"black_shulker_box":{"protocol_id":517},"white_glazed_terracotta":{"protocol_id":518},"orange_glazed_terracotta":{"protocol_id":519},"magenta_glazed_terracotta":{"protocol_id":520},"light_blue_glazed_terracotta":{"protocol_id":521},"yellow_glazed_terracotta":{"protocol_id":522},"lime_glazed_terracotta":{"protocol_id":523},"pink_glazed_terracotta":{"protocol_id":524},"gray_glazed_terracotta":{"protocol_id":525},"light_gray_glazed_terracotta":{"protocol_id":526},"cyan_glazed_terracotta":{"protocol_id":527},"purple_glazed_terracotta":{"protocol_id":528},"blue_glazed_terracotta":{"protocol_id":529},"brown_glazed_terracotta":{"protocol_id":530},"green_glazed_terracotta":{"protocol_id":531},"red_glazed_terracotta":{"protocol_id":532},"black_glazed_terracotta":{"protocol_id":533},"white_concrete":{"protocol_id":534},"orange_concrete":{"protocol_id":535},"magenta_concrete":{"protocol_id":536},"light_blue_concrete":{"protocol_id":537},"yellow_concrete":{"protocol_id":538},"lime_concrete":{"protocol_id":539},"pink_concrete":{"protocol_id":540},"gray_concrete":{"protocol_id":541},"light_gray_concrete":{"protocol_id":542},"cyan_concrete":{"protocol_id":543},"purple_concrete":{"protocol_id":544},"blue_concrete":{"protocol_id":545},"brown_concrete":{"protocol_id":546},"green_concrete":{"protocol_id":547},"red_concrete":{"protocol_id":548},"black_concrete":{"protocol_id":549},"white_concrete_powder":{"protocol_id":550},"orange_concrete_powder":{"protocol_id":551},"magenta_concrete_powder":{"protocol_id":552},"light_blue_concrete_powder":{"protocol_id":553},"yellow_concrete_powder":{"protocol_id":554},"lime_concrete_powder":{"protocol_id":555},"pink_concrete_powder":{"protocol_id":556},"gray_concrete_powder":{"protocol_id":557},"light_gray_concrete_powder":{"protocol_id":558},"cyan_concrete_powder":{"protocol_id":559},"purple_concrete_powder":{"protocol_id":560},"blue_concrete_powder":{"protocol_id":561},"brown_concrete_powder":{"protocol_id":562},"green_concrete_powder":{"protocol_id":563},"red_concrete_powder":{"protocol_id":564},"black_concrete_powder":{"protocol_id":565},"kelp":{"protocol_id":566},"kelp_plant":{"protocol_id":567},"dried_kelp_block":{"protocol_id":568},"turtle_egg":{"protocol_id":569},"dead_tube_coral_block":{"protocol_id":570},"dead_brain_coral_block":{"protocol_id":571},"dead_bubble_coral_block":{"protocol_id":572},"dead_fire_coral_block":{"protocol_id":573},"dead_horn_coral_block":{"protocol_id":574},"tube_coral_block":{"protocol_id":575},"brain_coral_block":{"protocol_id":576},"bubble_coral_block":{"protocol_id":577},"fire_coral_block":{"protocol_id":578},"horn_coral_block":{"protocol_id":579},"dead_tube_coral":{"protocol_id":580},"dead_brain_coral":{"protocol_id":581},"dead_bubble_coral":{"protocol_id":582},"dead_fire_coral":{"protocol_id":583},"dead_horn_coral":{"protocol_id":584},"tube_coral":{"protocol_id":585},"brain_coral":{"protocol_id":586},"bubble_coral":{"protocol_id":587},"fire_coral":{"protocol_id":588},"horn_coral":{"protocol_id":589},"dead_tube_coral_fan":{"protocol_id":590},"dead_brain_coral_fan":{"protocol_id":591},"dead_bubble_coral_fan":{"protocol_id":592},"dead_fire_coral_fan":{"protocol_id":593},"dead_horn_coral_fan":{"protocol_id":594},"tube_coral_fan":{"protocol_id":595},"brain_coral_fan":{"protocol_id":596},"bubble_coral_fan":{"protocol_id":597},"fire_coral_fan":{"protocol_id":598},"horn_coral_fan":{"protocol_id":599},"dead_tube_coral_wall_fan":{"protocol_id":600},"dead_brain_coral_wall_fan":{"protocol_id":601},"dead_bubble_coral_wall_fan":{"protocol_id":602},"dead_fire_coral_wall_fan":{"protocol_id":603},"dead_horn_coral_wall_fan":{"protocol_id":604},"tube_coral_wall_fan":{"protocol_id":605},"brain_coral_wall_fan":{"protocol_id":606},"bubble_coral_wall_fan":{"protocol_id":607},"fire_coral_wall_fan":{"protocol_id":608},"horn_coral_wall_fan":{"protocol_id":609},"sea_pickle":{"protocol_id":610},"blue_ice":{"protocol_id":611},"conduit":{"protocol_id":612},"bamboo_sapling":{"protocol_id":613},"bamboo":{"protocol_id":614},"potted_bamboo":{"protocol_id":615},"void_air":{"protocol_id":616},"cave_air":{"protocol_id":617},"bubble_column":{"protocol_id":618},"polished_granite_stairs":{"protocol_id":619},"smooth_red_sandstone_stairs":{"protocol_id":620},"mossy_stone_brick_stairs":{"protocol_id":621},"polished_diorite_stairs":{"protocol_id":622},"mossy_cobblestone_stairs":{"protocol_id":623},"end_stone_brick_stairs":{"protocol_id":624},"stone_stairs":{"protocol_id":625},"smooth_sandstone_stairs":{"protocol_id":626},"smooth_quartz_stairs":{"protocol_id":627},"granite_stairs":{"protocol_id":628},"andesite_stairs":{"protocol_id":629},"red_nether_brick_stairs":{"protocol_id":630},"polished_andesite_stairs":{"protocol_id":631},"diorite_stairs":{"protocol_id":632},"polished_granite_slab":{"protocol_id":633},"smooth_red_sandstone_slab":{"protocol_id":634},"mossy_stone_brick_slab":{"protocol_id":635},"polished_diorite_slab":{"protocol_id":636},"mossy_cobblestone_slab":{"protocol_id":637},"end_stone_brick_slab":{"protocol_id":638},"smooth_sandstone_slab":{"protocol_id":639},"smooth_quartz_slab":{"protocol_id":640},"granite_slab":{"protocol_id":641},"andesite_slab":{"protocol_id":642},"red_nether_brick_slab":{"protocol_id":643},"polished_andesite_slab":{"protocol_id":644},"diorite_slab":{"protocol_id":645},"brick_wall":{"protocol_id":646},"prismarine_wall":{"protocol_id":647},"red_sandstone_wall":{"protocol_id":648},"mossy_stone_brick_wall":{"protocol_id":649},"granite_wall":{"protocol_id":650},"stone_brick_wall":{"protocol_id":651},"nether_brick_wall":{"protocol_id":652},"andesite_wall":{"protocol_id":653},"red_nether_brick_wall":{"protocol_id":654},"sandstone_wall":{"protocol_id":655},"end_stone_brick_wall":{"protocol_id":656},"diorite_wall":{"protocol_id":657},"scaffolding":{"protocol_id":658},"loom":{"protocol_id":659},"barrel":{"protocol_id":660},"smoker":{"protocol_id":661},"blast_furnace":{"protocol_id":662},"cartography_table":{"protocol_id":663},"fletching_table":{"protocol_id":664},"grindstone":{"protocol_id":665},"lectern":{"protocol_id":666},"smithing_table":{"protocol_id":667},"stonecutter":{"protocol_id":668},"bell":{"protocol_id":669},"lantern":{"protocol_id":670},"campfire":{"protocol_id":671},"sweet_berry_bush":{"protocol_id":672},"structure_block":{"protocol_id":673},"jigsaw":{"protocol_id":674},"composter":{"protocol_id":675},"bee_nest":{"protocol_id":676},"beehive":{"protocol_id":677},"honey_block":{"protocol_id":678},"honeycomb_block":{"protocol_id":679}}},"enchantment":{"protocol_id":4,"entries":{"protection":{"protocol_id":0},"fire_protection":{"protocol_id":1},"feather_falling":{"protocol_id":2},"blast_protection":{"protocol_id":3},"projectile_protection":{"protocol_id":4},"respiration":{"protocol_id":5},"aqua_affinity":{"protocol_id":6},"thorns":{"protocol_id":7},"depth_strider":{"protocol_id":8},"frost_walker":{"protocol_id":9},"binding_curse":{"protocol_id":10},"sharpness":{"protocol_id":11},"smite":{"protocol_id":12},"bane_of_arthropods":{"protocol_id":13},"knockback":{"protocol_id":14},"fire_aspect":{"protocol_id":15},"looting":{"protocol_id":16},"sweeping":{"protocol_id":17},"efficiency":{"protocol_id":18},"silk_touch":{"protocol_id":19},"unbreaking":{"protocol_id":20},"fortune":{"protocol_id":21},"power":{"protocol_id":22},"punch":{"protocol_id":23},"flame":{"protocol_id":24},"infinity":{"protocol_id":25},"luck_of_the_sea":{"protocol_id":26},"lure":{"protocol_id":27},"loyalty":{"protocol_id":28},"impaling":{"protocol_id":29},"riptide":{"protocol_id":30},"channeling":{"protocol_id":31},"multishot":{"protocol_id":32},"quick_charge":{"protocol_id":33},"piercing":{"protocol_id":34},"mending":{"protocol_id":35},"vanishing_curse":{"protocol_id":36}}},"entity_type":{"default":"pig","protocol_id":5,"entries":{"area_effect_cloud":{"protocol_id":0},"armor_stand":{"protocol_id":1},"arrow":{"protocol_id":2},"bat":{"protocol_id":3},"bee":{"protocol_id":4},"blaze":{"protocol_id":5},"boat":{"protocol_id":6},"cat":{"protocol_id":7},"cave_spider":{"protocol_id":8},"chicken":{"protocol_id":9},"cod":{"protocol_id":10},"cow":{"protocol_id":11},"creeper":{"protocol_id":12},"donkey":{"protocol_id":13},"dolphin":{"protocol_id":14},"dragon_fireball":{"protocol_id":15},"drowned":{"protocol_id":16},"elder_guardian":{"protocol_id":17},"end_crystal":{"protocol_id":18},"ender_dragon":{"protocol_id":19},"enderman":{"protocol_id":20},"endermite":{"protocol_id":21},"evoker_fangs":{"protocol_id":22},"evoker":{"protocol_id":23},"experience_orb":{"protocol_id":24},"eye_of_ender":{"protocol_id":25},"falling_block":{"protocol_id":26},"firework_rocket":{"protocol_id":27},"fox":{"protocol_id":28},"ghast":{"protocol_id":29},"giant":{"protocol_id":30},"guardian":{"protocol_id":31},"horse":{"protocol_id":32},"husk":{"protocol_id":33},"illusioner":{"protocol_id":34},"item":{"protocol_id":35},"item_frame":{"protocol_id":36},"fireball":{"protocol_id":37},"leash_knot":{"protocol_id":38},"llama":{"protocol_id":39},"llama_spit":{"protocol_id":40},"magma_cube":{"protocol_id":41},"minecart":{"protocol_id":42},"chest_minecart":{"protocol_id":43},"command_block_minecart":{"protocol_id":44},"furnace_minecart":{"protocol_id":45},"hopper_minecart":{"protocol_id":46},"spawner_minecart":{"protocol_id":47},"tnt_minecart":{"protocol_id":48},"mule":{"protocol_id":49},"mooshroom":{"protocol_id":50},"ocelot":{"protocol_id":51},"painting":{"protocol_id":52},"panda":{"protocol_id":53},"parrot":{"protocol_id":54},"pig":{"protocol_id":55},"pufferfish":{"protocol_id":56},"zombie_pigman":{"protocol_id":57},"polar_bear":{"protocol_id":58},"tnt":{"protocol_id":59},"rabbit":{"protocol_id":60},"salmon":{"protocol_id":61},"sheep":{"protocol_id":62},"shulker":{"protocol_id":63},"shulker_bullet":{"protocol_id":64},"silverfish":{"protocol_id":65},"skeleton":{"protocol_id":66},"skeleton_horse":{"protocol_id":67},"slime":{"protocol_id":68},"small_fireball":{"protocol_id":69},"snow_golem":{"protocol_id":70},"snowball":{"protocol_id":71},"spectral_arrow":{"protocol_id":72},"spider":{"protocol_id":73},"squid":{"protocol_id":74},"stray":{"protocol_id":75},"trader_llama":{"protocol_id":76},"tropical_fish":{"protocol_id":77},"turtle":{"protocol_id":78},"egg":{"protocol_id":79},"ender_pearl":{"protocol_id":80},"experience_bottle":{"protocol_id":81},"potion":{"protocol_id":82},"trident":{"protocol_id":83},"vex":{"protocol_id":84},"villager":{"protocol_id":85},"iron_golem":{"protocol_id":86},"vindicator":{"protocol_id":87},"pillager":{"protocol_id":88},"wandering_trader":{"protocol_id":89},"witch":{"protocol_id":90},"wither":{"protocol_id":91},"wither_skeleton":{"protocol_id":92},"wither_skull":{"protocol_id":93},"wolf":{"protocol_id":94},"zombie":{"protocol_id":95},"zombie_horse":{"protocol_id":96},"zombie_villager":{"protocol_id":97},"phantom":{"protocol_id":98},"ravager":{"protocol_id":99},"lightning_bolt":{"protocol_id":100},"player":{"protocol_id":101},"fishing_bobber":{"protocol_id":102}}},"item":{"default":"air","protocol_id":6,"entries":{"air":{"protocol_id":0},"stone":{"protocol_id":1},"granite":{"protocol_id":2},"polished_granite":{"protocol_id":3},"diorite":{"protocol_id":4},"polished_diorite":{"protocol_id":5},"andesite":{"protocol_id":6},"polished_andesite":{"protocol_id":7},"grass_block":{"protocol_id":8},"dirt":{"protocol_id":9},"coarse_dirt":{"protocol_id":10},"podzol":{"protocol_id":11},"cobblestone":{"protocol_id":12},"oak_planks":{"protocol_id":13},"spruce_planks":{"protocol_id":14},"birch_planks":{"protocol_id":15},"jungle_planks":{"protocol_id":16},"acacia_planks":{"protocol_id":17},"dark_oak_planks":{"protocol_id":18},"oak_sapling":{"protocol_id":19},"spruce_sapling":{"protocol_id":20},"birch_sapling":{"protocol_id":21},"jungle_sapling":{"protocol_id":22},"acacia_sapling":{"protocol_id":23},"dark_oak_sapling":{"protocol_id":24},"bedrock":{"protocol_id":25},"sand":{"protocol_id":26},"red_sand":{"protocol_id":27},"gravel":{"protocol_id":28},"gold_ore":{"protocol_id":29},"iron_ore":{"protocol_id":30},"coal_ore":{"protocol_id":31},"oak_log":{"protocol_id":32},"spruce_log":{"protocol_id":33},"birch_log":{"protocol_id":34},"jungle_log":{"protocol_id":35},"acacia_log":{"protocol_id":36},"dark_oak_log":{"protocol_id":37},"stripped_oak_log":{"protocol_id":38},"stripped_spruce_log":{"protocol_id":39},"stripped_birch_log":{"protocol_id":40},"stripped_jungle_log":{"protocol_id":41},"stripped_acacia_log":{"protocol_id":42},"stripped_dark_oak_log":{"protocol_id":43},"stripped_oak_wood":{"protocol_id":44},"stripped_spruce_wood":{"protocol_id":45},"stripped_birch_wood":{"protocol_id":46},"stripped_jungle_wood":{"protocol_id":47},"stripped_acacia_wood":{"protocol_id":48},"stripped_dark_oak_wood":{"protocol_id":49},"oak_wood":{"protocol_id":50},"spruce_wood":{"protocol_id":51},"birch_wood":{"protocol_id":52},"jungle_wood":{"protocol_id":53},"acacia_wood":{"protocol_id":54},"dark_oak_wood":{"protocol_id":55},"oak_leaves":{"protocol_id":56},"spruce_leaves":{"protocol_id":57},"birch_leaves":{"protocol_id":58},"jungle_leaves":{"protocol_id":59},"acacia_leaves":{"protocol_id":60},"dark_oak_leaves":{"protocol_id":61},"sponge":{"protocol_id":62},"wet_sponge":{"protocol_id":63},"glass":{"protocol_id":64},"lapis_ore":{"protocol_id":65},"lapis_block":{"protocol_id":66},"dispenser":{"protocol_id":67},"sandstone":{"protocol_id":68},"chiseled_sandstone":{"protocol_id":69},"cut_sandstone":{"protocol_id":70},"note_block":{"protocol_id":71},"powered_rail":{"protocol_id":72},"detector_rail":{"protocol_id":73},"sticky_piston":{"protocol_id":74},"cobweb":{"protocol_id":75},"grass":{"protocol_id":76},"fern":{"protocol_id":77},"dead_bush":{"protocol_id":78},"seagrass":{"protocol_id":79},"sea_pickle":{"protocol_id":80},"piston":{"protocol_id":81},"white_wool":{"protocol_id":82},"orange_wool":{"protocol_id":83},"magenta_wool":{"protocol_id":84},"light_blue_wool":{"protocol_id":85},"yellow_wool":{"protocol_id":86},"lime_wool":{"protocol_id":87},"pink_wool":{"protocol_id":88},"gray_wool":{"protocol_id":89},"light_gray_wool":{"protocol_id":90},"cyan_wool":{"protocol_id":91},"purple_wool":{"protocol_id":92},"blue_wool":{"protocol_id":93},"brown_wool":{"protocol_id":94},"green_wool":{"protocol_id":95},"red_wool":{"protocol_id":96},"black_wool":{"protocol_id":97},"dandelion":{"protocol_id":98},"poppy":{"protocol_id":99},"blue_orchid":{"protocol_id":100},"allium":{"protocol_id":101},"azure_bluet":{"protocol_id":102},"red_tulip":{"protocol_id":103},"orange_tulip":{"protocol_id":104},"white_tulip":{"protocol_id":105},"pink_tulip":{"protocol_id":106},"oxeye_daisy":{"protocol_id":107},"cornflower":{"protocol_id":108},"lily_of_the_valley":{"protocol_id":109},"wither_rose":{"protocol_id":110},"brown_mushroom":{"protocol_id":111},"red_mushroom":{"protocol_id":112},"gold_block":{"protocol_id":113},"iron_block":{"protocol_id":114},"oak_slab":{"protocol_id":115},"spruce_slab":{"protocol_id":116},"birch_slab":{"protocol_id":117},"jungle_slab":{"protocol_id":118},"acacia_slab":{"protocol_id":119},"dark_oak_slab":{"protocol_id":120},"stone_slab":{"protocol_id":121},"smooth_stone_slab":{"protocol_id":122},"sandstone_slab":{"protocol_id":123},"cut_sandstone_slab":{"protocol_id":124},"petrified_oak_slab":{"protocol_id":125},"cobblestone_slab":{"protocol_id":126},"brick_slab":{"protocol_id":127},"stone_brick_slab":{"protocol_id":128},"nether_brick_slab":{"protocol_id":129},"quartz_slab":{"protocol_id":130},"red_sandstone_slab":{"protocol_id":131},"cut_red_sandstone_slab":{"protocol_id":132},"purpur_slab":{"protocol_id":133},"prismarine_slab":{"protocol_id":134},"prismarine_brick_slab":{"protocol_id":135},"dark_prismarine_slab":{"protocol_id":136},"smooth_quartz":{"protocol_id":137},"smooth_red_sandstone":{"protocol_id":138},"smooth_sandstone":{"protocol_id":139},"smooth_stone":{"protocol_id":140},"bricks":{"protocol_id":141},"tnt":{"protocol_id":142},"bookshelf":{"protocol_id":143},"mossy_cobblestone":{"protocol_id":144},"obsidian":{"protocol_id":145},"torch":{"protocol_id":146},"end_rod":{"protocol_id":147},"chorus_plant":{"protocol_id":148},"chorus_flower":{"protocol_id":149},"purpur_block":{"protocol_id":150},"purpur_pillar":{"protocol_id":151},"purpur_stairs":{"protocol_id":152},"spawner":{"protocol_id":153},"oak_stairs":{"protocol_id":154},"chest":{"protocol_id":155},"diamond_ore":{"protocol_id":156},"diamond_block":{"protocol_id":157},"crafting_table":{"protocol_id":158},"farmland":{"protocol_id":159},"furnace":{"protocol_id":160},"ladder":{"protocol_id":161},"rail":{"protocol_id":162},"cobblestone_stairs":{"protocol_id":163},"lever":{"protocol_id":164},"stone_pressure_plate":{"protocol_id":165},"oak_pressure_plate":{"protocol_id":166},"spruce_pressure_plate":{"protocol_id":167},"birch_pressure_plate":{"protocol_id":168},"jungle_pressure_plate":{"protocol_id":169},"acacia_pressure_plate":{"protocol_id":170},"dark_oak_pressure_plate":{"protocol_id":171},"redstone_ore":{"protocol_id":172},"redstone_torch":{"protocol_id":173},"stone_button":{"protocol_id":174},"snow":{"protocol_id":175},"ice":{"protocol_id":176},"snow_block":{"protocol_id":177},"cactus":{"protocol_id":178},"clay":{"protocol_id":179},"jukebox":{"protocol_id":180},"oak_fence":{"protocol_id":181},"spruce_fence":{"protocol_id":182},"birch_fence":{"protocol_id":183},"jungle_fence":{"protocol_id":184},"acacia_fence":{"protocol_id":185},"dark_oak_fence":{"protocol_id":186},"pumpkin":{"protocol_id":187},"carved_pumpkin":{"protocol_id":188},"netherrack":{"protocol_id":189},"soul_sand":{"protocol_id":190},"glowstone":{"protocol_id":191},"jack_o_lantern":{"protocol_id":192},"oak_trapdoor":{"protocol_id":193},"spruce_trapdoor":{"protocol_id":194},"birch_trapdoor":{"protocol_id":195},"jungle_trapdoor":{"protocol_id":196},"acacia_trapdoor":{"protocol_id":197},"dark_oak_trapdoor":{"protocol_id":198},"infested_stone":{"protocol_id":199},"infested_cobblestone":{"protocol_id":200},"infested_stone_bricks":{"protocol_id":201},"infested_mossy_stone_bricks":{"protocol_id":202},"infested_cracked_stone_bricks":{"protocol_id":203},"infested_chiseled_stone_bricks":{"protocol_id":204},"stone_bricks":{"protocol_id":205},"mossy_stone_bricks":{"protocol_id":206},"cracked_stone_bricks":{"protocol_id":207},"chiseled_stone_bricks":{"protocol_id":208},"brown_mushroom_block":{"protocol_id":209},"red_mushroom_block":{"protocol_id":210},"mushroom_stem":{"protocol_id":211},"iron_bars":{"protocol_id":212},"glass_pane":{"protocol_id":213},"melon":{"protocol_id":214},"vine":{"protocol_id":215},"oak_fence_gate":{"protocol_id":216},"spruce_fence_gate":{"protocol_id":217},"birch_fence_gate":{"protocol_id":218},"jungle_fence_gate":{"protocol_id":219},"acacia_fence_gate":{"protocol_id":220},"dark_oak_fence_gate":{"protocol_id":221},"brick_stairs":{"protocol_id":222},"stone_brick_stairs":{"protocol_id":223},"mycelium":{"protocol_id":224},"lily_pad":{"protocol_id":225},"nether_bricks":{"protocol_id":226},"nether_brick_fence":{"protocol_id":227},"nether_brick_stairs":{"protocol_id":228},"enchanting_table":{"protocol_id":229},"end_portal_frame":{"protocol_id":230},"end_stone":{"protocol_id":231},"end_stone_bricks":{"protocol_id":232},"dragon_egg":{"protocol_id":233},"redstone_lamp":{"protocol_id":234},"sandstone_stairs":{"protocol_id":235},"emerald_ore":{"protocol_id":236},"ender_chest":{"protocol_id":237},"tripwire_hook":{"protocol_id":238},"emerald_block":{"protocol_id":239},"spruce_stairs":{"protocol_id":240},"birch_stairs":{"protocol_id":241},"jungle_stairs":{"protocol_id":242},"command_block":{"protocol_id":243},"beacon":{"protocol_id":244},"cobblestone_wall":{"protocol_id":245},"mossy_cobblestone_wall":{"protocol_id":246},"brick_wall":{"protocol_id":247},"prismarine_wall":{"protocol_id":248},"red_sandstone_wall":{"protocol_id":249},"mossy_stone_brick_wall":{"protocol_id":250},"granite_wall":{"protocol_id":251},"stone_brick_wall":{"protocol_id":252},"nether_brick_wall":{"protocol_id":253},"andesite_wall":{"protocol_id":254},"red_nether_brick_wall":{"protocol_id":255},"sandstone_wall":{"protocol_id":256},"end_stone_brick_wall":{"protocol_id":257},"diorite_wall":{"protocol_id":258},"oak_button":{"protocol_id":259},"spruce_button":{"protocol_id":260},"birch_button":{"protocol_id":261},"jungle_button":{"protocol_id":262},"acacia_button":{"protocol_id":263},"dark_oak_button":{"protocol_id":264},"anvil":{"protocol_id":265},"chipped_anvil":{"protocol_id":266},"damaged_anvil":{"protocol_id":267},"trapped_chest":{"protocol_id":268},"light_weighted_pressure_plate":{"protocol_id":269},"heavy_weighted_pressure_plate":{"protocol_id":270},"daylight_detector":{"protocol_id":271},"redstone_block":{"protocol_id":272},"nether_quartz_ore":{"protocol_id":273},"hopper":{"protocol_id":274},"chiseled_quartz_block":{"protocol_id":275},"quartz_block":{"protocol_id":276},"quartz_pillar":{"protocol_id":277},"quartz_stairs":{"protocol_id":278},"activator_rail":{"protocol_id":279},"dropper":{"protocol_id":280},"white_terracotta":{"protocol_id":281},"orange_terracotta":{"protocol_id":282},"magenta_terracotta":{"protocol_id":283},"light_blue_terracotta":{"protocol_id":284},"yellow_terracotta":{"protocol_id":285},"lime_terracotta":{"protocol_id":286},"pink_terracotta":{"protocol_id":287},"gray_terracotta":{"protocol_id":288},"light_gray_terracotta":{"protocol_id":289},"cyan_terracotta":{"protocol_id":290},"purple_terracotta":{"protocol_id":291},"blue_terracotta":{"protocol_id":292},"brown_terracotta":{"protocol_id":293},"green_terracotta":{"protocol_id":294},"red_terracotta":{"protocol_id":295},"black_terracotta":{"protocol_id":296},"barrier":{"protocol_id":297},"iron_trapdoor":{"protocol_id":298},"hay_block":{"protocol_id":299},"white_carpet":{"protocol_id":300},"orange_carpet":{"protocol_id":301},"magenta_carpet":{"protocol_id":302},"light_blue_carpet":{"protocol_id":303},"yellow_carpet":{"protocol_id":304},"lime_carpet":{"protocol_id":305},"pink_carpet":{"protocol_id":306},"gray_carpet":{"protocol_id":307},"light_gray_carpet":{"protocol_id":308},"cyan_carpet":{"protocol_id":309},"purple_carpet":{"protocol_id":310},"blue_carpet":{"protocol_id":311},"brown_carpet":{"protocol_id":312},"green_carpet":{"protocol_id":313},"red_carpet":{"protocol_id":314},"black_carpet":{"protocol_id":315},"terracotta":{"protocol_id":316},"coal_block":{"protocol_id":317},"packed_ice":{"protocol_id":318},"acacia_stairs":{"protocol_id":319},"dark_oak_stairs":{"protocol_id":320},"slime_block":{"protocol_id":321},"grass_path":{"protocol_id":322},"sunflower":{"protocol_id":323},"lilac":{"protocol_id":324},"rose_bush":{"protocol_id":325},"peony":{"protocol_id":326},"tall_grass":{"protocol_id":327},"large_fern":{"protocol_id":328},"white_stained_glass":{"protocol_id":329},"orange_stained_glass":{"protocol_id":330},"magenta_stained_glass":{"protocol_id":331},"light_blue_stained_glass":{"protocol_id":332},"yellow_stained_glass":{"protocol_id":333},"lime_stained_glass":{"protocol_id":334},"pink_stained_glass":{"protocol_id":335},"gray_stained_glass":{"protocol_id":336},"light_gray_stained_glass":{"protocol_id":337},"cyan_stained_glass":{"protocol_id":338},"purple_stained_glass":{"protocol_id":339},"blue_stained_glass":{"protocol_id":340},"brown_stained_glass":{"protocol_id":341},"green_stained_glass":{"protocol_id":342},"red_stained_glass":{"protocol_id":343},"black_stained_glass":{"protocol_id":344},"white_stained_glass_pane":{"protocol_id":345},"orange_stained_glass_pane":{"protocol_id":346},"magenta_stained_glass_pane":{"protocol_id":347},"light_blue_stained_glass_pane":{"protocol_id":348},"yellow_stained_glass_pane":{"protocol_id":349},"lime_stained_glass_pane":{"protocol_id":350},"pink_stained_glass_pane":{"protocol_id":351},"gray_stained_glass_pane":{"protocol_id":352},"light_gray_stained_glass_pane":{"protocol_id":353},"cyan_stained_glass_pane":{"protocol_id":354},"purple_stained_glass_pane":{"protocol_id":355},"blue_stained_glass_pane":{"protocol_id":356},"brown_stained_glass_pane":{"protocol_id":357},"green_stained_glass_pane":{"protocol_id":358},"red_stained_glass_pane":{"protocol_id":359},"black_stained_glass_pane":{"protocol_id":360},"prismarine":{"protocol_id":361},"prismarine_bricks":{"protocol_id":362},"dark_prismarine":{"protocol_id":363},"prismarine_stairs":{"protocol_id":364},"prismarine_brick_stairs":{"protocol_id":365},"dark_prismarine_stairs":{"protocol_id":366},"sea_lantern":{"protocol_id":367},"red_sandstone":{"protocol_id":368},"chiseled_red_sandstone":{"protocol_id":369},"cut_red_sandstone":{"protocol_id":370},"red_sandstone_stairs":{"protocol_id":371},"repeating_command_block":{"protocol_id":372},"chain_command_block":{"protocol_id":373},"magma_block":{"protocol_id":374},"nether_wart_block":{"protocol_id":375},"red_nether_bricks":{"protocol_id":376},"bone_block":{"protocol_id":377},"structure_void":{"protocol_id":378},"observer":{"protocol_id":379},"shulker_box":{"protocol_id":380},"white_shulker_box":{"protocol_id":381},"orange_shulker_box":{"protocol_id":382},"magenta_shulker_box":{"protocol_id":383},"light_blue_shulker_box":{"protocol_id":384},"yellow_shulker_box":{"protocol_id":385},"lime_shulker_box":{"protocol_id":386},"pink_shulker_box":{"protocol_id":387},"gray_shulker_box":{"protocol_id":388},"light_gray_shulker_box":{"protocol_id":389},"cyan_shulker_box":{"protocol_id":390},"purple_shulker_box":{"protocol_id":391},"blue_shulker_box":{"protocol_id":392},"brown_shulker_box":{"protocol_id":393},"green_shulker_box":{"protocol_id":394},"red_shulker_box":{"protocol_id":395},"black_shulker_box":{"protocol_id":396},"white_glazed_terracotta":{"protocol_id":397},"orange_glazed_terracotta":{"protocol_id":398},"magenta_glazed_terracotta":{"protocol_id":399},"light_blue_glazed_terracotta":{"protocol_id":400},"yellow_glazed_terracotta":{"protocol_id":401},"lime_glazed_terracotta":{"protocol_id":402},"pink_glazed_terracotta":{"protocol_id":403},"gray_glazed_terracotta":{"protocol_id":404},"light_gray_glazed_terracotta":{"protocol_id":405},"cyan_glazed_terracotta":{"protocol_id":406},"purple_glazed_terracotta":{"protocol_id":407},"blue_glazed_terracotta":{"protocol_id":408},"brown_glazed_terracotta":{"protocol_id":409},"green_glazed_terracotta":{"protocol_id":410},"red_glazed_terracotta":{"protocol_id":411},"black_glazed_terracotta":{"protocol_id":412},"white_concrete":{"protocol_id":413},"orange_concrete":{"protocol_id":414},"magenta_concrete":{"protocol_id":415},"light_blue_concrete":{"protocol_id":416},"yellow_concrete":{"protocol_id":417},"lime_concrete":{"protocol_id":418},"pink_concrete":{"protocol_id":419},"gray_concrete":{"protocol_id":420},"light_gray_concrete":{"protocol_id":421},"cyan_concrete":{"protocol_id":422},"purple_concrete":{"protocol_id":423},"blue_concrete":{"protocol_id":424},"brown_concrete":{"protocol_id":425},"green_concrete":{"protocol_id":426},"red_concrete":{"protocol_id":427},"black_concrete":{"protocol_id":428},"white_concrete_powder":{"protocol_id":429},"orange_concrete_powder":{"protocol_id":430},"magenta_concrete_powder":{"protocol_id":431},"light_blue_concrete_powder":{"protocol_id":432},"yellow_concrete_powder":{"protocol_id":433},"lime_concrete_powder":{"protocol_id":434},"pink_concrete_powder":{"protocol_id":435},"gray_concrete_powder":{"protocol_id":436},"light_gray_concrete_powder":{"protocol_id":437},"cyan_concrete_powder":{"protocol_id":438},"purple_concrete_powder":{"protocol_id":439},"blue_concrete_powder":{"protocol_id":440},"brown_concrete_powder":{"protocol_id":441},"green_concrete_powder":{"protocol_id":442},"red_concrete_powder":{"protocol_id":443},"black_concrete_powder":{"protocol_id":444},"turtle_egg":{"protocol_id":445},"dead_tube_coral_block":{"protocol_id":446},"dead_brain_coral_block":{"protocol_id":447},"dead_bubble_coral_block":{"protocol_id":448},"dead_fire_coral_block":{"protocol_id":449},"dead_horn_coral_block":{"protocol_id":450},"tube_coral_block":{"protocol_id":451},"brain_coral_block":{"protocol_id":452},"bubble_coral_block":{"protocol_id":453},"fire_coral_block":{"protocol_id":454},"horn_coral_block":{"protocol_id":455},"tube_coral":{"protocol_id":456},"brain_coral":{"protocol_id":457},"bubble_coral":{"protocol_id":458},"fire_coral":{"protocol_id":459},"horn_coral":{"protocol_id":460},"dead_brain_coral":{"protocol_id":461},"dead_bubble_coral":{"protocol_id":462},"dead_fire_coral":{"protocol_id":463},"dead_horn_coral":{"protocol_id":464},"dead_tube_coral":{"protocol_id":465},"tube_coral_fan":{"protocol_id":466},"brain_coral_fan":{"protocol_id":467},"bubble_coral_fan":{"protocol_id":468},"fire_coral_fan":{"protocol_id":469},"horn_coral_fan":{"protocol_id":470},"dead_tube_coral_fan":{"protocol_id":471},"dead_brain_coral_fan":{"protocol_id":472},"dead_bubble_coral_fan":{"protocol_id":473},"dead_fire_coral_fan":{"protocol_id":474},"dead_horn_coral_fan":{"protocol_id":475},"blue_ice":{"protocol_id":476},"conduit":{"protocol_id":477},"polished_granite_stairs":{"protocol_id":478},"smooth_red_sandstone_stairs":{"protocol_id":479},"mossy_stone_brick_stairs":{"protocol_id":480},"polished_diorite_stairs":{"protocol_id":481},"mossy_cobblestone_stairs":{"protocol_id":482},"end_stone_brick_stairs":{"protocol_id":483},"stone_stairs":{"protocol_id":484},"smooth_sandstone_stairs":{"protocol_id":485},"smooth_quartz_stairs":{"protocol_id":486},"granite_stairs":{"protocol_id":487},"andesite_stairs":{"protocol_id":488},"red_nether_brick_stairs":{"protocol_id":489},"polished_andesite_stairs":{"protocol_id":490},"diorite_stairs":{"protocol_id":491},"polished_granite_slab":{"protocol_id":492},"smooth_red_sandstone_slab":{"protocol_id":493},"mossy_stone_brick_slab":{"protocol_id":494},"polished_diorite_slab":{"protocol_id":495},"mossy_cobblestone_slab":{"protocol_id":496},"end_stone_brick_slab":{"protocol_id":497},"smooth_sandstone_slab":{"protocol_id":498},"smooth_quartz_slab":{"protocol_id":499},"granite_slab":{"protocol_id":500},"andesite_slab":{"protocol_id":501},"red_nether_brick_slab":{"protocol_id":502},"polished_andesite_slab":{"protocol_id":503},"diorite_slab":{"protocol_id":504},"scaffolding":{"protocol_id":505},"iron_door":{"protocol_id":506},"oak_door":{"protocol_id":507},"spruce_door":{"protocol_id":508},"birch_door":{"protocol_id":509},"jungle_door":{"protocol_id":510},"acacia_door":{"protocol_id":511},"dark_oak_door":{"protocol_id":512},"repeater":{"protocol_id":513},"comparator":{"protocol_id":514},"structure_block":{"protocol_id":515},"jigsaw":{"protocol_id":516},"composter":{"protocol_id":517},"turtle_helmet":{"protocol_id":518},"scute":{"protocol_id":519},"iron_shovel":{"protocol_id":520},"iron_pickaxe":{"protocol_id":521},"iron_axe":{"protocol_id":522},"flint_and_steel":{"protocol_id":523},"apple":{"protocol_id":524},"bow":{"protocol_id":525},"arrow":{"protocol_id":526},"coal":{"protocol_id":527},"charcoal":{"protocol_id":528},"diamond":{"protocol_id":529},"iron_ingot":{"protocol_id":530},"gold_ingot":{"protocol_id":531},"iron_sword":{"protocol_id":532},"wooden_sword":{"protocol_id":533},"wooden_shovel":{"protocol_id":534},"wooden_pickaxe":{"protocol_id":535},"wooden_axe":{"protocol_id":536},"stone_sword":{"protocol_id":537},"stone_shovel":{"protocol_id":538},"stone_pickaxe":{"protocol_id":539},"stone_axe":{"protocol_id":540},"diamond_sword":{"protocol_id":541},"diamond_shovel":{"protocol_id":542},"diamond_pickaxe":{"protocol_id":543},"diamond_axe":{"protocol_id":544},"stick":{"protocol_id":545},"bowl":{"protocol_id":546},"mushroom_stew":{"protocol_id":547},"golden_sword":{"protocol_id":548},"golden_shovel":{"protocol_id":549},"golden_pickaxe":{"protocol_id":550},"golden_axe":{"protocol_id":551},"string":{"protocol_id":552},"feather":{"protocol_id":553},"gunpowder":{"protocol_id":554},"wooden_hoe":{"protocol_id":555},"stone_hoe":{"protocol_id":556},"iron_hoe":{"protocol_id":557},"diamond_hoe":{"protocol_id":558},"golden_hoe":{"protocol_id":559},"wheat_seeds":{"protocol_id":560},"wheat":{"protocol_id":561},"bread":{"protocol_id":562},"leather_helmet":{"protocol_id":563},"leather_chestplate":{"protocol_id":564},"leather_leggings":{"protocol_id":565},"leather_boots":{"protocol_id":566},"chainmail_helmet":{"protocol_id":567},"chainmail_chestplate":{"protocol_id":568},"chainmail_leggings":{"protocol_id":569},"chainmail_boots":{"protocol_id":570},"iron_helmet":{"protocol_id":571},"iron_chestplate":{"protocol_id":572},"iron_leggings":{"protocol_id":573},"iron_boots":{"protocol_id":574},"diamond_helmet":{"protocol_id":575},"diamond_chestplate":{"protocol_id":576},"diamond_leggings":{"protocol_id":577},"diamond_boots":{"protocol_id":578},"golden_helmet":{"protocol_id":579},"golden_chestplate":{"protocol_id":580},"golden_leggings":{"protocol_id":581},"golden_boots":{"protocol_id":582},"flint":{"protocol_id":583},"porkchop":{"protocol_id":584},"cooked_porkchop":{"protocol_id":585},"painting":{"protocol_id":586},"golden_apple":{"protocol_id":587},"enchanted_golden_apple":{"protocol_id":588},"oak_sign":{"protocol_id":589},"spruce_sign":{"protocol_id":590},"birch_sign":{"protocol_id":591},"jungle_sign":{"protocol_id":592},"acacia_sign":{"protocol_id":593},"dark_oak_sign":{"protocol_id":594},"bucket":{"protocol_id":595},"water_bucket":{"protocol_id":596},"lava_bucket":{"protocol_id":597},"minecart":{"protocol_id":598},"saddle":{"protocol_id":599},"redstone":{"protocol_id":600},"snowball":{"protocol_id":601},"oak_boat":{"protocol_id":602},"leather":{"protocol_id":603},"milk_bucket":{"protocol_id":604},"pufferfish_bucket":{"protocol_id":605},"salmon_bucket":{"protocol_id":606},"cod_bucket":{"protocol_id":607},"tropical_fish_bucket":{"protocol_id":608},"brick":{"protocol_id":609},"clay_ball":{"protocol_id":610},"sugar_cane":{"protocol_id":611},"kelp":{"protocol_id":612},"dried_kelp_block":{"protocol_id":613},"bamboo":{"protocol_id":614},"paper":{"protocol_id":615},"book":{"protocol_id":616},"slime_ball":{"protocol_id":617},"chest_minecart":{"protocol_id":618},"furnace_minecart":{"protocol_id":619},"egg":{"protocol_id":620},"compass":{"protocol_id":621},"fishing_rod":{"protocol_id":622},"clock":{"protocol_id":623},"glowstone_dust":{"protocol_id":624},"cod":{"protocol_id":625},"salmon":{"protocol_id":626},"tropical_fish":{"protocol_id":627},"pufferfish":{"protocol_id":628},"cooked_cod":{"protocol_id":629},"cooked_salmon":{"protocol_id":630},"ink_sac":{"protocol_id":631},"red_dye":{"protocol_id":632},"green_dye":{"protocol_id":633},"cocoa_beans":{"protocol_id":634},"lapis_lazuli":{"protocol_id":635},"purple_dye":{"protocol_id":636},"cyan_dye":{"protocol_id":637},"light_gray_dye":{"protocol_id":638},"gray_dye":{"protocol_id":639},"pink_dye":{"protocol_id":640},"lime_dye":{"protocol_id":641},"yellow_dye":{"protocol_id":642},"light_blue_dye":{"protocol_id":643},"magenta_dye":{"protocol_id":644},"orange_dye":{"protocol_id":645},"bone_meal":{"protocol_id":646},"blue_dye":{"protocol_id":647},"brown_dye":{"protocol_id":648},"black_dye":{"protocol_id":649},"white_dye":{"protocol_id":650},"bone":{"protocol_id":651},"sugar":{"protocol_id":652},"cake":{"protocol_id":653},"white_bed":{"protocol_id":654},"orange_bed":{"protocol_id":655},"magenta_bed":{"protocol_id":656},"light_blue_bed":{"protocol_id":657},"yellow_bed":{"protocol_id":658},"lime_bed":{"protocol_id":659},"pink_bed":{"protocol_id":660},"gray_bed":{"protocol_id":661},"light_gray_bed":{"protocol_id":662},"cyan_bed":{"protocol_id":663},"purple_bed":{"protocol_id":664},"blue_bed":{"protocol_id":665},"brown_bed":{"protocol_id":666},"green_bed":{"protocol_id":667},"red_bed":{"protocol_id":668},"black_bed":{"protocol_id":669},"cookie":{"protocol_id":670},"filled_map":{"protocol_id":671},"shears":{"protocol_id":672},"melon_slice":{"protocol_id":673},"dried_kelp":{"protocol_id":674},"pumpkin_seeds":{"protocol_id":675},"melon_seeds":{"protocol_id":676},"beef":{"protocol_id":677},"cooked_beef":{"protocol_id":678},"chicken":{"protocol_id":679},"cooked_chicken":{"protocol_id":680},"rotten_flesh":{"protocol_id":681},"ender_pearl":{"protocol_id":682},"blaze_rod":{"protocol_id":683},"ghast_tear":{"protocol_id":684},"gold_nugget":{"protocol_id":685},"nether_wart":{"protocol_id":686},"potion":{"protocol_id":687},"glass_bottle":{"protocol_id":688},"spider_eye":{"protocol_id":689},"fermented_spider_eye":{"protocol_id":690},"blaze_powder":{"protocol_id":691},"magma_cream":{"protocol_id":692},"brewing_stand":{"protocol_id":693},"cauldron":{"protocol_id":694},"ender_eye":{"protocol_id":695},"glistering_melon_slice":{"protocol_id":696},"bat_spawn_egg":{"protocol_id":697},"bee_spawn_egg":{"protocol_id":698},"blaze_spawn_egg":{"protocol_id":699},"cat_spawn_egg":{"protocol_id":700},"cave_spider_spawn_egg":{"protocol_id":701},"chicken_spawn_egg":{"protocol_id":702},"cod_spawn_egg":{"protocol_id":703},"cow_spawn_egg":{"protocol_id":704},"creeper_spawn_egg":{"protocol_id":705},"dolphin_spawn_egg":{"protocol_id":706},"donkey_spawn_egg":{"protocol_id":707},"drowned_spawn_egg":{"protocol_id":708},"elder_guardian_spawn_egg":{"protocol_id":709},"enderman_spawn_egg":{"protocol_id":710},"endermite_spawn_egg":{"protocol_id":711},"evoker_spawn_egg":{"protocol_id":712},"fox_spawn_egg":{"protocol_id":713},"ghast_spawn_egg":{"protocol_id":714},"guardian_spawn_egg":{"protocol_id":715},"horse_spawn_egg":{"protocol_id":716},"husk_spawn_egg":{"protocol_id":717},"llama_spawn_egg":{"protocol_id":718},"magma_cube_spawn_egg":{"protocol_id":719},"mooshroom_spawn_egg":{"protocol_id":720},"mule_spawn_egg":{"protocol_id":721},"ocelot_spawn_egg":{"protocol_id":722},"panda_spawn_egg":{"protocol_id":723},"parrot_spawn_egg":{"protocol_id":724},"phantom_spawn_egg":{"protocol_id":725},"pig_spawn_egg":{"protocol_id":726},"pillager_spawn_egg":{"protocol_id":727},"polar_bear_spawn_egg":{"protocol_id":728},"pufferfish_spawn_egg":{"protocol_id":729},"rabbit_spawn_egg":{"protocol_id":730},"ravager_spawn_egg":{"protocol_id":731},"salmon_spawn_egg":{"protocol_id":732},"sheep_spawn_egg":{"protocol_id":733},"shulker_spawn_egg":{"protocol_id":734},"silverfish_spawn_egg":{"protocol_id":735},"skeleton_spawn_egg":{"protocol_id":736},"skeleton_horse_spawn_egg":{"protocol_id":737},"slime_spawn_egg":{"protocol_id":738},"spider_spawn_egg":{"protocol_id":739},"squid_spawn_egg":{"protocol_id":740},"stray_spawn_egg":{"protocol_id":741},"trader_llama_spawn_egg":{"protocol_id":742},"tropical_fish_spawn_egg":{"protocol_id":743},"turtle_spawn_egg":{"protocol_id":744},"vex_spawn_egg":{"protocol_id":745},"villager_spawn_egg":{"protocol_id":746},"vindicator_spawn_egg":{"protocol_id":747},"wandering_trader_spawn_egg":{"protocol_id":748},"witch_spawn_egg":{"protocol_id":749},"wither_skeleton_spawn_egg":{"protocol_id":750},"wolf_spawn_egg":{"protocol_id":751},"zombie_spawn_egg":{"protocol_id":752},"zombie_horse_spawn_egg":{"protocol_id":753},"zombie_pigman_spawn_egg":{"protocol_id":754},"zombie_villager_spawn_egg":{"protocol_id":755},"experience_bottle":{"protocol_id":756},"fire_charge":{"protocol_id":757},"writable_book":{"protocol_id":758},"written_book":{"protocol_id":759},"emerald":{"protocol_id":760},"item_frame":{"protocol_id":761},"flower_pot":{"protocol_id":762},"carrot":{"protocol_id":763},"potato":{"protocol_id":764},"baked_potato":{"protocol_id":765},"poisonous_potato":{"protocol_id":766},"map":{"protocol_id":767},"golden_carrot":{"protocol_id":768},"skeleton_skull":{"protocol_id":769},"wither_skeleton_skull":{"protocol_id":770},"player_head":{"protocol_id":771},"zombie_head":{"protocol_id":772},"creeper_head":{"protocol_id":773},"dragon_head":{"protocol_id":774},"carrot_on_a_stick":{"protocol_id":775},"nether_star":{"protocol_id":776},"pumpkin_pie":{"protocol_id":777},"firework_rocket":{"protocol_id":778},"firework_star":{"protocol_id":779},"enchanted_book":{"protocol_id":780},"nether_brick":{"protocol_id":781},"quartz":{"protocol_id":782},"tnt_minecart":{"protocol_id":783},"hopper_minecart":{"protocol_id":784},"prismarine_shard":{"protocol_id":785},"prismarine_crystals":{"protocol_id":786},"rabbit":{"protocol_id":787},"cooked_rabbit":{"protocol_id":788},"rabbit_stew":{"protocol_id":789},"rabbit_foot":{"protocol_id":790},"rabbit_hide":{"protocol_id":791},"armor_stand":{"protocol_id":792},"iron_horse_armor":{"protocol_id":793},"golden_horse_armor":{"protocol_id":794},"diamond_horse_armor":{"protocol_id":795},"leather_horse_armor":{"protocol_id":796},"lead":{"protocol_id":797},"name_tag":{"protocol_id":798},"command_block_minecart":{"protocol_id":799},"mutton":{"protocol_id":800},"cooked_mutton":{"protocol_id":801},"white_banner":{"protocol_id":802},"orange_banner":{"protocol_id":803},"magenta_banner":{"protocol_id":804},"light_blue_banner":{"protocol_id":805},"yellow_banner":{"protocol_id":806},"lime_banner":{"protocol_id":807},"pink_banner":{"protocol_id":808},"gray_banner":{"protocol_id":809},"light_gray_banner":{"protocol_id":810},"cyan_banner":{"protocol_id":811},"purple_banner":{"protocol_id":812},"blue_banner":{"protocol_id":813},"brown_banner":{"protocol_id":814},"green_banner":{"protocol_id":815},"red_banner":{"protocol_id":816},"black_banner":{"protocol_id":817},"end_crystal":{"protocol_id":818},"chorus_fruit":{"protocol_id":819},"popped_chorus_fruit":{"protocol_id":820},"beetroot":{"protocol_id":821},"beetroot_seeds":{"protocol_id":822},"beetroot_soup":{"protocol_id":823},"dragon_breath":{"protocol_id":824},"splash_potion":{"protocol_id":825},"spectral_arrow":{"protocol_id":826},"tipped_arrow":{"protocol_id":827},"lingering_potion":{"protocol_id":828},"shield":{"protocol_id":829},"elytra":{"protocol_id":830},"spruce_boat":{"protocol_id":831},"birch_boat":{"protocol_id":832},"jungle_boat":{"protocol_id":833},"acacia_boat":{"protocol_id":834},"dark_oak_boat":{"protocol_id":835},"totem_of_undying":{"protocol_id":836},"shulker_shell":{"protocol_id":837},"iron_nugget":{"protocol_id":838},"knowledge_book":{"protocol_id":839},"debug_stick":{"protocol_id":840},"music_disc_13":{"protocol_id":841},"music_disc_cat":{"protocol_id":842},"music_disc_blocks":{"protocol_id":843},"music_disc_chirp":{"protocol_id":844},"music_disc_far":{"protocol_id":845},"music_disc_mall":{"protocol_id":846},"music_disc_mellohi":{"protocol_id":847},"music_disc_stal":{"protocol_id":848},"music_disc_strad":{"protocol_id":849},"music_disc_ward":{"protocol_id":850},"music_disc_11":{"protocol_id":851},"music_disc_wait":{"protocol_id":852},"trident":{"protocol_id":853},"phantom_membrane":{"protocol_id":854},"nautilus_shell":{"protocol_id":855},"heart_of_the_sea":{"protocol_id":856},"crossbow":{"protocol_id":857},"suspicious_stew":{"protocol_id":858},"loom":{"protocol_id":859},"flower_banner_pattern":{"protocol_id":860},"creeper_banner_pattern":{"protocol_id":861},"skull_banner_pattern":{"protocol_id":862},"mojang_banner_pattern":{"protocol_id":863},"globe_banner_pattern":{"protocol_id":864},"barrel":{"protocol_id":865},"smoker":{"protocol_id":866},"blast_furnace":{"protocol_id":867},"cartography_table":{"protocol_id":868},"fletching_table":{"protocol_id":869},"grindstone":{"protocol_id":870},"lectern":{"protocol_id":871},"smithing_table":{"protocol_id":872},"stonecutter":{"protocol_id":873},"bell":{"protocol_id":874},"lantern":{"protocol_id":875},"sweet_berries":{"protocol_id":876},"campfire":{"protocol_id":877},"honeycomb":{"protocol_id":878},"bee_nest":{"protocol_id":879},"beehive":{"protocol_id":880},"honey_bottle":{"protocol_id":881},"honey_block":{"protocol_id":882},"honeycomb_block":{"protocol_id":883}}},"potion":{"default":"empty","protocol_id":7,"entries":{"empty":{"protocol_id":0},"water":{"protocol_id":1},"mundane":{"protocol_id":2},"thick":{"protocol_id":3},"awkward":{"protocol_id":4},"night_vision":{"protocol_id":5},"long_night_vision":{"protocol_id":6},"invisibility":{"protocol_id":7},"long_invisibility":{"protocol_id":8},"leaping":{"protocol_id":9},"long_leaping":{"protocol_id":10},"strong_leaping":{"protocol_id":11},"fire_resistance":{"protocol_id":12},"long_fire_resistance":{"protocol_id":13},"swiftness":{"protocol_id":14},"long_swiftness":{"protocol_id":15},"strong_swiftness":{"protocol_id":16},"slowness":{"protocol_id":17},"long_slowness":{"protocol_id":18},"strong_slowness":{"protocol_id":19},"turtle_master":{"protocol_id":20},"long_turtle_master":{"protocol_id":21},"strong_turtle_master":{"protocol_id":22},"water_breathing":{"protocol_id":23},"long_water_breathing":{"protocol_id":24},"healing":{"protocol_id":25},"strong_healing":{"protocol_id":26},"harming":{"protocol_id":27},"strong_harming":{"protocol_id":28},"poison":{"protocol_id":29},"long_poison":{"protocol_id":30},"strong_poison":{"protocol_id":31},"regeneration":{"protocol_id":32},"long_regeneration":{"protocol_id":33},"strong_regeneration":{"protocol_id":34},"strength":{"protocol_id":35},"long_strength":{"protocol_id":36},"strong_strength":{"protocol_id":37},"weakness":{"protocol_id":38},"long_weakness":{"protocol_id":39},"luck":{"protocol_id":40},"slow_falling":{"protocol_id":41},"long_slow_falling":{"protocol_id":42}}},"carver":{"protocol_id":8,"entries":{"cave":{"protocol_id":0},"hell_cave":{"protocol_id":1},"canyon":{"protocol_id":2},"underwater_canyon":{"protocol_id":3},"underwater_cave":{"protocol_id":4}}},"surface_builder":{"protocol_id":9,"entries":{"default":{"protocol_id":0},"mountain":{"protocol_id":1},"shattered_savanna":{"protocol_id":2},"gravelly_mountain":{"protocol_id":3},"giant_tree_taiga":{"protocol_id":4},"swamp":{"protocol_id":5},"badlands":{"protocol_id":6},"wooded_badlands":{"protocol_id":7},"eroded_badlands":{"protocol_id":8},"frozen_ocean":{"protocol_id":9},"nether":{"protocol_id":10},"nope":{"protocol_id":11}}},"feature":{"protocol_id":10,"entries":{"pillager_outpost":{"protocol_id":0},"mineshaft":{"protocol_id":1},"woodland_mansion":{"protocol_id":2},"jungle_temple":{"protocol_id":3},"desert_pyramid":{"protocol_id":4},"igloo":{"protocol_id":5},"shipwreck":{"protocol_id":6},"swamp_hut":{"protocol_id":7},"stronghold":{"protocol_id":8},"ocean_monument":{"protocol_id":9},"ocean_ruin":{"protocol_id":10},"nether_bridge":{"protocol_id":11},"end_city":{"protocol_id":12},"buried_treasure":{"protocol_id":13},"village":{"protocol_id":14},"no_op":{"protocol_id":15},"normal_tree":{"protocol_id":16},"acacia_tree":{"protocol_id":17},"fancy_tree":{"protocol_id":18},"jungle_ground_bush":{"protocol_id":19},"dark_oak_tree":{"protocol_id":20},"mega_jungle_tree":{"protocol_id":21},"mega_spruce_tree":{"protocol_id":22},"flower":{"protocol_id":23},"random_patch":{"protocol_id":24},"block_pile":{"protocol_id":25},"spring_feature":{"protocol_id":26},"chorus_plant":{"protocol_id":27},"emerald_ore":{"protocol_id":28},"void_start_platform":{"protocol_id":29},"desert_well":{"protocol_id":30},"fossil":{"protocol_id":31},"huge_red_mushroom":{"protocol_id":32},"huge_brown_mushroom":{"protocol_id":33},"ice_spike":{"protocol_id":34},"glowstone_blob":{"protocol_id":35},"freeze_top_layer":{"protocol_id":36},"vines":{"protocol_id":37},"monster_room":{"protocol_id":38},"blue_ice":{"protocol_id":39},"iceberg":{"protocol_id":40},"forest_rock":{"protocol_id":41},"disk":{"protocol_id":42},"ice_patch":{"protocol_id":43},"lake":{"protocol_id":44},"ore":{"protocol_id":45},"end_spike":{"protocol_id":46},"end_island":{"protocol_id":47},"end_gateway":{"protocol_id":48},"seagrass":{"protocol_id":49},"kelp":{"protocol_id":50},"coral_tree":{"protocol_id":51},"coral_mushroom":{"protocol_id":52},"coral_claw":{"protocol_id":53},"sea_pickle":{"protocol_id":54},"simple_block":{"protocol_id":55},"bamboo":{"protocol_id":56},"fill_layer":{"protocol_id":57},"bonus_chest":{"protocol_id":58},"random_random_selector":{"protocol_id":59},"random_selector":{"protocol_id":60},"simple_random_selector":{"protocol_id":61},"random_boolean_selector":{"protocol_id":62},"decorated":{"protocol_id":63},"decorated_flower":{"protocol_id":64}}},"decorator":{"protocol_id":11,"entries":{"nope":{"protocol_id":0},"count_heightmap":{"protocol_id":1},"count_top_solid":{"protocol_id":2},"count_heightmap_32":{"protocol_id":3},"count_heightmap_double":{"protocol_id":4},"count_height_64":{"protocol_id":5},"noise_heightmap_32":{"protocol_id":6},"noise_heightmap_double":{"protocol_id":7},"chance_heightmap":{"protocol_id":8},"chance_heightmap_double":{"protocol_id":9},"chance_passthrough":{"protocol_id":10},"chance_top_solid_heightmap":{"protocol_id":11},"count_extra_heightmap":{"protocol_id":12},"count_range":{"protocol_id":13},"count_biased_range":{"protocol_id":14},"count_very_biased_range":{"protocol_id":15},"random_count_range":{"protocol_id":16},"chance_range":{"protocol_id":17},"count_chance_heightmap":{"protocol_id":18},"count_chance_heightmap_double":{"protocol_id":19},"count_depth_average":{"protocol_id":20},"top_solid_heightmap":{"protocol_id":21},"top_solid_heightmap_range":{"protocol_id":22},"top_solid_heightmap_noise_biased":{"protocol_id":23},"carving_mask":{"protocol_id":24},"forest_rock":{"protocol_id":25},"hell_fire":{"protocol_id":26},"magma":{"protocol_id":27},"emerald_ore":{"protocol_id":28},"lava_lake":{"protocol_id":29},"water_lake":{"protocol_id":30},"dungeons":{"protocol_id":31},"dark_oak_tree":{"protocol_id":32},"iceberg":{"protocol_id":33},"light_gem_chance":{"protocol_id":34},"end_island":{"protocol_id":35},"chorus_plant":{"protocol_id":36},"end_gateway":{"protocol_id":37}}},"biome":{"protocol_id":12,"entries":{"ocean":{"protocol_id":0},"plains":{"protocol_id":1},"desert":{"protocol_id":2},"mountains":{"protocol_id":3},"forest":{"protocol_id":4},"taiga":{"protocol_id":5},"swamp":{"protocol_id":6},"river":{"protocol_id":7},"nether":{"protocol_id":8},"the_end":{"protocol_id":9},"frozen_ocean":{"protocol_id":10},"frozen_river":{"protocol_id":11},"snowy_tundra":{"protocol_id":12},"snowy_mountains":{"protocol_id":13},"mushroom_fields":{"protocol_id":14},"mushroom_field_shore":{"protocol_id":15},"beach":{"protocol_id":16},"desert_hills":{"protocol_id":17},"wooded_hills":{"protocol_id":18},"taiga_hills":{"protocol_id":19},"mountain_edge":{"protocol_id":20},"jungle":{"protocol_id":21},"jungle_hills":{"protocol_id":22},"jungle_edge":{"protocol_id":23},"deep_ocean":{"protocol_id":24},"stone_shore":{"protocol_id":25},"snowy_beach":{"protocol_id":26},"birch_forest":{"protocol_id":27},"birch_forest_hills":{"protocol_id":28},"dark_forest":{"protocol_id":29},"snowy_taiga":{"protocol_id":30},"snowy_taiga_hills":{"protocol_id":31},"giant_tree_taiga":{"protocol_id":32},"giant_tree_taiga_hills":{"protocol_id":33},"wooded_mountains":{"protocol_id":34},"savanna":{"protocol_id":35},"savanna_plateau":{"protocol_id":36},"badlands":{"protocol_id":37},"wooded_badlands_plateau":{"protocol_id":38},"badlands_plateau":{"protocol_id":39},"small_end_islands":{"protocol_id":40},"end_midlands":{"protocol_id":41},"end_highlands":{"protocol_id":42},"end_barrens":{"protocol_id":43},"warm_ocean":{"protocol_id":44},"lukewarm_ocean":{"protocol_id":45},"cold_ocean":{"protocol_id":46},"deep_warm_ocean":{"protocol_id":47},"deep_lukewarm_ocean":{"protocol_id":48},"deep_cold_ocean":{"protocol_id":49},"deep_frozen_ocean":{"protocol_id":50},"the_void":{"protocol_id":127},"sunflower_plains":{"protocol_id":129},"desert_lakes":{"protocol_id":130},"gravelly_mountains":{"protocol_id":131},"flower_forest":{"protocol_id":132},"taiga_mountains":{"protocol_id":133},"swamp_hills":{"protocol_id":134},"ice_spikes":{"protocol_id":140},"modified_jungle":{"protocol_id":149},"modified_jungle_edge":{"protocol_id":151},"tall_birch_forest":{"protocol_id":155},"tall_birch_hills":{"protocol_id":156},"dark_forest_hills":{"protocol_id":157},"snowy_taiga_mountains":{"protocol_id":158},"giant_spruce_taiga":{"protocol_id":160},"giant_spruce_taiga_hills":{"protocol_id":161},"modified_gravelly_mountains":{"protocol_id":162},"shattered_savanna":{"protocol_id":163},"shattered_savanna_plateau":{"protocol_id":164},"eroded_badlands":{"protocol_id":165},"modified_wooded_badlands_plateau":{"protocol_id":166},"modified_badlands_plateau":{"protocol_id":167},"bamboo_jungle":{"protocol_id":168},"bamboo_jungle_hills":{"protocol_id":169}}},"block_state_provider_type":{"protocol_id":13,"entries":{"simple_state_provider":{"protocol_id":0},"weighted_state_provider":{"protocol_id":1},"plain_flower_provider":{"protocol_id":2},"forest_flower_provider":{"protocol_id":3}}},"block_placer_type":{"protocol_id":14,"entries":{"simple_block_placer":{"protocol_id":0},"double_plant_placer":{"protocol_id":1},"column_placer":{"protocol_id":2}}},"foliage_placer_type":{"protocol_id":15,"entries":{"blob_foliage_placer":{"protocol_id":0},"spruce_foliage_placer":{"protocol_id":1},"pine_foliage_placer":{"protocol_id":2},"acacia_foliage_placer":{"protocol_id":3}}},"tree_decorator_type":{"protocol_id":16,"entries":{"trunk_vine":{"protocol_id":0},"leave_vine":{"protocol_id":1},"cocoa":{"protocol_id":2},"beehive":{"protocol_id":3},"alter_ground":{"protocol_id":4}}},"particle_type":{"protocol_id":17,"entries":{"ambient_entity_effect":{"protocol_id":0},"angry_villager":{"protocol_id":1},"barrier":{"protocol_id":2},"block":{"protocol_id":3},"bubble":{"protocol_id":4},"cloud":{"protocol_id":5},"crit":{"protocol_id":6},"damage_indicator":{"protocol_id":7},"dragon_breath":{"protocol_id":8},"dripping_lava":{"protocol_id":9},"falling_lava":{"protocol_id":10},"landing_lava":{"protocol_id":11},"dripping_water":{"protocol_id":12},"falling_water":{"protocol_id":13},"dust":{"protocol_id":14},"effect":{"protocol_id":15},"elder_guardian":{"protocol_id":16},"enchanted_hit":{"protocol_id":17},"enchant":{"protocol_id":18},"end_rod":{"protocol_id":19},"entity_effect":{"protocol_id":20},"explosion_emitter":{"protocol_id":21},"explosion":{"protocol_id":22},"falling_dust":{"protocol_id":23},"firework":{"protocol_id":24},"fishing":{"protocol_id":25},"flame":{"protocol_id":26},"flash":{"protocol_id":27},"happy_villager":{"protocol_id":28},"composter":{"protocol_id":29},"heart":{"protocol_id":30},"instant_effect":{"protocol_id":31},"item":{"protocol_id":32},"item_slime":{"protocol_id":33},"item_snowball":{"protocol_id":34},"large_smoke":{"protocol_id":35},"lava":{"protocol_id":36},"mycelium":{"protocol_id":37},"note":{"protocol_id":38},"poof":{"protocol_id":39},"portal":{"protocol_id":40},"rain":{"protocol_id":41},"smoke":{"protocol_id":42},"sneeze":{"protocol_id":43},"spit":{"protocol_id":44},"squid_ink":{"protocol_id":45},"sweep_attack":{"protocol_id":46},"totem_of_undying":{"protocol_id":47},"underwater":{"protocol_id":48},"splash":{"protocol_id":49},"witch":{"protocol_id":50},"bubble_pop":{"protocol_id":51},"current_down":{"protocol_id":52},"bubble_column_up":{"protocol_id":53},"nautilus":{"protocol_id":54},"dolphin":{"protocol_id":55},"campfire_cosy_smoke":{"protocol_id":56},"campfire_signal_smoke":{"protocol_id":57},"dripping_honey":{"protocol_id":58},"falling_honey":{"protocol_id":59},"landing_honey":{"protocol_id":60},"falling_nectar":{"protocol_id":61}}},"biome_source_type":{"protocol_id":18,"entries":{"checkerboard":{"protocol_id":0},"fixed":{"protocol_id":1},"vanilla_layered":{"protocol_id":2},"the_end":{"protocol_id":3}}},"block_entity_type":{"protocol_id":19,"entries":{"furnace":{"protocol_id":0},"chest":{"protocol_id":1},"trapped_chest":{"protocol_id":2},"ender_chest":{"protocol_id":3},"jukebox":{"protocol_id":4},"dispenser":{"protocol_id":5},"dropper":{"protocol_id":6},"sign":{"protocol_id":7},"mob_spawner":{"protocol_id":8},"piston":{"protocol_id":9},"brewing_stand":{"protocol_id":10},"enchanting_table":{"protocol_id":11},"end_portal":{"protocol_id":12},"beacon":{"protocol_id":13},"skull":{"protocol_id":14},"daylight_detector":{"protocol_id":15},"hopper":{"protocol_id":16},"comparator":{"protocol_id":17},"banner":{"protocol_id":18},"structure_block":{"protocol_id":19},"end_gateway":{"protocol_id":20},"command_block":{"protocol_id":21},"shulker_box":{"protocol_id":22},"bed":{"protocol_id":23},"conduit":{"protocol_id":24},"barrel":{"protocol_id":25},"smoker":{"protocol_id":26},"blast_furnace":{"protocol_id":27},"lectern":{"protocol_id":28},"bell":{"protocol_id":29},"jigsaw":{"protocol_id":30},"campfire":{"protocol_id":31},"beehive":{"protocol_id":32}}},"chunk_generator_type":{"protocol_id":20,"entries":{"surface":{"protocol_id":0},"caves":{"protocol_id":1},"floating_islands":{"protocol_id":2},"debug":{"protocol_id":3},"flat":{"protocol_id":4}}},"dimension_type":{"protocol_id":21,"entries":{"overworld":{"protocol_id":1},"the_nether":{"protocol_id":0},"the_end":{"protocol_id":2}}},"motive":{"default":"kebab","protocol_id":22,"entries":{"kebab":{"protocol_id":0},"aztec":{"protocol_id":1},"alban":{"protocol_id":2},"aztec2":{"protocol_id":3},"bomb":{"protocol_id":4},"plant":{"protocol_id":5},"wasteland":{"protocol_id":6},"pool":{"protocol_id":7},"courbet":{"protocol_id":8},"sea":{"protocol_id":9},"sunset":{"protocol_id":10},"creebet":{"protocol_id":11},"wanderer":{"protocol_id":12},"graham":{"protocol_id":13},"match":{"protocol_id":14},"bust":{"protocol_id":15},"stage":{"protocol_id":16},"void":{"protocol_id":17},"skull_and_roses":{"protocol_id":18},"wither":{"protocol_id":19},"fighters":{"protocol_id":20},"pointer":{"protocol_id":21},"pigscene":{"protocol_id":22},"burning_skull":{"protocol_id":23},"skeleton":{"protocol_id":24},"donkey_kong":{"protocol_id":25}}},"custom_stat":{"protocol_id":23,"entries":{"leave_game":{"protocol_id":0},"play_one_minute":{"protocol_id":1},"time_since_death":{"protocol_id":2},"time_since_rest":{"protocol_id":3},"sneak_time":{"protocol_id":4},"walk_one_cm":{"protocol_id":5},"crouch_one_cm":{"protocol_id":6},"sprint_one_cm":{"protocol_id":7},"walk_on_water_one_cm":{"protocol_id":8},"fall_one_cm":{"protocol_id":9},"climb_one_cm":{"protocol_id":10},"fly_one_cm":{"protocol_id":11},"walk_under_water_one_cm":{"protocol_id":12},"minecart_one_cm":{"protocol_id":13},"boat_one_cm":{"protocol_id":14},"pig_one_cm":{"protocol_id":15},"horse_one_cm":{"protocol_id":16},"aviate_one_cm":{"protocol_id":17},"swim_one_cm":{"protocol_id":18},"jump":{"protocol_id":19},"drop":{"protocol_id":20},"damage_dealt":{"protocol_id":21},"damage_dealt_absorbed":{"protocol_id":22},"damage_dealt_resisted":{"protocol_id":23},"damage_taken":{"protocol_id":24},"damage_blocked_by_shield":{"protocol_id":25},"damage_absorbed":{"protocol_id":26},"damage_resisted":{"protocol_id":27},"deaths":{"protocol_id":28},"mob_kills":{"protocol_id":29},"animals_bred":{"protocol_id":30},"player_kills":{"protocol_id":31},"fish_caught":{"protocol_id":32},"talked_to_villager":{"protocol_id":33},"traded_with_villager":{"protocol_id":34},"eat_cake_slice":{"protocol_id":35},"fill_cauldron":{"protocol_id":36},"use_cauldron":{"protocol_id":37},"clean_armor":{"protocol_id":38},"clean_banner":{"protocol_id":39},"clean_shulker_box":{"protocol_id":40},"interact_with_brewingstand":{"protocol_id":41},"interact_with_beacon":{"protocol_id":42},"inspect_dropper":{"protocol_id":43},"inspect_hopper":{"protocol_id":44},"inspect_dispenser":{"protocol_id":45},"play_noteblock":{"protocol_id":46},"tune_noteblock":{"protocol_id":47},"pot_flower":{"protocol_id":48},"trigger_trapped_chest":{"protocol_id":49},"open_enderchest":{"protocol_id":50},"enchant_item":{"protocol_id":51},"play_record":{"protocol_id":52},"interact_with_furnace":{"protocol_id":53},"interact_with_crafting_table":{"protocol_id":54},"open_chest":{"protocol_id":55},"sleep_in_bed":{"protocol_id":56},"open_shulker_box":{"protocol_id":57},"open_barrel":{"protocol_id":58},"interact_with_blast_furnace":{"protocol_id":59},"interact_with_smoker":{"protocol_id":60},"interact_with_lectern":{"protocol_id":61},"interact_with_campfire":{"protocol_id":62},"interact_with_cartography_table":{"protocol_id":63},"interact_with_loom":{"protocol_id":64},"interact_with_stonecutter":{"protocol_id":65},"bell_ring":{"protocol_id":66},"raid_trigger":{"protocol_id":67},"raid_win":{"protocol_id":68},"interact_with_anvil":{"protocol_id":69},"interact_with_grindstone":{"protocol_id":70}}},"chunk_status":{"default":"empty","protocol_id":24,"entries":{"empty":{"protocol_id":0},"structure_starts":{"protocol_id":1},"structure_references":{"protocol_id":2},"biomes":{"protocol_id":3},"noise":{"protocol_id":4},"surface":{"protocol_id":5},"carvers":{"protocol_id":6},"liquid_carvers":{"protocol_id":7},"features":{"protocol_id":8},"light":{"protocol_id":9},"spawn":{"protocol_id":10},"heightmaps":{"protocol_id":11},"full":{"protocol_id":12}}},"structure_feature":{"protocol_id":25,"entries":{"mineshaft":{"protocol_id":0},"pillager_outpost":{"protocol_id":1},"fortress":{"protocol_id":2},"stronghold":{"protocol_id":3},"jungle_pyramid":{"protocol_id":4},"ocean_ruin":{"protocol_id":5},"desert_pyramid":{"protocol_id":6},"igloo":{"protocol_id":7},"swamp_hut":{"protocol_id":8},"monument":{"protocol_id":9},"endcity":{"protocol_id":10},"mansion":{"protocol_id":11},"buried_treasure":{"protocol_id":12},"shipwreck":{"protocol_id":13},"village":{"protocol_id":14}}},"structure_piece":{"protocol_id":26,"entries":{"mscorridor":{"protocol_id":0},"mscrossing":{"protocol_id":1},"msroom":{"protocol_id":2},"msstairs":{"protocol_id":3},"pcp":{"protocol_id":4},"nvi":{"protocol_id":5},"nebcr":{"protocol_id":6},"nebef":{"protocol_id":7},"nebs":{"protocol_id":8},"neccs":{"protocol_id":9},"nectb":{"protocol_id":10},"nece":{"protocol_id":11},"nescsc":{"protocol_id":12},"nesclt":{"protocol_id":13},"nesc":{"protocol_id":14},"nescrt":{"protocol_id":15},"necsr":{"protocol_id":16},"nemt":{"protocol_id":17},"nerc":{"protocol_id":18},"nesr":{"protocol_id":19},"nestart":{"protocol_id":20},"shcc":{"protocol_id":21},"shfc":{"protocol_id":22},"sh5c":{"protocol_id":23},"shlt":{"protocol_id":24},"shli":{"protocol_id":25},"shpr":{"protocol_id":26},"shph":{"protocol_id":27},"shrt":{"protocol_id":28},"shrc":{"protocol_id":29},"shsd":{"protocol_id":30},"shstart":{"protocol_id":31},"shs":{"protocol_id":32},"shssd":{"protocol_id":33},"tejp":{"protocol_id":34},"orp":{"protocol_id":35},"iglu":{"protocol_id":36},"tesh":{"protocol_id":37},"tedp":{"protocol_id":38},"omb":{"protocol_id":39},"omcr":{"protocol_id":40},"omdxr":{"protocol_id":41},"omdxyr":{"protocol_id":42},"omdyr":{"protocol_id":43},"omdyzr":{"protocol_id":44},"omdzr":{"protocol_id":45},"omentry":{"protocol_id":46},"ompenthouse":{"protocol_id":47},"omsimple":{"protocol_id":48},"omsimplet":{"protocol_id":49},"omwr":{"protocol_id":50},"ecp":{"protocol_id":51},"wmp":{"protocol_id":52},"btp":{"protocol_id":53},"shipwreck":{"protocol_id":54}}},"rule_test":{"protocol_id":27,"entries":{"always_true":{"protocol_id":0},"block_match":{"protocol_id":1},"blockstate_match":{"protocol_id":2},"tag_match":{"protocol_id":3},"random_block_match":{"protocol_id":4},"random_blockstate_match":{"protocol_id":5}}},"structure_processor":{"protocol_id":28,"entries":{"block_ignore":{"protocol_id":0},"block_rot":{"protocol_id":1},"gravity":{"protocol_id":2},"jigsaw_replacement":{"protocol_id":3},"rule":{"protocol_id":4},"nop":{"protocol_id":5}}},"structure_pool_element":{"protocol_id":29,"entries":{"single_pool_element":{"protocol_id":0},"list_pool_element":{"protocol_id":1},"feature_pool_element":{"protocol_id":2},"empty_pool_element":{"protocol_id":3}}},"menu":{"protocol_id":30,"entries":{"generic_9x1":{"protocol_id":0},"generic_9x2":{"protocol_id":1},"generic_9x3":{"protocol_id":2},"generic_9x4":{"protocol_id":3},"generic_9x5":{"protocol_id":4},"generic_9x6":{"protocol_id":5},"generic_3x3":{"protocol_id":6},"anvil":{"protocol_id":7},"beacon":{"protocol_id":8},"blast_furnace":{"protocol_id":9},"brewing_stand":{"protocol_id":10},"crafting":{"protocol_id":11},"enchantment":{"protocol_id":12},"furnace":{"protocol_id":13},"grindstone":{"protocol_id":14},"hopper":{"protocol_id":15},"lectern":{"protocol_id":16},"loom":{"protocol_id":17},"merchant":{"protocol_id":18},"shulker_box":{"protocol_id":19},"smoker":{"protocol_id":20},"cartography_table":{"protocol_id":21},"stonecutter":{"protocol_id":22}}},"recipe_type":{"protocol_id":31,"entries":{"crafting":{"protocol_id":0},"smelting":{"protocol_id":1},"blasting":{"protocol_id":2},"smoking":{"protocol_id":3},"campfire_cooking":{"protocol_id":4},"stonecutting":{"protocol_id":5}}},"recipe_serializer":{"protocol_id":32,"entries":{"crafting_shaped":{"protocol_id":0},"crafting_shapeless":{"protocol_id":1},"crafting_special_armordye":{"protocol_id":2},"crafting_special_bookcloning":{"protocol_id":3},"crafting_special_mapcloning":{"protocol_id":4},"crafting_special_mapextending":{"protocol_id":5},"crafting_special_firework_rocket":{"protocol_id":6},"crafting_special_firework_star":{"protocol_id":7},"crafting_special_firework_star_fade":{"protocol_id":8},"crafting_special_tippedarrow":{"protocol_id":9},"crafting_special_bannerduplicate":{"protocol_id":10},"crafting_special_shielddecoration":{"protocol_id":11},"crafting_special_shulkerboxcoloring":{"protocol_id":12},"crafting_special_suspiciousstew":{"protocol_id":13},"crafting_special_repairitem":{"protocol_id":14},"smelting":{"protocol_id":15},"blasting":{"protocol_id":16},"smoking":{"protocol_id":17},"campfire_cooking":{"protocol_id":18},"stonecutting":{"protocol_id":19}}},"stat_type":{"protocol_id":33,"entries":{"mined":{"protocol_id":0},"crafted":{"protocol_id":1},"used":{"protocol_id":2},"broken":{"protocol_id":3},"picked_up":{"protocol_id":4},"dropped":{"protocol_id":5},"killed":{"protocol_id":6},"killed_by":{"protocol_id":7},"custom":{"protocol_id":8}}},"villager_type":{"default":"plains","protocol_id":34,"entries":{"desert":{"protocol_id":0},"jungle":{"protocol_id":1},"plains":{"protocol_id":2},"savanna":{"protocol_id":3},"snow":{"protocol_id":4},"swamp":{"protocol_id":5},"taiga":{"protocol_id":6}}},"villager_profession":{"default":"none","protocol_id":35,"entries":{"none":{"protocol_id":0},"armorer":{"protocol_id":1},"butcher":{"protocol_id":2},"cartographer":{"protocol_id":3},"cleric":{"protocol_id":4},"farmer":{"protocol_id":5},"fisherman":{"protocol_id":6},"fletcher":{"protocol_id":7},"leatherworker":{"protocol_id":8},"librarian":{"protocol_id":9},"mason":{"protocol_id":10},"nitwit":{"protocol_id":11},"shepherd":{"protocol_id":12},"toolsmith":{"protocol_id":13},"weaponsmith":{"protocol_id":14}}},"point_of_interest_type":{"default":"unemployed","protocol_id":36,"entries":{"unemployed":{"protocol_id":0},"armorer":{"protocol_id":1},"butcher":{"protocol_id":2},"cartographer":{"protocol_id":3},"cleric":{"protocol_id":4},"farmer":{"protocol_id":5},"fisherman":{"protocol_id":6},"fletcher":{"protocol_id":7},"leatherworker":{"protocol_id":8},"librarian":{"protocol_id":9},"mason":{"protocol_id":10},"nitwit":{"protocol_id":11},"shepherd":{"protocol_id":12},"toolsmith":{"protocol_id":13},"weaponsmith":{"protocol_id":14},"home":{"protocol_id":15},"meeting":{"protocol_id":16},"beehive":{"protocol_id":17},"bee_nest":{"protocol_id":18},"nether_portal":{"protocol_id":19}}},"memory_module_type":{"default":"dummy","protocol_id":37,"entries":{"dummy":{"protocol_id":0},"home":{"protocol_id":1},"job_site":{"protocol_id":2},"meeting_point":{"protocol_id":3},"secondary_job_site":{"protocol_id":4},"mobs":{"protocol_id":5},"visible_mobs":{"protocol_id":6},"visible_villager_babies":{"protocol_id":7},"nearest_players":{"protocol_id":8},"nearest_visible_player":{"protocol_id":9},"walk_target":{"protocol_id":10},"look_target":{"protocol_id":11},"interaction_target":{"protocol_id":12},"breed_target":{"protocol_id":13},"path":{"protocol_id":14},"interactable_doors":{"protocol_id":15},"opened_doors":{"protocol_id":16},"nearest_bed":{"protocol_id":17},"hurt_by":{"protocol_id":18},"hurt_by_entity":{"protocol_id":19},"nearest_hostile":{"protocol_id":20},"hiding_place":{"protocol_id":21},"heard_bell_time":{"protocol_id":22},"cant_reach_walk_target_since":{"protocol_id":23},"golem_last_seen_time":{"protocol_id":24},"last_slept":{"protocol_id":25},"last_woken":{"protocol_id":26},"last_worked_at_poi":{"protocol_id":27}}},"sensor_type":{"default":"dummy","protocol_id":38,"entries":{"dummy":{"protocol_id":0},"nearest_living_entities":{"protocol_id":1},"nearest_players":{"protocol_id":2},"interactable_doors":{"protocol_id":3},"nearest_bed":{"protocol_id":4},"hurt_by":{"protocol_id":5},"villager_hostiles":{"protocol_id":6},"villager_babies":{"protocol_id":7},"secondary_pois":{"protocol_id":8},"golem_last_seen":{"protocol_id":9}}},"schedule":{"protocol_id":39,"entries":{"empty":{"protocol_id":0},"simple":{"protocol_id":1},"villager_baby":{"protocol_id":2},"villager_default":{"protocol_id":3}}},"activity":{"protocol_id":40,"entries":{"core":{"protocol_id":0},"idle":{"protocol_id":1},"work":{"protocol_id":2},"play":{"protocol_id":3},"rest":{"protocol_id":4},"meet":{"protocol_id":5},"panic":{"protocol_id":6},"raid":{"protocol_id":7},"pre_raid":{"protocol_id":8},"hide":{"protocol_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}}},"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