From 43c2c38ec8b8b2a3669e569df5a9807ac00e4853 Mon Sep 17 00:00:00 2001 From: Lukas Date: Tue, 17 Nov 2020 21:31:29 +0100 Subject: [PATCH] wip blockModelCombiner --- .../de/bixilon/minosoft/data/Mappings.java | 3 +- .../minosoft/data/mappings/CustomMapping.java | 10 + .../mappings/versions/VersionMapping.java | 8 + .../data/mappings/versions/Versions.java | 1 + .../bixilon/minosoft/render/GameWindow.java | 2 - .../render/blockModels/BlockModelLoader.java | 22 +-- .../render/texture/TextureLoader.java | 4 +- .../resources/assets/mapping/blockModels.json | 1 - src/main/resources/assets/mapping/tints.json | 17 ++ util/blockModelCombinder.py | 176 +++++++++++++----- 10 files changed, 179 insertions(+), 65 deletions(-) delete mode 100644 src/main/resources/assets/mapping/blockModels.json create mode 100644 src/main/resources/assets/mapping/tints.json diff --git a/src/main/java/de/bixilon/minosoft/data/Mappings.java b/src/main/java/de/bixilon/minosoft/data/Mappings.java index bf4aa7506..fb1850057 100644 --- a/src/main/java/de/bixilon/minosoft/data/Mappings.java +++ b/src/main/java/de/bixilon/minosoft/data/Mappings.java @@ -15,5 +15,6 @@ package de.bixilon.minosoft.data; public enum Mappings { BLOCKS, - REGISTRIES + REGISTRIES, + BLOCK_MODELS } diff --git a/src/main/java/de/bixilon/minosoft/data/mappings/CustomMapping.java b/src/main/java/de/bixilon/minosoft/data/mappings/CustomMapping.java index 52ef65a5d..a6a42234b 100644 --- a/src/main/java/de/bixilon/minosoft/data/mappings/CustomMapping.java +++ b/src/main/java/de/bixilon/minosoft/data/mappings/CustomMapping.java @@ -18,6 +18,7 @@ import de.bixilon.minosoft.data.mappings.blocks.Block; import de.bixilon.minosoft.data.mappings.particle.Particle; import de.bixilon.minosoft.data.mappings.statistics.Statistic; import de.bixilon.minosoft.data.mappings.versions.Version; +import de.bixilon.minosoft.render.blockModels.BlockModelLoader; import java.util.HashMap; @@ -38,6 +39,7 @@ public class CustomMapping { final HashBiMap statisticIdMap = HashBiMap.create(); Version version; HashMap> dimensionIdentifierMap = new HashMap<>(); + BlockModelLoader blockModelLoader; public CustomMapping(Version version) { this.version = version; @@ -193,6 +195,13 @@ public class CustomMapping { return version.getMapping().getIdByEnchantment(enchantment); } + public BlockModelLoader getBlockModelLoader() { + if (blockModelLoader != null) { // TODO: check models + return blockModelLoader; + } + return version.getMapping().getBlockModelLoader(); + } + public void unload() { motiveIdentifierMap.clear(); particleIdentifierMap.clear(); @@ -208,6 +217,7 @@ public class CustomMapping { enchantmentMap.clear(); particleIdMap.clear(); statisticIdMap.clear(); + blockModelLoader.clear(); } public void setDimensions(HashMap> dimensions) { diff --git a/src/main/java/de/bixilon/minosoft/data/mappings/versions/VersionMapping.java b/src/main/java/de/bixilon/minosoft/data/mappings/versions/VersionMapping.java index 6a26a7191..c4f6705c4 100644 --- a/src/main/java/de/bixilon/minosoft/data/mappings/versions/VersionMapping.java +++ b/src/main/java/de/bixilon/minosoft/data/mappings/versions/VersionMapping.java @@ -22,6 +22,7 @@ import de.bixilon.minosoft.data.mappings.blocks.Blocks; import de.bixilon.minosoft.data.mappings.particle.Particle; import de.bixilon.minosoft.data.mappings.statistics.Statistic; import de.bixilon.minosoft.protocol.protocol.ProtocolDefinition; +import de.bixilon.minosoft.render.blockModels.BlockModelLoader; import java.util.HashSet; @@ -41,6 +42,7 @@ public class VersionMapping { HashBiMap enchantmentMap; HashBiMap particleIdMap; HashBiMap statisticIdMap; + BlockModelLoader blockModelLoader; public VersionMapping(Version version) { this.version = version; @@ -110,6 +112,10 @@ public class VersionMapping { return enchantmentMap.inverse().get(enchantment); } + public BlockModelLoader getBlockModelLoader() { + return blockModelLoader; + } + public void load(Mappings type, JsonObject data) { switch (type) { case REGISTRIES -> { @@ -191,6 +197,7 @@ public class VersionMapping { } } case BLOCKS -> blockMap = Blocks.load("minecraft", data, version.getVersionId() < ProtocolDefinition.FLATTING_VERSION_ID); + case BLOCK_MODELS -> blockModelLoader = new BlockModelLoader(data); } loaded.add(type); } @@ -209,6 +216,7 @@ public class VersionMapping { enchantmentMap.clear(); particleIdMap.clear(); statisticIdMap.clear(); + blockModelLoader.clear(); } public boolean isFullyLoaded() { diff --git a/src/main/java/de/bixilon/minosoft/data/mappings/versions/Versions.java b/src/main/java/de/bixilon/minosoft/data/mappings/versions/Versions.java index f78a6e497..9be1cc6de 100644 --- a/src/main/java/de/bixilon/minosoft/data/mappings/versions/Versions.java +++ b/src/main/java/de/bixilon/minosoft/data/mappings/versions/Versions.java @@ -40,6 +40,7 @@ public class Versions { static { mappingsHashMap.put("registries", Mappings.REGISTRIES); mappingsHashMap.put("blocks", Mappings.BLOCKS); + mappingsHashMap.put("blockModels", Mappings.BLOCK_MODELS); } public static Version getVersionById(int versionId) { diff --git a/src/main/java/de/bixilon/minosoft/render/GameWindow.java b/src/main/java/de/bixilon/minosoft/render/GameWindow.java index bb0bbe1a4..1a4bb8e56 100644 --- a/src/main/java/de/bixilon/minosoft/render/GameWindow.java +++ b/src/main/java/de/bixilon/minosoft/render/GameWindow.java @@ -15,7 +15,6 @@ package de.bixilon.minosoft.render; import de.bixilon.minosoft.logging.Log; import de.bixilon.minosoft.protocol.network.Connection; -import de.bixilon.minosoft.render.blockModels.BlockModelLoader; import java.util.concurrent.CountDownLatch; import java.util.concurrent.LinkedBlockingQueue; @@ -35,7 +34,6 @@ public class GameWindow { new Thread(() -> { openGLWindow = new OpenGLWindow(); openGLWindow.init(); - BlockModelLoader.blockModelLoader = new BlockModelLoader(); Log.info("Finished loading block models"); latch.countDown(); mainLoop(); diff --git a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java index 3fe37a22c..f9eb529b9 100644 --- a/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java +++ b/src/main/java/de/bixilon/minosoft/render/blockModels/BlockModelLoader.java @@ -31,17 +31,16 @@ import java.util.HashSet; import java.util.Map; public class BlockModelLoader { - TextureLoader textureLoader; - public static BlockModelLoader blockModelLoader; - HashMap> modelMap; + private final TextureLoader textureLoader; + private final HashMap> modelMap; - public BlockModelLoader() { + public BlockModelLoader(JsonObject data) { modelMap = new HashMap<>(); HashSet mods = new HashSet<>(); - HashMap> tints = new HashMap<>(); + mods.add(data); + HashMap tints = null; try { - //TODO: modding - mods.add(Util.readJsonAsset("mapping/blockModels.json")); + tints = readTints(Util.readJsonAsset("mapping/tints.json")); } catch (IOException e) { e.printStackTrace(); } @@ -52,7 +51,6 @@ public class BlockModelLoader { modelMap.put(modName, new HashMap<>()); } blockModels.put(modName, loadModels(mod)); - tints.put(modName, readTints(mod)); } textureLoader = new TextureLoader(getTextures(blockModels), tints); applyTextures(blockModels); @@ -61,10 +59,6 @@ public class BlockModelLoader { } } - public static BlockModelLoader getInstance() { - return blockModelLoader; - } - private void loadBlocks(JsonObject mod, HashMap> blockModels) { for (Map.Entry blockEntry : mod.get("blockStates").getAsJsonObject().entrySet()) { JsonObject block = blockEntry.getValue().getAsJsonObject(); @@ -151,4 +145,8 @@ public class BlockModelLoader { public TextureLoader getTextureLoader() { return textureLoader; } + + public void clear() { + modelMap.clear(); + } } diff --git a/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java b/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java index 69039095f..a3034f76e 100644 --- a/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java +++ b/src/main/java/de/bixilon/minosoft/render/texture/TextureLoader.java @@ -40,11 +40,11 @@ public class TextureLoader { private float step; private int totalTextures = 0; - public TextureLoader(HashMap> textures, HashMap> tints) { + public TextureLoader(HashMap> textures, HashMap tints) { textureCoordinates = new HashMap<>(); images = new HashMap<>(); for (String mod : textures.keySet()) { - loadTextures(mod, textures.get(mod), tints.get(mod)); + loadTextures(mod, textures.get(mod), tints); } combineTextures(); try { diff --git a/src/main/resources/assets/mapping/blockModels.json b/src/main/resources/assets/mapping/blockModels.json deleted file mode 100644 index 5d3afe23d..000000000 --- a/src/main/resources/assets/mapping/blockModels.json +++ /dev/null @@ -1 +0,0 @@ -{"mod":"minecraft","blockStates":{"acacia_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"acacia_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"acacia_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"acacia_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"acacia_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"acacia_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"acacia_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"acacia_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"acacia_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"acacia_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"acacia_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"acacia_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"acacia_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"acacia_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"acacia_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"acacia_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"acacia_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"acacia_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"acacia_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"acacia_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"acacia_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"acacia_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"acacia_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"acacia_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"acacia_button_pressed","x":90,"y":270}]},"acacia_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"acacia_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"acacia_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"acacia_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"acacia_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"acacia_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"acacia_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"acacia_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"acacia_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"acacia_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"acacia_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"acacia_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"acacia_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"acacia_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"acacia_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"acacia_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"acacia_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"acacia_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"acacia_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"acacia_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"acacia_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"acacia_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"acacia_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"acacia_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"acacia_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"acacia_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"acacia_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"acacia_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"acacia_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"acacia_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"acacia_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"acacia_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"acacia_door_top","y":90}]},"acacia_fence":{"conditional":[{"model":"acacia_fence_post"},{"properties":{"north":"true"},"model":"acacia_fence_side"},{"properties":{"east":"true"},"model":"acacia_fence_side","y":90},{"properties":{"south":"true"},"model":"acacia_fence_side","y":180},{"properties":{"west":"true"},"model":"acacia_fence_side","y":270}]},"acacia_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"acacia_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"acacia_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"acacia_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"acacia_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"acacia_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"acacia_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"acacia_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"acacia_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"acacia_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"acacia_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"acacia_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"acacia_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"acacia_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"acacia_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"acacia_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"acacia_fence_gate_wall_open","y":90}]},"acacia_leaves":{"states":[{"properties":{},"model":"acacia_leaves"}]},"acacia_log":{"states":[{"properties":{"axis":"x"},"model":"acacia_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"acacia_log"},{"properties":{"axis":"z"},"model":"acacia_log_horizontal","x":90}]},"acacia_planks":{"states":[{"properties":{},"model":"acacia_planks"}]},"acacia_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"acacia_pressure_plate"},{"properties":{"powered":"true"},"model":"acacia_pressure_plate_down"}]},"acacia_sapling":{"states":[{"properties":{},"model":"acacia_sapling"}]},"acacia_sign":{"states":[{"properties":{},"model":"acacia_sign"}]},"acacia_slab":{"states":[{"properties":{"type":"bottom"},"model":"acacia_slab"},{"properties":{"type":"double"},"model":"acacia_planks"},{"properties":{"type":"top"},"model":"acacia_slab_top"}]},"acacia_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"acacia_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"acacia_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"acacia_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"acacia_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"acacia_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"acacia_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"acacia_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"acacia_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"acacia_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"acacia_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"acacia_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"acacia_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"acacia_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"acacia_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"acacia_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"acacia_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"acacia_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"acacia_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"acacia_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"acacia_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"acacia_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"acacia_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"acacia_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"acacia_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"acacia_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"acacia_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"acacia_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"acacia_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"acacia_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"acacia_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"acacia_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"acacia_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"acacia_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"acacia_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"acacia_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"acacia_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"acacia_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"acacia_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"acacia_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"acacia_stairs","x":180,"y":180}]},"acacia_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"acacia_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"acacia_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"acacia_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"acacia_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"acacia_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"acacia_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"acacia_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"acacia_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"acacia_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"acacia_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"acacia_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"acacia_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"acacia_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"acacia_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"acacia_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"acacia_trapdoor_open","x":180,"y":90}]},"acacia_wall_sign":{"states":[{"properties":{},"model":"acacia_sign"}]},"acacia_wood":{"states":[{"properties":{"axis":"x"},"model":"acacia_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"acacia_wood"},{"properties":{"axis":"z"},"model":"acacia_wood","x":90}]},"activator_rail":{"states":[{"properties":{"powered":"false","shape":"ascending_east"},"model":"activator_rail_raised_ne","y":90},{"properties":{"powered":"false","shape":"ascending_north"},"model":"activator_rail_raised_ne"},{"properties":{"powered":"false","shape":"ascending_south"},"model":"activator_rail_raised_sw"},{"properties":{"powered":"false","shape":"ascending_west"},"model":"activator_rail_raised_sw","y":90},{"properties":{"powered":"false","shape":"east_west"},"model":"activator_rail","y":90},{"properties":{"powered":"false","shape":"north_south"},"model":"activator_rail"},{"properties":{"powered":"true","shape":"ascending_east"},"model":"activator_rail_on_raised_ne","y":90},{"properties":{"powered":"true","shape":"ascending_north"},"model":"activator_rail_on_raised_ne"},{"properties":{"powered":"true","shape":"ascending_south"},"model":"activator_rail_on_raised_sw"},{"properties":{"powered":"true","shape":"ascending_west"},"model":"activator_rail_on_raised_sw","y":90},{"properties":{"powered":"true","shape":"east_west"},"model":"activator_rail_on","y":90},{"properties":{"powered":"true","shape":"north_south"},"model":"activator_rail_on"}]},"air":{"states":[{"properties":{},"model":"air"}]},"allium":{"states":[{"properties":{},"model":"allium"}]},"amethyst_block":{"states":[{"properties":{},"model":"amethyst_block"}]},"amethyst_cluster":{"states":[{"properties":{"facing":"down"},"model":"amethyst_cluster","x":180},{"properties":{"facing":"east"},"model":"amethyst_cluster","x":90,"y":90},{"properties":{"facing":"north"},"model":"amethyst_cluster","x":90},{"properties":{"facing":"south"},"model":"amethyst_cluster","x":90,"y":180},{"properties":{"facing":"up"},"model":"amethyst_cluster"},{"properties":{"facing":"west"},"model":"amethyst_cluster","x":90,"y":270}]},"ancient_debris":{"states":[{"properties":{},"model":"ancient_debris"}]},"andesite":{"states":[{"properties":{},"model":"andesite"}]},"andesite_slab":{"states":[{"properties":{"type":"bottom"},"model":"andesite_slab"},{"properties":{"type":"double"},"model":"andesite"},{"properties":{"type":"top"},"model":"andesite_slab_top"}]},"andesite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"andesite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"andesite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"andesite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"andesite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"andesite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"andesite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"andesite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"andesite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"andesite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"andesite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"andesite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"andesite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"andesite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"andesite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"andesite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"andesite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"andesite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"andesite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"andesite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"andesite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"andesite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"andesite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"andesite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"andesite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"andesite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"andesite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"andesite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"andesite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"andesite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"andesite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"andesite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"andesite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"andesite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"andesite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"andesite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"andesite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"andesite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"andesite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"andesite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"andesite_stairs","x":180,"y":180}]},"andesite_wall":{"conditional":[{"properties":{"up":"true"},"model":"andesite_wall_post"},{"properties":{"north":"low"},"model":"andesite_wall_side"},{"properties":{"east":"low"},"model":"andesite_wall_side","y":90},{"properties":{"south":"low"},"model":"andesite_wall_side","y":180},{"properties":{"west":"low"},"model":"andesite_wall_side","y":270},{"properties":{"north":"tall"},"model":"andesite_wall_side_tall"},{"properties":{"east":"tall"},"model":"andesite_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"andesite_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"andesite_wall_side_tall","y":270}]},"anvil":{"states":[{"properties":{"facing":"east"},"model":"anvil","y":270},{"properties":{"facing":"north"},"model":"anvil","y":180},{"properties":{"facing":"south"},"model":"anvil"},{"properties":{"facing":"west"},"model":"anvil","y":90}]},"attached_melon_stem":{"states":[{"properties":{"facing":"east"},"model":"attached_melon_stem","y":180},{"properties":{"facing":"north"},"model":"attached_melon_stem","y":90},{"properties":{"facing":"south"},"model":"attached_melon_stem","y":270},{"properties":{"facing":"west"},"model":"attached_melon_stem"}]},"attached_pumpkin_stem":{"states":[{"properties":{"facing":"east"},"model":"attached_pumpkin_stem","y":180},{"properties":{"facing":"north"},"model":"attached_pumpkin_stem","y":90},{"properties":{"facing":"south"},"model":"attached_pumpkin_stem","y":270},{"properties":{"facing":"west"},"model":"attached_pumpkin_stem"}]},"azure_bluet":{"states":[{"properties":{},"model":"azure_bluet"}]},"bamboo":{"conditional":[{"properties":{"age":"0"},"model":"bamboo1_age0"},{"properties":{"age":"1"},"model":"bamboo1_age1"},{"properties":{"leaves":"small"},"model":"bamboo_small_leaves"},{"properties":{"leaves":"large"},"model":"bamboo_large_leaves"}]},"bamboo_sapling":{"states":[{"properties":{},"model":"bamboo_sapling"}]},"barrel":{"states":[{"properties":{"facing":"down","open":"false"},"model":"barrel","x":180},{"properties":{"facing":"down","open":"true"},"model":"barrel_open","x":180},{"properties":{"facing":"east","open":"false"},"model":"barrel","x":90,"y":90},{"properties":{"facing":"east","open":"true"},"model":"barrel_open","x":90,"y":90},{"properties":{"facing":"north","open":"false"},"model":"barrel","x":90},{"properties":{"facing":"north","open":"true"},"model":"barrel_open","x":90},{"properties":{"facing":"south","open":"false"},"model":"barrel","x":90,"y":180},{"properties":{"facing":"south","open":"true"},"model":"barrel_open","x":90,"y":180},{"properties":{"facing":"up","open":"false"},"model":"barrel"},{"properties":{"facing":"up","open":"true"},"model":"barrel_open"},{"properties":{"facing":"west","open":"false"},"model":"barrel","x":90,"y":270},{"properties":{"facing":"west","open":"true"},"model":"barrel_open","x":90,"y":270}]},"barrier":{"states":[{"properties":{},"model":"barrier"}]},"basalt":{"states":[{"properties":{"axis":"x"},"model":"basalt","x":90,"y":90},{"properties":{"axis":"y"},"model":"basalt"},{"properties":{"axis":"z"},"model":"basalt","x":90}]},"beacon":{"states":[{"properties":{},"model":"beacon"}]},"bedrock":{"states":[{"properties":{},"model":"bedrock"}]},"beehive":{"states":[{"properties":{"facing":"east","honey_level":"0"},"model":"beehive","y":90},{"properties":{"facing":"east","honey_level":"1"},"model":"beehive","y":90},{"properties":{"facing":"east","honey_level":"2"},"model":"beehive","y":90},{"properties":{"facing":"east","honey_level":"3"},"model":"beehive","y":90},{"properties":{"facing":"east","honey_level":"4"},"model":"beehive","y":90},{"properties":{"facing":"east","honey_level":"5"},"model":"beehive_honey","y":90},{"properties":{"facing":"north","honey_level":"0"},"model":"beehive"},{"properties":{"facing":"north","honey_level":"1"},"model":"beehive"},{"properties":{"facing":"north","honey_level":"2"},"model":"beehive"},{"properties":{"facing":"north","honey_level":"3"},"model":"beehive"},{"properties":{"facing":"north","honey_level":"4"},"model":"beehive"},{"properties":{"facing":"north","honey_level":"5"},"model":"beehive_honey"},{"properties":{"facing":"south","honey_level":"0"},"model":"beehive","y":180},{"properties":{"facing":"south","honey_level":"1"},"model":"beehive","y":180},{"properties":{"facing":"south","honey_level":"2"},"model":"beehive","y":180},{"properties":{"facing":"south","honey_level":"3"},"model":"beehive","y":180},{"properties":{"facing":"south","honey_level":"4"},"model":"beehive","y":180},{"properties":{"facing":"south","honey_level":"5"},"model":"beehive_honey","y":180},{"properties":{"facing":"west","honey_level":"0"},"model":"beehive","y":270},{"properties":{"facing":"west","honey_level":"1"},"model":"beehive","y":270},{"properties":{"facing":"west","honey_level":"2"},"model":"beehive","y":270},{"properties":{"facing":"west","honey_level":"3"},"model":"beehive","y":270},{"properties":{"facing":"west","honey_level":"4"},"model":"beehive","y":270},{"properties":{"facing":"west","honey_level":"5"},"model":"beehive_honey","y":270}]},"beetroots":{"states":[{"properties":{"age":"0"},"model":"beetroots_stage0"},{"properties":{"age":"1"},"model":"beetroots_stage1"},{"properties":{"age":"2"},"model":"beetroots_stage2"},{"properties":{"age":"3"},"model":"beetroots_stage3"}]},"bee_nest":{"states":[{"properties":{"facing":"east","honey_level":"0"},"model":"bee_nest","y":90},{"properties":{"facing":"east","honey_level":"1"},"model":"bee_nest","y":90},{"properties":{"facing":"east","honey_level":"2"},"model":"bee_nest","y":90},{"properties":{"facing":"east","honey_level":"3"},"model":"bee_nest","y":90},{"properties":{"facing":"east","honey_level":"4"},"model":"bee_nest","y":90},{"properties":{"facing":"east","honey_level":"5"},"model":"bee_nest_honey","y":90},{"properties":{"facing":"north","honey_level":"0"},"model":"bee_nest"},{"properties":{"facing":"north","honey_level":"1"},"model":"bee_nest"},{"properties":{"facing":"north","honey_level":"2"},"model":"bee_nest"},{"properties":{"facing":"north","honey_level":"3"},"model":"bee_nest"},{"properties":{"facing":"north","honey_level":"4"},"model":"bee_nest"},{"properties":{"facing":"north","honey_level":"5"},"model":"bee_nest_honey"},{"properties":{"facing":"south","honey_level":"0"},"model":"bee_nest","y":180},{"properties":{"facing":"south","honey_level":"1"},"model":"bee_nest","y":180},{"properties":{"facing":"south","honey_level":"2"},"model":"bee_nest","y":180},{"properties":{"facing":"south","honey_level":"3"},"model":"bee_nest","y":180},{"properties":{"facing":"south","honey_level":"4"},"model":"bee_nest","y":180},{"properties":{"facing":"south","honey_level":"5"},"model":"bee_nest_honey","y":180},{"properties":{"facing":"west","honey_level":"0"},"model":"bee_nest","y":270},{"properties":{"facing":"west","honey_level":"1"},"model":"bee_nest","y":270},{"properties":{"facing":"west","honey_level":"2"},"model":"bee_nest","y":270},{"properties":{"facing":"west","honey_level":"3"},"model":"bee_nest","y":270},{"properties":{"facing":"west","honey_level":"4"},"model":"bee_nest","y":270},{"properties":{"facing":"west","honey_level":"5"},"model":"bee_nest_honey","y":270}]},"bell":{"states":[{"properties":{"attachment":"ceiling","facing":"east"},"model":"bell_ceiling","y":90},{"properties":{"attachment":"ceiling","facing":"north"},"model":"bell_ceiling"},{"properties":{"attachment":"ceiling","facing":"south"},"model":"bell_ceiling","y":180},{"properties":{"attachment":"ceiling","facing":"west"},"model":"bell_ceiling","y":270},{"properties":{"attachment":"double_wall","facing":"east"},"model":"bell_between_walls"},{"properties":{"attachment":"double_wall","facing":"north"},"model":"bell_between_walls","y":270},{"properties":{"attachment":"double_wall","facing":"south"},"model":"bell_between_walls","y":90},{"properties":{"attachment":"double_wall","facing":"west"},"model":"bell_between_walls","y":180},{"properties":{"attachment":"floor","facing":"east"},"model":"bell_floor","y":90},{"properties":{"attachment":"floor","facing":"north"},"model":"bell_floor"},{"properties":{"attachment":"floor","facing":"south"},"model":"bell_floor","y":180},{"properties":{"attachment":"floor","facing":"west"},"model":"bell_floor","y":270},{"properties":{"attachment":"single_wall","facing":"east"},"model":"bell_wall"},{"properties":{"attachment":"single_wall","facing":"north"},"model":"bell_wall","y":270},{"properties":{"attachment":"single_wall","facing":"south"},"model":"bell_wall","y":90},{"properties":{"attachment":"single_wall","facing":"west"},"model":"bell_wall","y":180}]},"birch_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"birch_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"birch_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"birch_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"birch_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"birch_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"birch_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"birch_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"birch_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"birch_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"birch_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"birch_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"birch_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"birch_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"birch_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"birch_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"birch_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"birch_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"birch_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"birch_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"birch_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"birch_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"birch_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"birch_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"birch_button_pressed","x":90,"y":270}]},"birch_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"birch_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"birch_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"birch_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"birch_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"birch_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"birch_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"birch_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"birch_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"birch_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"birch_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"birch_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"birch_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"birch_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"birch_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"birch_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"birch_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"birch_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"birch_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"birch_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"birch_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"birch_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"birch_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"birch_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"birch_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"birch_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"birch_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"birch_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"birch_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"birch_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"birch_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"birch_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"birch_door_top","y":90}]},"birch_fence":{"conditional":[{"model":"birch_fence_post"},{"properties":{"north":"true"},"model":"birch_fence_side"},{"properties":{"east":"true"},"model":"birch_fence_side","y":90},{"properties":{"south":"true"},"model":"birch_fence_side","y":180},{"properties":{"west":"true"},"model":"birch_fence_side","y":270}]},"birch_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"birch_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"birch_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"birch_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"birch_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"birch_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"birch_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"birch_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"birch_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"birch_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"birch_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"birch_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"birch_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"birch_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"birch_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"birch_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"birch_fence_gate_wall_open","y":90}]},"birch_leaves":{"states":[{"properties":{},"model":"birch_leaves"}]},"birch_log":{"states":[{"properties":{"axis":"x"},"model":"birch_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"birch_log"},{"properties":{"axis":"z"},"model":"birch_log_horizontal","x":90}]},"birch_planks":{"states":[{"properties":{},"model":"birch_planks"}]},"birch_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"birch_pressure_plate"},{"properties":{"powered":"true"},"model":"birch_pressure_plate_down"}]},"birch_sapling":{"states":[{"properties":{},"model":"birch_sapling"}]},"birch_sign":{"states":[{"properties":{},"model":"birch_sign"}]},"birch_slab":{"states":[{"properties":{"type":"bottom"},"model":"birch_slab"},{"properties":{"type":"double"},"model":"birch_planks"},{"properties":{"type":"top"},"model":"birch_slab_top"}]},"birch_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"birch_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"birch_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"birch_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"birch_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"birch_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"birch_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"birch_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"birch_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"birch_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"birch_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"birch_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"birch_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"birch_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"birch_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"birch_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"birch_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"birch_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"birch_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"birch_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"birch_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"birch_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"birch_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"birch_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"birch_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"birch_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"birch_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"birch_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"birch_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"birch_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"birch_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"birch_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"birch_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"birch_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"birch_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"birch_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"birch_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"birch_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"birch_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"birch_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"birch_stairs","x":180,"y":180}]},"birch_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"birch_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"birch_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"birch_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"birch_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"birch_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"birch_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"birch_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"birch_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"birch_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"birch_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"birch_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"birch_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"birch_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"birch_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"birch_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"birch_trapdoor_open","x":180,"y":90}]},"birch_wall_sign":{"states":[{"properties":{},"model":"birch_sign"}]},"birch_wood":{"states":[{"properties":{"axis":"x"},"model":"birch_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"birch_wood"},{"properties":{"axis":"z"},"model":"birch_wood","x":90}]},"blackstone":{"states":[{"properties":{},"model":"blackstone"}]},"blackstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"blackstone_slab"},{"properties":{"type":"double"},"model":"blackstone"},{"properties":{"type":"top"},"model":"blackstone_slab_top"}]},"blackstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"blackstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"blackstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"blackstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"blackstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"blackstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"blackstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"blackstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"blackstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"blackstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"blackstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"blackstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"blackstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"blackstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"blackstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"blackstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"blackstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"blackstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"blackstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"blackstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"blackstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"blackstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"blackstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"blackstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"blackstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"blackstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"blackstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"blackstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"blackstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"blackstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"blackstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"blackstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"blackstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"blackstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"blackstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"blackstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"blackstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"blackstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"blackstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"blackstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"blackstone_stairs","x":180,"y":180}]},"blackstone_wall":{"conditional":[{"properties":{"up":"true"},"model":"blackstone_wall_post"},{"properties":{"north":"low"},"model":"blackstone_wall_side"},{"properties":{"east":"low"},"model":"blackstone_wall_side","y":90},{"properties":{"south":"low"},"model":"blackstone_wall_side","y":180},{"properties":{"west":"low"},"model":"blackstone_wall_side","y":270},{"properties":{"north":"tall"},"model":"blackstone_wall_side_tall"},{"properties":{"east":"tall"},"model":"blackstone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"blackstone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"blackstone_wall_side_tall","y":270}]},"black_banner":{"states":[{"properties":{},"model":"banner"}]},"black_bed":{"states":[{"properties":{},"model":"bed"}]},"black_candle":{"states":[{"properties":{"candles":"1"},"model":"black_candle_one_candle"},{"properties":{"candles":"2"},"model":"black_candle_two_candles"},{"properties":{"candles":"3"},"model":"black_candle_three_candles"},{"properties":{"candles":"4"},"model":"black_candle_four_candles"}]},"black_candle_cake":{"states":[{"properties":{},"model":"black_candle_cake"}]},"black_carpet":{"states":[{"properties":{},"model":"black_carpet"}]},"black_concrete":{"states":[{"properties":{},"model":"black_concrete"}]},"black_concrete_powder":{"states":[{"properties":{},"model":"black_concrete_powder"}]},"black_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"black_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"black_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"black_glazed_terracotta"},{"properties":{"facing":"west"},"model":"black_glazed_terracotta","y":90}]},"black_shulker_box":{"states":[{"properties":{},"model":"black_shulker_box"}]},"black_stained_glass":{"states":[{"properties":{},"model":"black_stained_glass"}]},"black_stained_glass_pane":{"conditional":[{"model":"black_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"black_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"black_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"black_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"black_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"black_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"black_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"black_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"black_stained_glass_pane_noside","y":270}]},"black_terracotta":{"states":[{"properties":{},"model":"black_terracotta"}]},"black_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"black_wool":{"states":[{"properties":{},"model":"black_wool"}]},"blast_furnace":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"blast_furnace","y":90},{"properties":{"facing":"east","lit":"true"},"model":"blast_furnace_on","y":90},{"properties":{"facing":"north","lit":"false"},"model":"blast_furnace"},{"properties":{"facing":"north","lit":"true"},"model":"blast_furnace_on"},{"properties":{"facing":"south","lit":"false"},"model":"blast_furnace","y":180},{"properties":{"facing":"south","lit":"true"},"model":"blast_furnace_on","y":180},{"properties":{"facing":"west","lit":"false"},"model":"blast_furnace","y":270},{"properties":{"facing":"west","lit":"true"},"model":"blast_furnace_on","y":270}]},"blue_banner":{"states":[{"properties":{},"model":"banner"}]},"blue_bed":{"states":[{"properties":{},"model":"bed"}]},"blue_candle":{"states":[{"properties":{"candles":"1"},"model":"blue_candle_one_candle"},{"properties":{"candles":"2"},"model":"blue_candle_two_candles"},{"properties":{"candles":"3"},"model":"blue_candle_three_candles"},{"properties":{"candles":"4"},"model":"blue_candle_four_candles"}]},"blue_candle_cake":{"states":[{"properties":{},"model":"blue_candle_cake"}]},"blue_carpet":{"states":[{"properties":{},"model":"blue_carpet"}]},"blue_concrete":{"states":[{"properties":{},"model":"blue_concrete"}]},"blue_concrete_powder":{"states":[{"properties":{},"model":"blue_concrete_powder"}]},"blue_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"blue_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"blue_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"blue_glazed_terracotta"},{"properties":{"facing":"west"},"model":"blue_glazed_terracotta","y":90}]},"blue_ice":{"states":[{"properties":{},"model":"blue_ice"}]},"blue_orchid":{"states":[{"properties":{},"model":"blue_orchid"}]},"blue_shulker_box":{"states":[{"properties":{},"model":"blue_shulker_box"}]},"blue_stained_glass":{"states":[{"properties":{},"model":"blue_stained_glass"}]},"blue_stained_glass_pane":{"conditional":[{"model":"blue_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"blue_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"blue_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"blue_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"blue_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"blue_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"blue_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"blue_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"blue_stained_glass_pane_noside","y":270}]},"blue_terracotta":{"states":[{"properties":{},"model":"blue_terracotta"}]},"blue_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"blue_wool":{"states":[{"properties":{},"model":"blue_wool"}]},"bone_block":{"states":[{"properties":{"axis":"x"},"model":"bone_block","x":90,"y":90},{"properties":{"axis":"y"},"model":"bone_block"},{"properties":{"axis":"z"},"model":"bone_block","x":90}]},"bookshelf":{"states":[{"properties":{},"model":"bookshelf"}]},"brain_coral":{"states":[{"properties":{},"model":"brain_coral"}]},"brain_coral_block":{"states":[{"properties":{},"model":"brain_coral_block"}]},"brain_coral_fan":{"states":[{"properties":{},"model":"brain_coral_fan"}]},"brain_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"brain_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"brain_coral_wall_fan"},{"properties":{"facing":"south"},"model":"brain_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"brain_coral_wall_fan","y":270}]},"brewing_stand":{"conditional":[{"model":"brewing_stand"},{"properties":{"has_bottle_0":"true"},"model":"brewing_stand_bottle0"},{"properties":{"has_bottle_1":"true"},"model":"brewing_stand_bottle1"},{"properties":{"has_bottle_2":"true"},"model":"brewing_stand_bottle2"},{"properties":{"has_bottle_0":"false"},"model":"brewing_stand_empty0"},{"properties":{"has_bottle_1":"false"},"model":"brewing_stand_empty1"},{"properties":{"has_bottle_2":"false"},"model":"brewing_stand_empty2"}]},"bricks":{"states":[{"properties":{},"model":"bricks"}]},"brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"brick_slab"},{"properties":{"type":"double"},"model":"bricks"},{"properties":{"type":"top"},"model":"brick_slab_top"}]},"brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"brick_stairs","x":180,"y":180}]},"brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"brick_wall_post"},{"properties":{"north":"low"},"model":"brick_wall_side"},{"properties":{"east":"low"},"model":"brick_wall_side","y":90},{"properties":{"south":"low"},"model":"brick_wall_side","y":180},{"properties":{"west":"low"},"model":"brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"brick_wall_side_tall","y":270}]},"brown_banner":{"states":[{"properties":{},"model":"banner"}]},"brown_bed":{"states":[{"properties":{},"model":"bed"}]},"brown_candle":{"states":[{"properties":{"candles":"1"},"model":"brown_candle_one_candle"},{"properties":{"candles":"2"},"model":"brown_candle_two_candles"},{"properties":{"candles":"3"},"model":"brown_candle_three_candles"},{"properties":{"candles":"4"},"model":"brown_candle_four_candles"}]},"brown_candle_cake":{"states":[{"properties":{},"model":"brown_candle_cake"}]},"brown_carpet":{"states":[{"properties":{},"model":"brown_carpet"}]},"brown_concrete":{"states":[{"properties":{},"model":"brown_concrete"}]},"brown_concrete_powder":{"states":[{"properties":{},"model":"brown_concrete_powder"}]},"brown_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"brown_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"brown_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"brown_glazed_terracotta"},{"properties":{"facing":"west"},"model":"brown_glazed_terracotta","y":90}]},"brown_mushroom":{"states":[{"properties":{},"model":"brown_mushroom"}]},"brown_mushroom_block":{"conditional":[{"properties":{"north":"true"},"model":"brown_mushroom_block"},{"properties":{"east":"true"},"model":"brown_mushroom_block","y":90},{"properties":{"south":"true"},"model":"brown_mushroom_block","y":180},{"properties":{"west":"true"},"model":"brown_mushroom_block","y":270},{"properties":{"up":"true"},"model":"brown_mushroom_block","x":270},{"properties":{"down":"true"},"model":"brown_mushroom_block","x":90},{"properties":{"north":"false"},"model":"mushroom_block_inside"},{"properties":{"east":"false"},"model":"mushroom_block_inside","y":90},{"properties":{"south":"false"},"model":"mushroom_block_inside","y":180},{"properties":{"west":"false"},"model":"mushroom_block_inside","y":270},{"properties":{"up":"false"},"model":"mushroom_block_inside","x":270},{"properties":{"down":"false"},"model":"mushroom_block_inside","x":90}]},"brown_shulker_box":{"states":[{"properties":{},"model":"brown_shulker_box"}]},"brown_stained_glass":{"states":[{"properties":{},"model":"brown_stained_glass"}]},"brown_stained_glass_pane":{"conditional":[{"model":"brown_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"brown_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"brown_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"brown_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"brown_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"brown_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"brown_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"brown_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"brown_stained_glass_pane_noside","y":270}]},"brown_terracotta":{"states":[{"properties":{},"model":"brown_terracotta"}]},"brown_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"brown_wool":{"states":[{"properties":{},"model":"brown_wool"}]},"bubble_column":{"states":[{"properties":{},"model":"water"}]},"bubble_coral":{"states":[{"properties":{},"model":"bubble_coral"}]},"bubble_coral_block":{"states":[{"properties":{},"model":"bubble_coral_block"}]},"bubble_coral_fan":{"states":[{"properties":{},"model":"bubble_coral_fan"}]},"bubble_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"bubble_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"bubble_coral_wall_fan"},{"properties":{"facing":"south"},"model":"bubble_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"bubble_coral_wall_fan","y":270}]},"budding_amethyst":{"states":[{"properties":{},"model":"budding_amethyst"}]},"cactus":{"states":[{"properties":{},"model":"cactus"}]},"cake":{"states":[{"properties":{"bites":"0"},"model":"cake"},{"properties":{"bites":"1"},"model":"cake_slice1"},{"properties":{"bites":"2"},"model":"cake_slice2"},{"properties":{"bites":"3"},"model":"cake_slice3"},{"properties":{"bites":"4"},"model":"cake_slice4"},{"properties":{"bites":"5"},"model":"cake_slice5"},{"properties":{"bites":"6"},"model":"cake_slice6"}]},"calcite":{"states":[{"properties":{},"model":"calcite"}]},"campfire":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"campfire_off","y":270},{"properties":{"facing":"east","lit":"true"},"model":"campfire","y":270},{"properties":{"facing":"north","lit":"false"},"model":"campfire_off","y":180},{"properties":{"facing":"north","lit":"true"},"model":"campfire","y":180},{"properties":{"facing":"south","lit":"false"},"model":"campfire_off"},{"properties":{"facing":"south","lit":"true"},"model":"campfire"},{"properties":{"facing":"west","lit":"false"},"model":"campfire_off","y":90},{"properties":{"facing":"west","lit":"true"},"model":"campfire","y":90}]},"candle":{"states":[{"properties":{"candles":"1"},"model":"candle_one_candle"},{"properties":{"candles":"2"},"model":"candle_two_candles"},{"properties":{"candles":"3"},"model":"candle_three_candles"},{"properties":{"candles":"4"},"model":"candle_four_candles"}]},"candle_cake":{"states":[{"properties":{},"model":"candle_cake"}]},"carrots":{"states":[{"properties":{"age":"0"},"model":"carrots_stage0"},{"properties":{"age":"1"},"model":"carrots_stage0"},{"properties":{"age":"2"},"model":"carrots_stage1"},{"properties":{"age":"3"},"model":"carrots_stage1"},{"properties":{"age":"4"},"model":"carrots_stage2"},{"properties":{"age":"5"},"model":"carrots_stage2"},{"properties":{"age":"6"},"model":"carrots_stage2"},{"properties":{"age":"7"},"model":"carrots_stage3"}]},"cartography_table":{"states":[{"properties":{},"model":"cartography_table"}]},"carved_pumpkin":{"states":[{"properties":{"facing":"east"},"model":"carved_pumpkin","y":90},{"properties":{"facing":"north"},"model":"carved_pumpkin"},{"properties":{"facing":"south"},"model":"carved_pumpkin","y":180},{"properties":{"facing":"west"},"model":"carved_pumpkin","y":270}]},"cauldron":{"states":[{"properties":{},"model":"cauldron"}]},"cave_air":{"states":[{"properties":{},"model":"air"}]},"chain":{"states":[{"properties":{"axis":"x"},"model":"chain","x":90,"y":90},{"properties":{"axis":"y"},"model":"chain"},{"properties":{"axis":"z"},"model":"chain","x":90}]},"chain_command_block":{"states":[{"properties":{"conditional":"false","facing":"down"},"model":"chain_command_block","x":90},{"properties":{"conditional":"false","facing":"east"},"model":"chain_command_block","y":90},{"properties":{"conditional":"false","facing":"north"},"model":"chain_command_block"},{"properties":{"conditional":"false","facing":"south"},"model":"chain_command_block","y":180},{"properties":{"conditional":"false","facing":"up"},"model":"chain_command_block","x":270},{"properties":{"conditional":"false","facing":"west"},"model":"chain_command_block","y":270},{"properties":{"conditional":"true","facing":"down"},"model":"chain_command_block_conditional","x":90},{"properties":{"conditional":"true","facing":"east"},"model":"chain_command_block_conditional","y":90},{"properties":{"conditional":"true","facing":"north"},"model":"chain_command_block_conditional"},{"properties":{"conditional":"true","facing":"south"},"model":"chain_command_block_conditional","y":180},{"properties":{"conditional":"true","facing":"up"},"model":"chain_command_block_conditional","x":270},{"properties":{"conditional":"true","facing":"west"},"model":"chain_command_block_conditional","y":270}]},"chest":{"states":[{"properties":{},"model":"chest"}]},"chipped_anvil":{"states":[{"properties":{"facing":"east"},"model":"chipped_anvil","y":270},{"properties":{"facing":"north"},"model":"chipped_anvil","y":180},{"properties":{"facing":"south"},"model":"chipped_anvil"},{"properties":{"facing":"west"},"model":"chipped_anvil","y":90}]},"chiseled_nether_bricks":{"states":[{"properties":{},"model":"chiseled_nether_bricks"}]},"chiseled_polished_blackstone":{"states":[{"properties":{},"model":"chiseled_polished_blackstone"}]},"chiseled_quartz_block":{"states":[{"properties":{},"model":"chiseled_quartz_block"}]},"chiseled_red_sandstone":{"states":[{"properties":{},"model":"chiseled_red_sandstone"}]},"chiseled_sandstone":{"states":[{"properties":{},"model":"chiseled_sandstone"}]},"chiseled_stone_bricks":{"states":[{"properties":{},"model":"chiseled_stone_bricks"}]},"chorus_flower":{"states":[{"properties":{"age":"0"},"model":"chorus_flower"},{"properties":{"age":"1"},"model":"chorus_flower"},{"properties":{"age":"2"},"model":"chorus_flower"},{"properties":{"age":"3"},"model":"chorus_flower"},{"properties":{"age":"4"},"model":"chorus_flower"},{"properties":{"age":"5"},"model":"chorus_flower_dead"}]},"chorus_plant":{"conditional":[{"properties":{"north":"true"},"model":"chorus_plant_side"},{"properties":{"east":"true"},"model":"chorus_plant_side","y":90},{"properties":{"south":"true"},"model":"chorus_plant_side","y":180},{"properties":{"west":"true"},"model":"chorus_plant_side","y":270},{"properties":{"up":"true"},"model":"chorus_plant_side","x":270},{"properties":{"down":"true"},"model":"chorus_plant_side","x":90},{"properties":{"north":"false"},"model":"chorus_plant_noside"},{"properties":{"east":"false"},"model":"chorus_plant_noside1","y":90},{"properties":{"south":"false"},"model":"chorus_plant_noside2","y":180},{"properties":{"west":"false"},"model":"chorus_plant_noside3","y":270},{"properties":{"up":"false"},"model":"chorus_plant_noside","x":270},{"properties":{"down":"false"},"model":"chorus_plant_noside3","x":90}]},"clay":{"states":[{"properties":{},"model":"clay"}]},"coal_block":{"states":[{"properties":{},"model":"coal_block"}]},"coal_ore":{"states":[{"properties":{},"model":"coal_ore"}]},"coarse_dirt":{"states":[{"properties":{},"model":"coarse_dirt"}]},"cobblestone":{"states":[{"properties":{},"model":"cobblestone"}]},"cobblestone_slab":{"states":[{"properties":{"type":"bottom"},"model":"cobblestone_slab"},{"properties":{"type":"double"},"model":"cobblestone"},{"properties":{"type":"top"},"model":"cobblestone_slab_top"}]},"cobblestone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"cobblestone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"cobblestone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"cobblestone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"cobblestone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"cobblestone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"cobblestone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"cobblestone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"cobblestone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"cobblestone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"cobblestone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"cobblestone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"cobblestone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"cobblestone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"cobblestone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"cobblestone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"cobblestone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"cobblestone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"cobblestone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"cobblestone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"cobblestone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"cobblestone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"cobblestone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"cobblestone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"cobblestone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"cobblestone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"cobblestone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"cobblestone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"cobblestone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"cobblestone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"cobblestone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"cobblestone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"cobblestone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"cobblestone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"cobblestone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"cobblestone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"cobblestone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"cobblestone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"cobblestone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"cobblestone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"cobblestone_stairs","x":180,"y":180}]},"cobblestone_wall":{"conditional":[{"properties":{"up":"true"},"model":"cobblestone_wall_post"},{"properties":{"north":"low"},"model":"cobblestone_wall_side"},{"properties":{"east":"low"},"model":"cobblestone_wall_side","y":90},{"properties":{"south":"low"},"model":"cobblestone_wall_side","y":180},{"properties":{"west":"low"},"model":"cobblestone_wall_side","y":270},{"properties":{"north":"tall"},"model":"cobblestone_wall_side_tall"},{"properties":{"east":"tall"},"model":"cobblestone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"cobblestone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"cobblestone_wall_side_tall","y":270}]},"cobweb":{"states":[{"properties":{},"model":"cobweb"}]},"cocoa":{"states":[{"properties":{"age":"0","facing":"east"},"model":"cocoa_stage0","y":270},{"properties":{"age":"0","facing":"north"},"model":"cocoa_stage0","y":180},{"properties":{"age":"0","facing":"south"},"model":"cocoa_stage0"},{"properties":{"age":"0","facing":"west"},"model":"cocoa_stage0","y":90},{"properties":{"age":"1","facing":"east"},"model":"cocoa_stage1","y":270},{"properties":{"age":"1","facing":"north"},"model":"cocoa_stage1","y":180},{"properties":{"age":"1","facing":"south"},"model":"cocoa_stage1"},{"properties":{"age":"1","facing":"west"},"model":"cocoa_stage1","y":90},{"properties":{"age":"2","facing":"east"},"model":"cocoa_stage2","y":270},{"properties":{"age":"2","facing":"north"},"model":"cocoa_stage2","y":180},{"properties":{"age":"2","facing":"south"},"model":"cocoa_stage2"},{"properties":{"age":"2","facing":"west"},"model":"cocoa_stage2","y":90}]},"command_block":{"states":[{"properties":{"conditional":"false","facing":"down"},"model":"command_block","x":90},{"properties":{"conditional":"false","facing":"east"},"model":"command_block","y":90},{"properties":{"conditional":"false","facing":"north"},"model":"command_block"},{"properties":{"conditional":"false","facing":"south"},"model":"command_block","y":180},{"properties":{"conditional":"false","facing":"up"},"model":"command_block","x":270},{"properties":{"conditional":"false","facing":"west"},"model":"command_block","y":270},{"properties":{"conditional":"true","facing":"down"},"model":"command_block_conditional","x":90},{"properties":{"conditional":"true","facing":"east"},"model":"command_block_conditional","y":90},{"properties":{"conditional":"true","facing":"north"},"model":"command_block_conditional"},{"properties":{"conditional":"true","facing":"south"},"model":"command_block_conditional","y":180},{"properties":{"conditional":"true","facing":"up"},"model":"command_block_conditional","x":270},{"properties":{"conditional":"true","facing":"west"},"model":"command_block_conditional","y":270}]},"comparator":{"states":[{"properties":{"facing":"east","mode":"compare","powered":"false"},"model":"comparator","y":270},{"properties":{"facing":"east","mode":"compare","powered":"true"},"model":"comparator_on","y":270},{"properties":{"facing":"east","mode":"subtract","powered":"false"},"model":"comparator_subtract","y":270},{"properties":{"facing":"east","mode":"subtract","powered":"true"},"model":"comparator_on_subtract","y":270},{"properties":{"facing":"north","mode":"compare","powered":"false"},"model":"comparator","y":180},{"properties":{"facing":"north","mode":"compare","powered":"true"},"model":"comparator_on","y":180},{"properties":{"facing":"north","mode":"subtract","powered":"false"},"model":"comparator_subtract","y":180},{"properties":{"facing":"north","mode":"subtract","powered":"true"},"model":"comparator_on_subtract","y":180},{"properties":{"facing":"south","mode":"compare","powered":"false"},"model":"comparator"},{"properties":{"facing":"south","mode":"compare","powered":"true"},"model":"comparator_on"},{"properties":{"facing":"south","mode":"subtract","powered":"false"},"model":"comparator_subtract"},{"properties":{"facing":"south","mode":"subtract","powered":"true"},"model":"comparator_on_subtract"},{"properties":{"facing":"west","mode":"compare","powered":"false"},"model":"comparator","y":90},{"properties":{"facing":"west","mode":"compare","powered":"true"},"model":"comparator_on","y":90},{"properties":{"facing":"west","mode":"subtract","powered":"false"},"model":"comparator_subtract","y":90},{"properties":{"facing":"west","mode":"subtract","powered":"true"},"model":"comparator_on_subtract","y":90}]},"composter":{"conditional":[{"model":"composter"},{"properties":{"level":"1"},"model":"composter_contents1"},{"properties":{"level":"2"},"model":"composter_contents2"},{"properties":{"level":"3"},"model":"composter_contents3"},{"properties":{"level":"4"},"model":"composter_contents4"},{"properties":{"level":"5"},"model":"composter_contents5"},{"properties":{"level":"6"},"model":"composter_contents6"},{"properties":{"level":"7"},"model":"composter_contents7"},{"properties":{"level":"8"},"model":"composter_contents_ready"}]},"conduit":{"states":[{"properties":{},"model":"conduit"}]},"copper_block":{"states":[{"properties":{},"model":"copper_block"}]},"copper_ore":{"states":[{"properties":{},"model":"copper_ore"}]},"cornflower":{"states":[{"properties":{},"model":"cornflower"}]},"cracked_nether_bricks":{"states":[{"properties":{},"model":"cracked_nether_bricks"}]},"cracked_polished_blackstone_bricks":{"states":[{"properties":{},"model":"cracked_polished_blackstone_bricks"}]},"cracked_stone_bricks":{"states":[{"properties":{},"model":"cracked_stone_bricks"}]},"crafting_table":{"states":[{"properties":{},"model":"crafting_table"}]},"creeper_head":{"states":[{"properties":{},"model":"skull"}]},"creeper_wall_head":{"states":[{"properties":{},"model":"skull"}]},"crimson_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"crimson_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"crimson_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"crimson_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"crimson_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"crimson_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"crimson_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"crimson_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"crimson_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"crimson_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"crimson_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"crimson_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"crimson_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"crimson_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"crimson_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"crimson_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"crimson_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"crimson_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"crimson_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"crimson_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"crimson_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"crimson_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"crimson_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"crimson_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"crimson_button_pressed","x":90,"y":270}]},"crimson_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"crimson_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"crimson_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"crimson_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"crimson_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"crimson_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"crimson_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"crimson_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"crimson_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"crimson_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"crimson_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"crimson_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"crimson_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"crimson_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"crimson_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"crimson_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"crimson_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"crimson_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"crimson_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"crimson_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"crimson_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"crimson_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"crimson_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"crimson_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"crimson_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"crimson_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"crimson_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"crimson_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"crimson_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"crimson_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"crimson_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"crimson_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"crimson_door_top","y":90}]},"crimson_fence":{"conditional":[{"model":"crimson_fence_post"},{"properties":{"north":"true"},"model":"crimson_fence_side"},{"properties":{"east":"true"},"model":"crimson_fence_side","y":90},{"properties":{"south":"true"},"model":"crimson_fence_side","y":180},{"properties":{"west":"true"},"model":"crimson_fence_side","y":270}]},"crimson_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"crimson_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"crimson_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"crimson_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"crimson_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"crimson_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"crimson_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"crimson_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"crimson_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"crimson_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"crimson_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"crimson_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"crimson_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"crimson_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"crimson_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"crimson_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"crimson_fence_gate_wall_open","y":90}]},"crimson_fungus":{"states":[{"properties":{},"model":"crimson_fungus"}]},"crimson_hyphae":{"states":[{"properties":{"axis":"x"},"model":"crimson_hyphae","x":90,"y":90},{"properties":{"axis":"y"},"model":"crimson_hyphae"},{"properties":{"axis":"z"},"model":"crimson_hyphae","x":90}]},"crimson_nylium":{"states":[{"properties":{},"model":"crimson_nylium"}]},"crimson_planks":{"states":[{"properties":{},"model":"crimson_planks"}]},"crimson_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"crimson_pressure_plate"},{"properties":{"powered":"true"},"model":"crimson_pressure_plate_down"}]},"crimson_roots":{"states":[{"properties":{},"model":"crimson_roots"}]},"crimson_sign":{"states":[{"properties":{},"model":"crimson_sign"}]},"crimson_slab":{"states":[{"properties":{"type":"bottom"},"model":"crimson_slab"},{"properties":{"type":"double"},"model":"crimson_planks"},{"properties":{"type":"top"},"model":"crimson_slab_top"}]},"crimson_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"crimson_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"crimson_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"crimson_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"crimson_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"crimson_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"crimson_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"crimson_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"crimson_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"crimson_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"crimson_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"crimson_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"crimson_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"crimson_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"crimson_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"crimson_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"crimson_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"crimson_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"crimson_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"crimson_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"crimson_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"crimson_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"crimson_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"crimson_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"crimson_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"crimson_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"crimson_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"crimson_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"crimson_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"crimson_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"crimson_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"crimson_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"crimson_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"crimson_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"crimson_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"crimson_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"crimson_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"crimson_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"crimson_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"crimson_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"crimson_stairs","x":180,"y":180}]},"crimson_stem":{"states":[{"properties":{"axis":"x"},"model":"crimson_stem","x":90,"y":90},{"properties":{"axis":"y"},"model":"crimson_stem"},{"properties":{"axis":"z"},"model":"crimson_stem","x":90}]},"crimson_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"crimson_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"crimson_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"crimson_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"crimson_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"crimson_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"crimson_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"crimson_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"crimson_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"crimson_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"crimson_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"crimson_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"crimson_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"crimson_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"crimson_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"crimson_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"crimson_trapdoor_open","x":180,"y":90}]},"crimson_wall_sign":{"states":[{"properties":{},"model":"crimson_sign"}]},"crying_obsidian":{"states":[{"properties":{},"model":"crying_obsidian"}]},"cut_copper":{"states":[{"properties":{},"model":"cut_copper"}]},"cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"cut_copper_slab"},{"properties":{"type":"double"},"model":"cut_copper"},{"properties":{"type":"top"},"model":"cut_copper_slab_top"}]},"cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":180}]},"cut_red_sandstone":{"states":[{"properties":{},"model":"cut_red_sandstone"}]},"cut_red_sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"cut_red_sandstone_slab"},{"properties":{"type":"double"},"model":"cut_red_sandstone"},{"properties":{"type":"top"},"model":"cut_red_sandstone_slab_top"}]},"cut_sandstone":{"states":[{"properties":{},"model":"cut_sandstone"}]},"cut_sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"cut_sandstone_slab"},{"properties":{"type":"double"},"model":"cut_sandstone"},{"properties":{"type":"top"},"model":"cut_sandstone_slab_top"}]},"cyan_banner":{"states":[{"properties":{},"model":"banner"}]},"cyan_bed":{"states":[{"properties":{},"model":"bed"}]},"cyan_candle":{"states":[{"properties":{"candles":"1"},"model":"cyan_candle_one_candle"},{"properties":{"candles":"2"},"model":"cyan_candle_two_candles"},{"properties":{"candles":"3"},"model":"cyan_candle_three_candles"},{"properties":{"candles":"4"},"model":"cyan_candle_four_candles"}]},"cyan_candle_cake":{"states":[{"properties":{},"model":"cyan_candle_cake"}]},"cyan_carpet":{"states":[{"properties":{},"model":"cyan_carpet"}]},"cyan_concrete":{"states":[{"properties":{},"model":"cyan_concrete"}]},"cyan_concrete_powder":{"states":[{"properties":{},"model":"cyan_concrete_powder"}]},"cyan_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"cyan_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"cyan_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"cyan_glazed_terracotta"},{"properties":{"facing":"west"},"model":"cyan_glazed_terracotta","y":90}]},"cyan_shulker_box":{"states":[{"properties":{},"model":"cyan_shulker_box"}]},"cyan_stained_glass":{"states":[{"properties":{},"model":"cyan_stained_glass"}]},"cyan_stained_glass_pane":{"conditional":[{"model":"cyan_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"cyan_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"cyan_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"cyan_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"cyan_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"cyan_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"cyan_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"cyan_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"cyan_stained_glass_pane_noside","y":270}]},"cyan_terracotta":{"states":[{"properties":{},"model":"cyan_terracotta"}]},"cyan_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"cyan_wool":{"states":[{"properties":{},"model":"cyan_wool"}]},"damaged_anvil":{"states":[{"properties":{"facing":"east"},"model":"damaged_anvil","y":270},{"properties":{"facing":"north"},"model":"damaged_anvil","y":180},{"properties":{"facing":"south"},"model":"damaged_anvil"},{"properties":{"facing":"west"},"model":"damaged_anvil","y":90}]},"dandelion":{"states":[{"properties":{},"model":"dandelion"}]},"dark_oak_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"dark_oak_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"dark_oak_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"dark_oak_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"dark_oak_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"dark_oak_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"dark_oak_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"dark_oak_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"dark_oak_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"dark_oak_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"dark_oak_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"dark_oak_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"dark_oak_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"dark_oak_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"dark_oak_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"dark_oak_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"dark_oak_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"dark_oak_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"dark_oak_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"dark_oak_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"dark_oak_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"dark_oak_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"dark_oak_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"dark_oak_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"dark_oak_button_pressed","x":90,"y":270}]},"dark_oak_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"dark_oak_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"dark_oak_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"dark_oak_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"dark_oak_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"dark_oak_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"dark_oak_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"dark_oak_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"dark_oak_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"dark_oak_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"dark_oak_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"dark_oak_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"dark_oak_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"dark_oak_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"dark_oak_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"dark_oak_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"dark_oak_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"dark_oak_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"dark_oak_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"dark_oak_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"dark_oak_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"dark_oak_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"dark_oak_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"dark_oak_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"dark_oak_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"dark_oak_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"dark_oak_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"dark_oak_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"dark_oak_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"dark_oak_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"dark_oak_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"dark_oak_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"dark_oak_door_top","y":90}]},"dark_oak_fence":{"conditional":[{"model":"dark_oak_fence_post"},{"properties":{"north":"true"},"model":"dark_oak_fence_side"},{"properties":{"east":"true"},"model":"dark_oak_fence_side","y":90},{"properties":{"south":"true"},"model":"dark_oak_fence_side","y":180},{"properties":{"west":"true"},"model":"dark_oak_fence_side","y":270}]},"dark_oak_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"dark_oak_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"dark_oak_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"dark_oak_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"dark_oak_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"dark_oak_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"dark_oak_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"dark_oak_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"dark_oak_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"dark_oak_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"dark_oak_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"dark_oak_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"dark_oak_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"dark_oak_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"dark_oak_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"dark_oak_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"dark_oak_fence_gate_wall_open","y":90}]},"dark_oak_leaves":{"states":[{"properties":{},"model":"dark_oak_leaves"}]},"dark_oak_log":{"states":[{"properties":{"axis":"x"},"model":"dark_oak_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"dark_oak_log"},{"properties":{"axis":"z"},"model":"dark_oak_log_horizontal","x":90}]},"dark_oak_planks":{"states":[{"properties":{},"model":"dark_oak_planks"}]},"dark_oak_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"dark_oak_pressure_plate"},{"properties":{"powered":"true"},"model":"dark_oak_pressure_plate_down"}]},"dark_oak_sapling":{"states":[{"properties":{},"model":"dark_oak_sapling"}]},"dark_oak_sign":{"states":[{"properties":{},"model":"dark_oak_sign"}]},"dark_oak_slab":{"states":[{"properties":{"type":"bottom"},"model":"dark_oak_slab"},{"properties":{"type":"double"},"model":"dark_oak_planks"},{"properties":{"type":"top"},"model":"dark_oak_slab_top"}]},"dark_oak_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"dark_oak_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"dark_oak_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"dark_oak_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"dark_oak_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"dark_oak_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"dark_oak_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"dark_oak_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"dark_oak_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"dark_oak_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"dark_oak_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"dark_oak_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"dark_oak_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"dark_oak_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"dark_oak_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"dark_oak_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"dark_oak_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"dark_oak_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"dark_oak_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"dark_oak_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"dark_oak_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"dark_oak_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"dark_oak_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"dark_oak_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"dark_oak_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"dark_oak_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"dark_oak_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"dark_oak_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"dark_oak_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"dark_oak_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"dark_oak_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"dark_oak_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"dark_oak_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"dark_oak_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"dark_oak_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"dark_oak_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"dark_oak_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"dark_oak_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"dark_oak_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"dark_oak_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"dark_oak_stairs","x":180,"y":180}]},"dark_oak_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"dark_oak_trapdoor_bottom"},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"dark_oak_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"dark_oak_trapdoor_top"},{"properties":{"facing":"east","half":"top","open":"true"},"model":"dark_oak_trapdoor_open","y":90},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"dark_oak_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"dark_oak_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"dark_oak_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"dark_oak_trapdoor_open"},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"dark_oak_trapdoor_bottom"},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"dark_oak_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"dark_oak_trapdoor_top"},{"properties":{"facing":"south","half":"top","open":"true"},"model":"dark_oak_trapdoor_open","y":180},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"dark_oak_trapdoor_bottom"},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"dark_oak_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"dark_oak_trapdoor_top"},{"properties":{"facing":"west","half":"top","open":"true"},"model":"dark_oak_trapdoor_open","y":270}]},"dark_oak_wall_sign":{"states":[{"properties":{},"model":"dark_oak_sign"}]},"dark_oak_wood":{"states":[{"properties":{"axis":"x"},"model":"dark_oak_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"dark_oak_wood"},{"properties":{"axis":"z"},"model":"dark_oak_wood","x":90}]},"dark_prismarine":{"states":[{"properties":{},"model":"dark_prismarine"}]},"dark_prismarine_slab":{"states":[{"properties":{"type":"bottom"},"model":"dark_prismarine_slab"},{"properties":{"type":"double"},"model":"dark_prismarine"},{"properties":{"type":"top"},"model":"dark_prismarine_slab_top"}]},"dark_prismarine_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"dark_prismarine_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"dark_prismarine_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"dark_prismarine_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"dark_prismarine_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"dark_prismarine_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"dark_prismarine_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"dark_prismarine_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"dark_prismarine_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"dark_prismarine_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"dark_prismarine_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"dark_prismarine_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"dark_prismarine_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"dark_prismarine_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"dark_prismarine_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"dark_prismarine_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"dark_prismarine_stairs","x":180,"y":180}]},"daylight_detector":{"states":[{"properties":{"inverted":"false"},"model":"daylight_detector"},{"properties":{"inverted":"true"},"model":"daylight_detector_inverted"}]},"dead_brain_coral":{"states":[{"properties":{},"model":"dead_brain_coral"}]},"dead_brain_coral_block":{"states":[{"properties":{},"model":"dead_brain_coral_block"}]},"dead_brain_coral_fan":{"states":[{"properties":{},"model":"dead_brain_coral_fan"}]},"dead_brain_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"dead_brain_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"dead_brain_coral_wall_fan"},{"properties":{"facing":"south"},"model":"dead_brain_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"dead_brain_coral_wall_fan","y":270}]},"dead_bubble_coral":{"states":[{"properties":{},"model":"dead_bubble_coral"}]},"dead_bubble_coral_block":{"states":[{"properties":{},"model":"dead_bubble_coral_block"}]},"dead_bubble_coral_fan":{"states":[{"properties":{},"model":"dead_bubble_coral_fan"}]},"dead_bubble_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"dead_bubble_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"dead_bubble_coral_wall_fan"},{"properties":{"facing":"south"},"model":"dead_bubble_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"dead_bubble_coral_wall_fan","y":270}]},"dead_bush":{"states":[{"properties":{},"model":"dead_bush"}]},"dead_fire_coral":{"states":[{"properties":{},"model":"dead_fire_coral"}]},"dead_fire_coral_block":{"states":[{"properties":{},"model":"dead_fire_coral_block"}]},"dead_fire_coral_fan":{"states":[{"properties":{},"model":"dead_fire_coral_fan"}]},"dead_fire_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"dead_fire_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"dead_fire_coral_wall_fan"},{"properties":{"facing":"south"},"model":"dead_fire_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"dead_fire_coral_wall_fan","y":270}]},"dead_horn_coral":{"states":[{"properties":{},"model":"dead_horn_coral"}]},"dead_horn_coral_block":{"states":[{"properties":{},"model":"dead_horn_coral_block"}]},"dead_horn_coral_fan":{"states":[{"properties":{},"model":"dead_horn_coral_fan"}]},"dead_horn_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"dead_horn_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"dead_horn_coral_wall_fan"},{"properties":{"facing":"south"},"model":"dead_horn_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"dead_horn_coral_wall_fan","y":270}]},"dead_tube_coral":{"states":[{"properties":{},"model":"dead_tube_coral"}]},"dead_tube_coral_block":{"states":[{"properties":{},"model":"dead_tube_coral_block"}]},"dead_tube_coral_fan":{"states":[{"properties":{},"model":"dead_tube_coral_fan"}]},"dead_tube_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"dead_tube_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"dead_tube_coral_wall_fan"},{"properties":{"facing":"south"},"model":"dead_tube_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"dead_tube_coral_wall_fan","y":270}]},"detector_rail":{"states":[{"properties":{"powered":"false","shape":"ascending_east"},"model":"detector_rail_raised_ne","y":90},{"properties":{"powered":"false","shape":"ascending_north"},"model":"detector_rail_raised_ne"},{"properties":{"powered":"false","shape":"ascending_south"},"model":"detector_rail_raised_sw"},{"properties":{"powered":"false","shape":"ascending_west"},"model":"detector_rail_raised_sw","y":90},{"properties":{"powered":"false","shape":"east_west"},"model":"detector_rail","y":90},{"properties":{"powered":"false","shape":"north_south"},"model":"detector_rail"},{"properties":{"powered":"true","shape":"ascending_east"},"model":"detector_rail_on_raised_ne","y":90},{"properties":{"powered":"true","shape":"ascending_north"},"model":"detector_rail_on_raised_ne"},{"properties":{"powered":"true","shape":"ascending_south"},"model":"detector_rail_on_raised_sw"},{"properties":{"powered":"true","shape":"ascending_west"},"model":"detector_rail_on_raised_sw","y":90},{"properties":{"powered":"true","shape":"east_west"},"model":"detector_rail_on","y":90},{"properties":{"powered":"true","shape":"north_south"},"model":"detector_rail_on"}]},"diamond_block":{"states":[{"properties":{},"model":"diamond_block"}]},"diamond_ore":{"states":[{"properties":{},"model":"diamond_ore"}]},"diorite":{"states":[{"properties":{},"model":"diorite"}]},"diorite_slab":{"states":[{"properties":{"type":"bottom"},"model":"diorite_slab"},{"properties":{"type":"double"},"model":"diorite"},{"properties":{"type":"top"},"model":"diorite_slab_top"}]},"diorite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"diorite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"diorite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"diorite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"diorite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"diorite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"diorite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"diorite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"diorite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"diorite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"diorite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"diorite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"diorite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"diorite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"diorite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"diorite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"diorite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"diorite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"diorite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"diorite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"diorite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"diorite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"diorite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"diorite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"diorite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"diorite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"diorite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"diorite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"diorite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"diorite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"diorite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"diorite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"diorite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"diorite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"diorite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"diorite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"diorite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"diorite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"diorite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"diorite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"diorite_stairs","x":180,"y":180}]},"diorite_wall":{"conditional":[{"properties":{"up":"true"},"model":"diorite_wall_post"},{"properties":{"north":"low"},"model":"diorite_wall_side"},{"properties":{"east":"low"},"model":"diorite_wall_side","y":90},{"properties":{"south":"low"},"model":"diorite_wall_side","y":180},{"properties":{"west":"low"},"model":"diorite_wall_side","y":270},{"properties":{"north":"tall"},"model":"diorite_wall_side_tall"},{"properties":{"east":"tall"},"model":"diorite_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"diorite_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"diorite_wall_side_tall","y":270}]},"dirt":{"states":[{"properties":{},"model":"dirt"}]},"dirt_path":{"states":[{"properties":{},"model":"dirt_path"}]},"dispenser":{"states":[{"properties":{"facing":"down"},"model":"dispenser_vertical","x":180},{"properties":{"facing":"east"},"model":"dispenser","y":90},{"properties":{"facing":"north"},"model":"dispenser"},{"properties":{"facing":"south"},"model":"dispenser","y":180},{"properties":{"facing":"up"},"model":"dispenser_vertical"},{"properties":{"facing":"west"},"model":"dispenser","y":270}]},"dragon_egg":{"states":[{"properties":{},"model":"dragon_egg"}]},"dragon_head":{"states":[{"properties":{},"model":"skull"}]},"dragon_wall_head":{"states":[{"properties":{},"model":"skull"}]},"dried_kelp_block":{"states":[{"properties":{},"model":"dried_kelp_block"}]},"dropper":{"states":[{"properties":{"facing":"down"},"model":"dropper_vertical","x":180},{"properties":{"facing":"east"},"model":"dropper","y":90},{"properties":{"facing":"north"},"model":"dropper"},{"properties":{"facing":"south"},"model":"dropper","y":180},{"properties":{"facing":"up"},"model":"dropper_vertical"},{"properties":{"facing":"west"},"model":"dropper","y":270}]},"emerald_block":{"states":[{"properties":{},"model":"emerald_block"}]},"emerald_ore":{"states":[{"properties":{},"model":"emerald_ore"}]},"enchanting_table":{"states":[{"properties":{},"model":"enchanting_table"}]},"ender_chest":{"states":[{"properties":{},"model":"ender_chest"}]},"end_gateway":{"states":[{"properties":{},"model":"end_portal"}]},"end_portal":{"states":[{"properties":{},"model":"end_portal"}]},"end_portal_frame":{"states":[{"properties":{"eye":"false","facing":"east"},"model":"end_portal_frame","y":270},{"properties":{"eye":"false","facing":"north"},"model":"end_portal_frame","y":180},{"properties":{"eye":"false","facing":"south"},"model":"end_portal_frame"},{"properties":{"eye":"false","facing":"west"},"model":"end_portal_frame","y":90},{"properties":{"eye":"true","facing":"east"},"model":"end_portal_frame_filled","y":270},{"properties":{"eye":"true","facing":"north"},"model":"end_portal_frame_filled","y":180},{"properties":{"eye":"true","facing":"south"},"model":"end_portal_frame_filled"},{"properties":{"eye":"true","facing":"west"},"model":"end_portal_frame_filled","y":90}]},"end_rod":{"states":[{"properties":{"facing":"down"},"model":"end_rod","x":180},{"properties":{"facing":"east"},"model":"end_rod","x":90,"y":90},{"properties":{"facing":"north"},"model":"end_rod","x":90},{"properties":{"facing":"south"},"model":"end_rod","x":90,"y":180},{"properties":{"facing":"up"},"model":"end_rod"},{"properties":{"facing":"west"},"model":"end_rod","x":90,"y":270}]},"end_stone":{"states":[{"properties":{},"model":"end_stone"}]},"end_stone_bricks":{"states":[{"properties":{},"model":"end_stone_bricks"}]},"end_stone_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"end_stone_brick_slab"},{"properties":{"type":"double"},"model":"end_stone_bricks"},{"properties":{"type":"top"},"model":"end_stone_brick_slab_top"}]},"end_stone_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"end_stone_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"end_stone_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"end_stone_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"end_stone_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"end_stone_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"end_stone_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"end_stone_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"end_stone_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"end_stone_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"end_stone_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"end_stone_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"end_stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"end_stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"end_stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"end_stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"end_stone_brick_stairs","x":180,"y":180}]},"end_stone_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"end_stone_brick_wall_post"},{"properties":{"north":"low"},"model":"end_stone_brick_wall_side"},{"properties":{"east":"low"},"model":"end_stone_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"end_stone_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"end_stone_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"end_stone_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"end_stone_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"end_stone_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"end_stone_brick_wall_side_tall","y":270}]},"farmland":{"states":[{"properties":{"moisture":"0"},"model":"farmland"},{"properties":{"moisture":"1"},"model":"farmland"},{"properties":{"moisture":"2"},"model":"farmland"},{"properties":{"moisture":"3"},"model":"farmland"},{"properties":{"moisture":"4"},"model":"farmland"},{"properties":{"moisture":"5"},"model":"farmland"},{"properties":{"moisture":"6"},"model":"farmland"},{"properties":{"moisture":"7"},"model":"farmland_moist"}]},"fern":{"states":[{"properties":{},"model":"fern"}]},"fire":{"conditional":[{"properties":{"up":"false","west":"false","east":"false","south":"false","north":"false"},"model":"fire_floor0"},{"properties":{"north":"true"},"model":"fire_side0"},{"properties":{"up":"false","west":"false","east":"false","south":"false","north":"false"},"model":"fire_side0"},{"properties":{"east":"true"},"model":"fire_side0","y":90},{"properties":{"up":"false","west":"false","east":"false","south":"false","north":"false"},"model":"fire_side0","y":90},{"properties":{"south":"true"},"model":"fire_side0","y":180},{"properties":{"up":"false","west":"false","east":"false","south":"false","north":"false"},"model":"fire_side0","y":180},{"properties":{"west":"true"},"model":"fire_side0","y":270},{"properties":{"up":"false","west":"false","east":"false","south":"false","north":"false"},"model":"fire_side0","y":270},{"properties":{"up":"true"},"model":"fire_up0"}]},"fire_coral":{"states":[{"properties":{},"model":"fire_coral"}]},"fire_coral_block":{"states":[{"properties":{},"model":"fire_coral_block"}]},"fire_coral_fan":{"states":[{"properties":{},"model":"fire_coral_fan"}]},"fire_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"fire_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"fire_coral_wall_fan"},{"properties":{"facing":"south"},"model":"fire_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"fire_coral_wall_fan","y":270}]},"fletching_table":{"states":[{"properties":{},"model":"fletching_table"}]},"flower_pot":{"states":[{"properties":{},"model":"flower_pot"}]},"frosted_ice":{"states":[{"properties":{"age":"0"},"model":"frosted_ice_0"},{"properties":{"age":"1"},"model":"frosted_ice_1"},{"properties":{"age":"2"},"model":"frosted_ice_2"},{"properties":{"age":"3"},"model":"frosted_ice_3"}]},"furnace":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"furnace","y":90},{"properties":{"facing":"east","lit":"true"},"model":"furnace_on","y":90},{"properties":{"facing":"north","lit":"false"},"model":"furnace"},{"properties":{"facing":"north","lit":"true"},"model":"furnace_on"},{"properties":{"facing":"south","lit":"false"},"model":"furnace","y":180},{"properties":{"facing":"south","lit":"true"},"model":"furnace_on","y":180},{"properties":{"facing":"west","lit":"false"},"model":"furnace","y":270},{"properties":{"facing":"west","lit":"true"},"model":"furnace_on","y":270}]},"gilded_blackstone":{"states":[{"properties":{},"model":"gilded_blackstone"}]},"glass":{"states":[{"properties":{},"model":"glass"}]},"glass_pane":{"conditional":[{"model":"glass_pane_post"},{"properties":{"north":"true"},"model":"glass_pane_side"},{"properties":{"east":"true"},"model":"glass_pane_side","y":90},{"properties":{"south":"true"},"model":"glass_pane_side_alt"},{"properties":{"west":"true"},"model":"glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"glass_pane_noside"},{"properties":{"east":"false"},"model":"glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"glass_pane_noside","y":270}]},"glowstone":{"states":[{"properties":{},"model":"glowstone"}]},"gold_block":{"states":[{"properties":{},"model":"gold_block"}]},"gold_ore":{"states":[{"properties":{},"model":"gold_ore"}]},"granite":{"states":[{"properties":{},"model":"granite"}]},"granite_slab":{"states":[{"properties":{"type":"bottom"},"model":"granite_slab"},{"properties":{"type":"double"},"model":"granite"},{"properties":{"type":"top"},"model":"granite_slab_top"}]},"granite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"granite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"granite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"granite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"granite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"granite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"granite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"granite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"granite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"granite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"granite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"granite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"granite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"granite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"granite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"granite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"granite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"granite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"granite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"granite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"granite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"granite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"granite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"granite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"granite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"granite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"granite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"granite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"granite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"granite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"granite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"granite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"granite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"granite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"granite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"granite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"granite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"granite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"granite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"granite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"granite_stairs","x":180,"y":180}]},"granite_wall":{"conditional":[{"properties":{"up":"true"},"model":"granite_wall_post"},{"properties":{"north":"low"},"model":"granite_wall_side"},{"properties":{"east":"low"},"model":"granite_wall_side","y":90},{"properties":{"south":"low"},"model":"granite_wall_side","y":180},{"properties":{"west":"low"},"model":"granite_wall_side","y":270},{"properties":{"north":"tall"},"model":"granite_wall_side_tall"},{"properties":{"east":"tall"},"model":"granite_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"granite_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"granite_wall_side_tall","y":270}]},"grass":{"states":[{"properties":{},"model":"grass"}]},"grass_block":{"states":[{"properties":{"snowy":"false"},"model":"grass_block"},{"properties":{"snowy":"true"},"model":"grass_block_snow"}]},"gravel":{"states":[{"properties":{},"model":"gravel"}]},"gray_banner":{"states":[{"properties":{},"model":"banner"}]},"gray_bed":{"states":[{"properties":{},"model":"bed"}]},"gray_candle":{"states":[{"properties":{"candles":"1"},"model":"gray_candle_one_candle"},{"properties":{"candles":"2"},"model":"gray_candle_two_candles"},{"properties":{"candles":"3"},"model":"gray_candle_three_candles"},{"properties":{"candles":"4"},"model":"gray_candle_four_candles"}]},"gray_candle_cake":{"states":[{"properties":{},"model":"gray_candle_cake"}]},"gray_carpet":{"states":[{"properties":{},"model":"gray_carpet"}]},"gray_concrete":{"states":[{"properties":{},"model":"gray_concrete"}]},"gray_concrete_powder":{"states":[{"properties":{},"model":"gray_concrete_powder"}]},"gray_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"gray_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"gray_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"gray_glazed_terracotta"},{"properties":{"facing":"west"},"model":"gray_glazed_terracotta","y":90}]},"gray_shulker_box":{"states":[{"properties":{},"model":"gray_shulker_box"}]},"gray_stained_glass":{"states":[{"properties":{},"model":"gray_stained_glass"}]},"gray_stained_glass_pane":{"conditional":[{"model":"gray_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"gray_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"gray_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"gray_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"gray_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"gray_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"gray_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"gray_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"gray_stained_glass_pane_noside","y":270}]},"gray_terracotta":{"states":[{"properties":{},"model":"gray_terracotta"}]},"gray_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"gray_wool":{"states":[{"properties":{},"model":"gray_wool"}]},"green_banner":{"states":[{"properties":{},"model":"banner"}]},"green_bed":{"states":[{"properties":{},"model":"bed"}]},"green_candle":{"states":[{"properties":{"candles":"1"},"model":"green_candle_one_candle"},{"properties":{"candles":"2"},"model":"green_candle_two_candles"},{"properties":{"candles":"3"},"model":"green_candle_three_candles"},{"properties":{"candles":"4"},"model":"green_candle_four_candles"}]},"green_candle_cake":{"states":[{"properties":{},"model":"green_candle_cake"}]},"green_carpet":{"states":[{"properties":{},"model":"green_carpet"}]},"green_concrete":{"states":[{"properties":{},"model":"green_concrete"}]},"green_concrete_powder":{"states":[{"properties":{},"model":"green_concrete_powder"}]},"green_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"green_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"green_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"green_glazed_terracotta"},{"properties":{"facing":"west"},"model":"green_glazed_terracotta","y":90}]},"green_shulker_box":{"states":[{"properties":{},"model":"green_shulker_box"}]},"green_stained_glass":{"states":[{"properties":{},"model":"green_stained_glass"}]},"green_stained_glass_pane":{"conditional":[{"model":"green_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"green_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"green_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"green_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"green_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"green_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"green_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"green_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"green_stained_glass_pane_noside","y":270}]},"green_terracotta":{"states":[{"properties":{},"model":"green_terracotta"}]},"green_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"green_wool":{"states":[{"properties":{},"model":"green_wool"}]},"grindstone":{"states":[{"properties":{"face":"ceiling","facing":"east"},"model":"grindstone","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north"},"model":"grindstone","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south"},"model":"grindstone","x":180},{"properties":{"face":"ceiling","facing":"west"},"model":"grindstone","x":180,"y":90},{"properties":{"face":"floor","facing":"east"},"model":"grindstone","y":90},{"properties":{"face":"floor","facing":"north"},"model":"grindstone"},{"properties":{"face":"floor","facing":"south"},"model":"grindstone","y":180},{"properties":{"face":"floor","facing":"west"},"model":"grindstone","y":270},{"properties":{"face":"wall","facing":"east"},"model":"grindstone","x":90,"y":90},{"properties":{"face":"wall","facing":"north"},"model":"grindstone","x":90},{"properties":{"face":"wall","facing":"south"},"model":"grindstone","x":90,"y":180},{"properties":{"face":"wall","facing":"west"},"model":"grindstone","x":90,"y":270}]},"hay_block":{"states":[{"properties":{"axis":"x"},"model":"hay_block_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"hay_block"},{"properties":{"axis":"z"},"model":"hay_block_horizontal","x":90}]},"heavy_weighted_pressure_plate":{"states":[{"properties":{"power":"0"},"model":"heavy_weighted_pressure_plate"},{"properties":{"power":"1"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"10"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"11"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"12"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"13"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"14"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"15"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"2"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"3"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"4"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"5"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"6"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"7"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"8"},"model":"heavy_weighted_pressure_plate_down"},{"properties":{"power":"9"},"model":"heavy_weighted_pressure_plate_down"}]},"honeycomb_block":{"states":[{"properties":{},"model":"honeycomb_block"}]},"honey_block":{"states":[{"properties":{},"model":"honey_block"}]},"hopper":{"states":[{"properties":{"facing":"down"},"model":"hopper"},{"properties":{"facing":"east"},"model":"hopper_side","y":90},{"properties":{"facing":"north"},"model":"hopper_side"},{"properties":{"facing":"south"},"model":"hopper_side","y":180},{"properties":{"facing":"west"},"model":"hopper_side","y":270}]},"horn_coral":{"states":[{"properties":{},"model":"horn_coral"}]},"horn_coral_block":{"states":[{"properties":{},"model":"horn_coral_block"}]},"horn_coral_fan":{"states":[{"properties":{},"model":"horn_coral_fan"}]},"horn_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"horn_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"horn_coral_wall_fan"},{"properties":{"facing":"south"},"model":"horn_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"horn_coral_wall_fan","y":270}]},"ice":{"states":[{"properties":{},"model":"ice"}]},"infested_chiseled_stone_bricks":{"states":[{"properties":{},"model":"chiseled_stone_bricks"}]},"infested_cobblestone":{"states":[{"properties":{},"model":"cobblestone"}]},"infested_cracked_stone_bricks":{"states":[{"properties":{},"model":"cracked_stone_bricks"}]},"infested_mossy_stone_bricks":{"states":[{"properties":{},"model":"mossy_stone_bricks"}]},"infested_stone":{"states":[{"properties":{},"model":"stone"}]},"infested_stone_bricks":{"states":[{"properties":{},"model":"stone_bricks"}]},"iron_bars":{"conditional":[{"model":"iron_bars_post_ends"},{"properties":{"west":"false","east":"false","south":"false","north":"false"},"model":"iron_bars_post"},{"properties":{"west":"false","east":"false","south":"false","north":"true"},"model":"iron_bars_cap"},{"properties":{"west":"false","east":"true","south":"false","north":"false"},"model":"iron_bars_cap","y":90},{"properties":{"west":"false","east":"false","south":"true","north":"false"},"model":"iron_bars_cap_alt"},{"properties":{"west":"true","east":"false","south":"false","north":"false"},"model":"iron_bars_cap_alt","y":90},{"properties":{"north":"true"},"model":"iron_bars_side"},{"properties":{"east":"true"},"model":"iron_bars_side","y":90},{"properties":{"south":"true"},"model":"iron_bars_side_alt"},{"properties":{"west":"true"},"model":"iron_bars_side_alt","y":90}]},"iron_block":{"states":[{"properties":{},"model":"iron_block"}]},"iron_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"iron_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"iron_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"iron_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"iron_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"iron_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"iron_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"iron_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"iron_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"iron_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"iron_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"iron_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"iron_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"iron_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"iron_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"iron_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"iron_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"iron_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"iron_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"iron_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"iron_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"iron_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"iron_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"iron_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"iron_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"iron_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"iron_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"iron_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"iron_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"iron_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"iron_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"iron_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"iron_door_top","y":90}]},"iron_ore":{"states":[{"properties":{},"model":"iron_ore"}]},"iron_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"iron_trapdoor_bottom"},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"iron_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"iron_trapdoor_top"},{"properties":{"facing":"east","half":"top","open":"true"},"model":"iron_trapdoor_open","y":90},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"iron_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"iron_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"iron_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"iron_trapdoor_open"},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"iron_trapdoor_bottom"},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"iron_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"iron_trapdoor_top"},{"properties":{"facing":"south","half":"top","open":"true"},"model":"iron_trapdoor_open","y":180},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"iron_trapdoor_bottom"},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"iron_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"iron_trapdoor_top"},{"properties":{"facing":"west","half":"top","open":"true"},"model":"iron_trapdoor_open","y":270}]},"item_frame":{"states":[{"properties":{"map":"false"},"model":"item_frame"},{"properties":{"map":"true"},"model":"item_frame_map"}]},"jack_o_lantern":{"states":[{"properties":{"facing":"east"},"model":"jack_o_lantern","y":90},{"properties":{"facing":"north"},"model":"jack_o_lantern"},{"properties":{"facing":"south"},"model":"jack_o_lantern","y":180},{"properties":{"facing":"west"},"model":"jack_o_lantern","y":270}]},"jigsaw":{"states":[{"properties":{"orientation":"down_east"},"model":"jigsaw","x":90,"y":90},{"properties":{"orientation":"down_north"},"model":"jigsaw","x":90},{"properties":{"orientation":"down_south"},"model":"jigsaw","x":90,"y":180},{"properties":{"orientation":"down_west"},"model":"jigsaw","x":90,"y":270},{"properties":{"orientation":"east_up"},"model":"jigsaw","y":90},{"properties":{"orientation":"north_up"},"model":"jigsaw"},{"properties":{"orientation":"south_up"},"model":"jigsaw","y":180},{"properties":{"orientation":"up_east"},"model":"jigsaw","x":270,"y":270},{"properties":{"orientation":"up_north"},"model":"jigsaw","x":270,"y":180},{"properties":{"orientation":"up_south"},"model":"jigsaw","x":270},{"properties":{"orientation":"up_west"},"model":"jigsaw","x":270,"y":90},{"properties":{"orientation":"west_up"},"model":"jigsaw","y":270}]},"jukebox":{"states":[{"properties":{},"model":"jukebox"}]},"jungle_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"jungle_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"jungle_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"jungle_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"jungle_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"jungle_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"jungle_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"jungle_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"jungle_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"jungle_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"jungle_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"jungle_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"jungle_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"jungle_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"jungle_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"jungle_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"jungle_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"jungle_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"jungle_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"jungle_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"jungle_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"jungle_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"jungle_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"jungle_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"jungle_button_pressed","x":90,"y":270}]},"jungle_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"jungle_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"jungle_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"jungle_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"jungle_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"jungle_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"jungle_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"jungle_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"jungle_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"jungle_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"jungle_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"jungle_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"jungle_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"jungle_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"jungle_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"jungle_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"jungle_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"jungle_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"jungle_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"jungle_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"jungle_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"jungle_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"jungle_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"jungle_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"jungle_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"jungle_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"jungle_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"jungle_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"jungle_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"jungle_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"jungle_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"jungle_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"jungle_door_top","y":90}]},"jungle_fence":{"conditional":[{"model":"jungle_fence_post"},{"properties":{"north":"true"},"model":"jungle_fence_side"},{"properties":{"east":"true"},"model":"jungle_fence_side","y":90},{"properties":{"south":"true"},"model":"jungle_fence_side","y":180},{"properties":{"west":"true"},"model":"jungle_fence_side","y":270}]},"jungle_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"jungle_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"jungle_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"jungle_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"jungle_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"jungle_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"jungle_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"jungle_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"jungle_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"jungle_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"jungle_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"jungle_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"jungle_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"jungle_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"jungle_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"jungle_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"jungle_fence_gate_wall_open","y":90}]},"jungle_leaves":{"states":[{"properties":{},"model":"jungle_leaves"}]},"jungle_log":{"states":[{"properties":{"axis":"x"},"model":"jungle_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"jungle_log"},{"properties":{"axis":"z"},"model":"jungle_log_horizontal","x":90}]},"jungle_planks":{"states":[{"properties":{},"model":"jungle_planks"}]},"jungle_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"jungle_pressure_plate"},{"properties":{"powered":"true"},"model":"jungle_pressure_plate_down"}]},"jungle_sapling":{"states":[{"properties":{},"model":"jungle_sapling"}]},"jungle_sign":{"states":[{"properties":{},"model":"jungle_sign"}]},"jungle_slab":{"states":[{"properties":{"type":"bottom"},"model":"jungle_slab"},{"properties":{"type":"double"},"model":"jungle_planks"},{"properties":{"type":"top"},"model":"jungle_slab_top"}]},"jungle_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"jungle_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"jungle_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"jungle_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"jungle_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"jungle_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"jungle_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"jungle_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"jungle_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"jungle_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"jungle_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"jungle_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"jungle_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"jungle_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"jungle_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"jungle_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"jungle_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"jungle_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"jungle_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"jungle_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"jungle_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"jungle_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"jungle_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"jungle_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"jungle_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"jungle_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"jungle_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"jungle_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"jungle_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"jungle_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"jungle_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"jungle_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"jungle_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"jungle_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"jungle_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"jungle_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"jungle_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"jungle_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"jungle_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"jungle_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"jungle_stairs","x":180,"y":180}]},"jungle_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"jungle_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"jungle_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"jungle_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"jungle_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"jungle_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"jungle_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"jungle_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"jungle_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"jungle_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"jungle_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"jungle_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"jungle_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"jungle_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"jungle_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"jungle_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"jungle_trapdoor_open","x":180,"y":90}]},"jungle_wall_sign":{"states":[{"properties":{},"model":"jungle_sign"}]},"jungle_wood":{"states":[{"properties":{"axis":"x"},"model":"jungle_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"jungle_wood"},{"properties":{"axis":"z"},"model":"jungle_wood","x":90}]},"kelp":{"states":[{"properties":{},"model":"kelp"}]},"kelp_plant":{"states":[{"properties":{},"model":"kelp_plant"}]},"ladder":{"states":[{"properties":{"facing":"east"},"model":"ladder","y":90},{"properties":{"facing":"north"},"model":"ladder"},{"properties":{"facing":"south"},"model":"ladder","y":180},{"properties":{"facing":"west"},"model":"ladder","y":270}]},"lantern":{"states":[{"properties":{"hanging":"false"},"model":"lantern"},{"properties":{"hanging":"true"},"model":"lantern_hanging"}]},"lapis_block":{"states":[{"properties":{},"model":"lapis_block"}]},"lapis_ore":{"states":[{"properties":{},"model":"lapis_ore"}]},"large_amethyst_bud":{"states":[{"properties":{"facing":"down"},"model":"large_amethyst_bud","x":180},{"properties":{"facing":"east"},"model":"large_amethyst_bud","x":90,"y":90},{"properties":{"facing":"north"},"model":"large_amethyst_bud","x":90},{"properties":{"facing":"south"},"model":"large_amethyst_bud","x":90,"y":180},{"properties":{"facing":"up"},"model":"large_amethyst_bud"},{"properties":{"facing":"west"},"model":"large_amethyst_bud","x":90,"y":270}]},"large_fern":{"states":[{"properties":{"half":"lower"},"model":"large_fern_bottom"},{"properties":{"half":"upper"},"model":"large_fern_top"}]},"lava":{"states":[{"properties":{},"model":"lava"}]},"lava_cauldron":{"states":[{"properties":{},"model":"lava_cauldron"}]},"lectern":{"states":[{"properties":{"facing":"east"},"model":"lectern","y":90},{"properties":{"facing":"north"},"model":"lectern"},{"properties":{"facing":"south"},"model":"lectern","y":180},{"properties":{"facing":"west"},"model":"lectern","y":270}]},"lever":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"lever_on","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"lever","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"lever_on","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"lever","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"lever_on","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"lever","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"lever_on","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"lever","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"lever_on","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"lever","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"lever_on"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"lever"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"lever_on","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"lever","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"lever_on","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"lever","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"lever_on","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"lever","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"lever_on","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"lever","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"lever_on","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"lever","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"lever_on","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"lever","x":90,"y":270}]},"lightly_weathered_copper_block":{"states":[{"properties":{},"model":"lightly_weathered_copper_block"}]},"lightly_weathered_cut_copper":{"states":[{"properties":{},"model":"lightly_weathered_cut_copper"}]},"lightly_weathered_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"lightly_weathered_cut_copper_slab"},{"properties":{"type":"double"},"model":"lightly_weathered_cut_copper"},{"properties":{"type":"top"},"model":"lightly_weathered_cut_copper_slab_top"}]},"lightly_weathered_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":180}]},"lightning_rod":{"states":[{"properties":{"facing":"down"},"model":"lightning_rod","x":180},{"properties":{"facing":"east"},"model":"lightning_rod","x":90,"y":90},{"properties":{"facing":"north"},"model":"lightning_rod","x":90},{"properties":{"facing":"south"},"model":"lightning_rod","x":90,"y":180},{"properties":{"facing":"up"},"model":"lightning_rod"},{"properties":{"facing":"west"},"model":"lightning_rod","x":90,"y":270}]},"light_blue_banner":{"states":[{"properties":{},"model":"banner"}]},"light_blue_bed":{"states":[{"properties":{},"model":"bed"}]},"light_blue_candle":{"states":[{"properties":{"candles":"1"},"model":"light_blue_candle_one_candle"},{"properties":{"candles":"2"},"model":"light_blue_candle_two_candles"},{"properties":{"candles":"3"},"model":"light_blue_candle_three_candles"},{"properties":{"candles":"4"},"model":"light_blue_candle_four_candles"}]},"light_blue_candle_cake":{"states":[{"properties":{},"model":"light_blue_candle_cake"}]},"light_blue_carpet":{"states":[{"properties":{},"model":"light_blue_carpet"}]},"light_blue_concrete":{"states":[{"properties":{},"model":"light_blue_concrete"}]},"light_blue_concrete_powder":{"states":[{"properties":{},"model":"light_blue_concrete_powder"}]},"light_blue_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"light_blue_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"light_blue_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"light_blue_glazed_terracotta"},{"properties":{"facing":"west"},"model":"light_blue_glazed_terracotta","y":90}]},"light_blue_shulker_box":{"states":[{"properties":{},"model":"light_blue_shulker_box"}]},"light_blue_stained_glass":{"states":[{"properties":{},"model":"light_blue_stained_glass"}]},"light_blue_stained_glass_pane":{"conditional":[{"model":"light_blue_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"light_blue_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"light_blue_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"light_blue_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"light_blue_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"light_blue_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"light_blue_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"light_blue_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"light_blue_stained_glass_pane_noside","y":270}]},"light_blue_terracotta":{"states":[{"properties":{},"model":"light_blue_terracotta"}]},"light_blue_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"light_blue_wool":{"states":[{"properties":{},"model":"light_blue_wool"}]},"light_gray_banner":{"states":[{"properties":{},"model":"banner"}]},"light_gray_bed":{"states":[{"properties":{},"model":"bed"}]},"light_gray_candle":{"states":[{"properties":{"candles":"1"},"model":"light_gray_candle_one_candle"},{"properties":{"candles":"2"},"model":"light_gray_candle_two_candles"},{"properties":{"candles":"3"},"model":"light_gray_candle_three_candles"},{"properties":{"candles":"4"},"model":"light_gray_candle_four_candles"}]},"light_gray_candle_cake":{"states":[{"properties":{},"model":"light_gray_candle_cake"}]},"light_gray_carpet":{"states":[{"properties":{},"model":"light_gray_carpet"}]},"light_gray_concrete":{"states":[{"properties":{},"model":"light_gray_concrete"}]},"light_gray_concrete_powder":{"states":[{"properties":{},"model":"light_gray_concrete_powder"}]},"light_gray_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"light_gray_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"light_gray_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"light_gray_glazed_terracotta"},{"properties":{"facing":"west"},"model":"light_gray_glazed_terracotta","y":90}]},"light_gray_shulker_box":{"states":[{"properties":{},"model":"light_gray_shulker_box"}]},"light_gray_stained_glass":{"states":[{"properties":{},"model":"light_gray_stained_glass"}]},"light_gray_stained_glass_pane":{"conditional":[{"model":"light_gray_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"light_gray_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"light_gray_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"light_gray_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"light_gray_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"light_gray_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"light_gray_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"light_gray_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"light_gray_stained_glass_pane_noside","y":270}]},"light_gray_terracotta":{"states":[{"properties":{},"model":"light_gray_terracotta"}]},"light_gray_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"light_gray_wool":{"states":[{"properties":{},"model":"light_gray_wool"}]},"light_weighted_pressure_plate":{"states":[{"properties":{"power":"0"},"model":"light_weighted_pressure_plate"},{"properties":{"power":"1"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"10"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"11"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"12"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"13"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"14"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"15"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"2"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"3"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"4"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"5"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"6"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"7"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"8"},"model":"light_weighted_pressure_plate_down"},{"properties":{"power":"9"},"model":"light_weighted_pressure_plate_down"}]},"lilac":{"states":[{"properties":{"half":"lower"},"model":"lilac_bottom"},{"properties":{"half":"upper"},"model":"lilac_top"}]},"lily_of_the_valley":{"states":[{"properties":{},"model":"lily_of_the_valley"}]},"lily_pad":{"states":[{"properties":{},"model":"lily_pad"}]},"lime_banner":{"states":[{"properties":{},"model":"banner"}]},"lime_bed":{"states":[{"properties":{},"model":"bed"}]},"lime_candle":{"states":[{"properties":{"candles":"1"},"model":"lime_candle_one_candle"},{"properties":{"candles":"2"},"model":"lime_candle_two_candles"},{"properties":{"candles":"3"},"model":"lime_candle_three_candles"},{"properties":{"candles":"4"},"model":"lime_candle_four_candles"}]},"lime_candle_cake":{"states":[{"properties":{},"model":"lime_candle_cake"}]},"lime_carpet":{"states":[{"properties":{},"model":"lime_carpet"}]},"lime_concrete":{"states":[{"properties":{},"model":"lime_concrete"}]},"lime_concrete_powder":{"states":[{"properties":{},"model":"lime_concrete_powder"}]},"lime_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"lime_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"lime_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"lime_glazed_terracotta"},{"properties":{"facing":"west"},"model":"lime_glazed_terracotta","y":90}]},"lime_shulker_box":{"states":[{"properties":{},"model":"lime_shulker_box"}]},"lime_stained_glass":{"states":[{"properties":{},"model":"lime_stained_glass"}]},"lime_stained_glass_pane":{"conditional":[{"model":"lime_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"lime_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"lime_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"lime_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"lime_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"lime_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"lime_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"lime_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"lime_stained_glass_pane_noside","y":270}]},"lime_terracotta":{"states":[{"properties":{},"model":"lime_terracotta"}]},"lime_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"lime_wool":{"states":[{"properties":{},"model":"lime_wool"}]},"lodestone":{"states":[{"properties":{},"model":"lodestone"}]},"loom":{"states":[{"properties":{"facing":"east"},"model":"loom","y":90},{"properties":{"facing":"north"},"model":"loom"},{"properties":{"facing":"south"},"model":"loom","y":180},{"properties":{"facing":"west"},"model":"loom","y":270}]},"magenta_banner":{"states":[{"properties":{},"model":"banner"}]},"magenta_bed":{"states":[{"properties":{},"model":"bed"}]},"magenta_candle":{"states":[{"properties":{"candles":"1"},"model":"magenta_candle_one_candle"},{"properties":{"candles":"2"},"model":"magenta_candle_two_candles"},{"properties":{"candles":"3"},"model":"magenta_candle_three_candles"},{"properties":{"candles":"4"},"model":"magenta_candle_four_candles"}]},"magenta_candle_cake":{"states":[{"properties":{},"model":"magenta_candle_cake"}]},"magenta_carpet":{"states":[{"properties":{},"model":"magenta_carpet"}]},"magenta_concrete":{"states":[{"properties":{},"model":"magenta_concrete"}]},"magenta_concrete_powder":{"states":[{"properties":{},"model":"magenta_concrete_powder"}]},"magenta_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"magenta_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"magenta_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"magenta_glazed_terracotta"},{"properties":{"facing":"west"},"model":"magenta_glazed_terracotta","y":90}]},"magenta_shulker_box":{"states":[{"properties":{},"model":"magenta_shulker_box"}]},"magenta_stained_glass":{"states":[{"properties":{},"model":"magenta_stained_glass"}]},"magenta_stained_glass_pane":{"conditional":[{"model":"magenta_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"magenta_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"magenta_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"magenta_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"magenta_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"magenta_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"magenta_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"magenta_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"magenta_stained_glass_pane_noside","y":270}]},"magenta_terracotta":{"states":[{"properties":{},"model":"magenta_terracotta"}]},"magenta_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"magenta_wool":{"states":[{"properties":{},"model":"magenta_wool"}]},"magma_block":{"states":[{"properties":{},"model":"magma_block"}]},"medium_amethyst_bud":{"states":[{"properties":{"facing":"down"},"model":"medium_amethyst_bud","x":180},{"properties":{"facing":"east"},"model":"medium_amethyst_bud","x":90,"y":90},{"properties":{"facing":"north"},"model":"medium_amethyst_bud","x":90},{"properties":{"facing":"south"},"model":"medium_amethyst_bud","x":90,"y":180},{"properties":{"facing":"up"},"model":"medium_amethyst_bud"},{"properties":{"facing":"west"},"model":"medium_amethyst_bud","x":90,"y":270}]},"melon":{"states":[{"properties":{},"model":"melon"}]},"melon_stem":{"states":[{"properties":{"age":"0"},"model":"melon_stem_stage0"},{"properties":{"age":"1"},"model":"melon_stem_stage1"},{"properties":{"age":"2"},"model":"melon_stem_stage2"},{"properties":{"age":"3"},"model":"melon_stem_stage3"},{"properties":{"age":"4"},"model":"melon_stem_stage4"},{"properties":{"age":"5"},"model":"melon_stem_stage5"},{"properties":{"age":"6"},"model":"melon_stem_stage6"},{"properties":{"age":"7"},"model":"melon_stem_stage7"}]},"mossy_cobblestone":{"states":[{"properties":{},"model":"mossy_cobblestone"}]},"mossy_cobblestone_slab":{"states":[{"properties":{"type":"bottom"},"model":"mossy_cobblestone_slab"},{"properties":{"type":"double"},"model":"mossy_cobblestone"},{"properties":{"type":"top"},"model":"mossy_cobblestone_slab_top"}]},"mossy_cobblestone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"mossy_cobblestone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"mossy_cobblestone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"mossy_cobblestone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"mossy_cobblestone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"mossy_cobblestone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"mossy_cobblestone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"mossy_cobblestone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"mossy_cobblestone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"mossy_cobblestone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"mossy_cobblestone_stairs","x":180,"y":180}]},"mossy_cobblestone_wall":{"conditional":[{"properties":{"up":"true"},"model":"mossy_cobblestone_wall_post"},{"properties":{"north":"low"},"model":"mossy_cobblestone_wall_side"},{"properties":{"east":"low"},"model":"mossy_cobblestone_wall_side","y":90},{"properties":{"south":"low"},"model":"mossy_cobblestone_wall_side","y":180},{"properties":{"west":"low"},"model":"mossy_cobblestone_wall_side","y":270},{"properties":{"north":"tall"},"model":"mossy_cobblestone_wall_side_tall"},{"properties":{"east":"tall"},"model":"mossy_cobblestone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"mossy_cobblestone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"mossy_cobblestone_wall_side_tall","y":270}]},"mossy_stone_bricks":{"states":[{"properties":{},"model":"mossy_stone_bricks"}]},"mossy_stone_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"mossy_stone_brick_slab"},{"properties":{"type":"double"},"model":"mossy_stone_bricks"},{"properties":{"type":"top"},"model":"mossy_stone_brick_slab_top"}]},"mossy_stone_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"mossy_stone_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"mossy_stone_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"mossy_stone_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"mossy_stone_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"mossy_stone_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"mossy_stone_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"mossy_stone_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"mossy_stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"mossy_stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"mossy_stone_brick_stairs","x":180,"y":180}]},"mossy_stone_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"mossy_stone_brick_wall_post"},{"properties":{"north":"low"},"model":"mossy_stone_brick_wall_side"},{"properties":{"east":"low"},"model":"mossy_stone_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"mossy_stone_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"mossy_stone_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"mossy_stone_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"mossy_stone_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"mossy_stone_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"mossy_stone_brick_wall_side_tall","y":270}]},"moving_piston":{"states":[{"properties":{},"model":"moving_piston"}]},"mushroom_stem":{"conditional":[{"properties":{"north":"true"},"model":"mushroom_stem"},{"properties":{"east":"true"},"model":"mushroom_stem","y":90},{"properties":{"south":"true"},"model":"mushroom_stem","y":180},{"properties":{"west":"true"},"model":"mushroom_stem","y":270},{"properties":{"up":"true"},"model":"mushroom_stem","x":270},{"properties":{"down":"true"},"model":"mushroom_stem","x":90},{"properties":{"north":"false"},"model":"mushroom_block_inside"},{"properties":{"east":"false"},"model":"mushroom_block_inside","y":90},{"properties":{"south":"false"},"model":"mushroom_block_inside","y":180},{"properties":{"west":"false"},"model":"mushroom_block_inside","y":270},{"properties":{"up":"false"},"model":"mushroom_block_inside","x":270},{"properties":{"down":"false"},"model":"mushroom_block_inside","x":90}]},"mycelium":{"states":[{"properties":{"snowy":"false"},"model":"mycelium"},{"properties":{"snowy":"true"},"model":"grass_block_snow"}]},"netherite_block":{"states":[{"properties":{},"model":"netherite_block"}]},"netherrack":{"states":[{"properties":{},"model":"netherrack"}]},"nether_bricks":{"states":[{"properties":{},"model":"nether_bricks"}]},"nether_brick_fence":{"conditional":[{"model":"nether_brick_fence_post"},{"properties":{"north":"true"},"model":"nether_brick_fence_side"},{"properties":{"east":"true"},"model":"nether_brick_fence_side","y":90},{"properties":{"south":"true"},"model":"nether_brick_fence_side","y":180},{"properties":{"west":"true"},"model":"nether_brick_fence_side","y":270}]},"nether_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"nether_brick_slab"},{"properties":{"type":"double"},"model":"nether_bricks"},{"properties":{"type":"top"},"model":"nether_brick_slab_top"}]},"nether_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"nether_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"nether_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"nether_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"nether_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"nether_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"nether_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"nether_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"nether_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"nether_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"nether_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"nether_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"nether_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"nether_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"nether_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"nether_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"nether_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"nether_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"nether_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"nether_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"nether_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"nether_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"nether_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"nether_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"nether_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"nether_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"nether_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"nether_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"nether_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"nether_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"nether_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"nether_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"nether_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"nether_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"nether_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"nether_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"nether_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"nether_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"nether_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"nether_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"nether_brick_stairs","x":180,"y":180}]},"nether_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"nether_brick_wall_post"},{"properties":{"north":"low"},"model":"nether_brick_wall_side"},{"properties":{"east":"low"},"model":"nether_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"nether_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"nether_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"nether_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"nether_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"nether_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"nether_brick_wall_side_tall","y":270}]},"nether_gold_ore":{"states":[{"properties":{},"model":"nether_gold_ore"}]},"nether_portal":{"states":[{"properties":{"axis":"x"},"model":"nether_portal_ns"},{"properties":{"axis":"z"},"model":"nether_portal_ew"}]},"nether_quartz_ore":{"states":[{"properties":{},"model":"nether_quartz_ore"}]},"nether_sprouts":{"states":[{"properties":{},"model":"nether_sprouts"}]},"nether_wart":{"states":[{"properties":{"age":"0"},"model":"nether_wart_stage0"},{"properties":{"age":"1"},"model":"nether_wart_stage1"},{"properties":{"age":"2"},"model":"nether_wart_stage1"},{"properties":{"age":"3"},"model":"nether_wart_stage2"}]},"nether_wart_block":{"states":[{"properties":{},"model":"nether_wart_block"}]},"note_block":{"states":[{"properties":{},"model":"note_block"}]},"oak_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"oak_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"oak_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"oak_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"oak_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"oak_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"oak_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"oak_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"oak_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"oak_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"oak_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"oak_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"oak_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"oak_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"oak_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"oak_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"oak_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"oak_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"oak_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"oak_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"oak_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"oak_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"oak_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"oak_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"oak_button_pressed","x":90,"y":270}]},"oak_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"oak_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"oak_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"oak_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"oak_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"oak_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"oak_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"oak_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"oak_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"oak_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"oak_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"oak_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"oak_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"oak_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"oak_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"oak_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"oak_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"oak_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"oak_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"oak_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"oak_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"oak_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"oak_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"oak_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"oak_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"oak_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"oak_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"oak_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"oak_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"oak_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"oak_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"oak_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"oak_door_top","y":90}]},"oak_fence":{"conditional":[{"model":"oak_fence_post"},{"properties":{"north":"true"},"model":"oak_fence_side"},{"properties":{"east":"true"},"model":"oak_fence_side","y":90},{"properties":{"south":"true"},"model":"oak_fence_side","y":180},{"properties":{"west":"true"},"model":"oak_fence_side","y":270}]},"oak_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"oak_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"oak_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"oak_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"oak_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"oak_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"oak_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"oak_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"oak_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"oak_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"oak_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"oak_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"oak_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"oak_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"oak_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"oak_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"oak_fence_gate_wall_open","y":90}]},"oak_leaves":{"states":[{"properties":{},"model":"oak_leaves"}]},"oak_log":{"states":[{"properties":{"axis":"x"},"model":"oak_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"oak_log"},{"properties":{"axis":"z"},"model":"oak_log_horizontal","x":90}]},"oak_planks":{"states":[{"properties":{},"model":"oak_planks"}]},"oak_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"oak_pressure_plate"},{"properties":{"powered":"true"},"model":"oak_pressure_plate_down"}]},"oak_sapling":{"states":[{"properties":{},"model":"oak_sapling"}]},"oak_sign":{"states":[{"properties":{},"model":"oak_sign"}]},"oak_slab":{"states":[{"properties":{"type":"bottom"},"model":"oak_slab"},{"properties":{"type":"double"},"model":"oak_planks"},{"properties":{"type":"top"},"model":"oak_slab_top"}]},"oak_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"oak_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"oak_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"oak_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"oak_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"oak_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"oak_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"oak_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"oak_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"oak_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"oak_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"oak_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"oak_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"oak_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"oak_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"oak_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"oak_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"oak_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"oak_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"oak_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"oak_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"oak_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"oak_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"oak_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"oak_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"oak_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"oak_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"oak_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"oak_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"oak_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"oak_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"oak_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"oak_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"oak_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"oak_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"oak_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"oak_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"oak_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"oak_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"oak_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"oak_stairs","x":180,"y":180}]},"oak_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"oak_trapdoor_bottom"},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"oak_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"oak_trapdoor_top"},{"properties":{"facing":"east","half":"top","open":"true"},"model":"oak_trapdoor_open","y":90},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"oak_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"oak_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"oak_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"oak_trapdoor_open"},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"oak_trapdoor_bottom"},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"oak_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"oak_trapdoor_top"},{"properties":{"facing":"south","half":"top","open":"true"},"model":"oak_trapdoor_open","y":180},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"oak_trapdoor_bottom"},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"oak_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"oak_trapdoor_top"},{"properties":{"facing":"west","half":"top","open":"true"},"model":"oak_trapdoor_open","y":270}]},"oak_wall_sign":{"states":[{"properties":{},"model":"oak_sign"}]},"oak_wood":{"states":[{"properties":{"axis":"x"},"model":"oak_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"oak_wood"},{"properties":{"axis":"z"},"model":"oak_wood","x":90}]},"observer":{"states":[{"properties":{"facing":"down","powered":"false"},"model":"observer","x":90},{"properties":{"facing":"down","powered":"true"},"model":"observer_on","x":90},{"properties":{"facing":"east","powered":"false"},"model":"observer","y":90},{"properties":{"facing":"east","powered":"true"},"model":"observer_on","y":90},{"properties":{"facing":"north","powered":"false"},"model":"observer"},{"properties":{"facing":"north","powered":"true"},"model":"observer_on"},{"properties":{"facing":"south","powered":"false"},"model":"observer","y":180},{"properties":{"facing":"south","powered":"true"},"model":"observer_on","y":180},{"properties":{"facing":"up","powered":"false"},"model":"observer","x":270},{"properties":{"facing":"up","powered":"true"},"model":"observer_on","x":270},{"properties":{"facing":"west","powered":"false"},"model":"observer","y":270},{"properties":{"facing":"west","powered":"true"},"model":"observer_on","y":270}]},"obsidian":{"states":[{"properties":{},"model":"obsidian"}]},"orange_banner":{"states":[{"properties":{},"model":"banner"}]},"orange_bed":{"states":[{"properties":{},"model":"bed"}]},"orange_candle":{"states":[{"properties":{"candles":"1"},"model":"orange_candle_one_candle"},{"properties":{"candles":"2"},"model":"orange_candle_two_candles"},{"properties":{"candles":"3"},"model":"orange_candle_three_candles"},{"properties":{"candles":"4"},"model":"orange_candle_four_candles"}]},"orange_candle_cake":{"states":[{"properties":{},"model":"orange_candle_cake"}]},"orange_carpet":{"states":[{"properties":{},"model":"orange_carpet"}]},"orange_concrete":{"states":[{"properties":{},"model":"orange_concrete"}]},"orange_concrete_powder":{"states":[{"properties":{},"model":"orange_concrete_powder"}]},"orange_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"orange_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"orange_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"orange_glazed_terracotta"},{"properties":{"facing":"west"},"model":"orange_glazed_terracotta","y":90}]},"orange_shulker_box":{"states":[{"properties":{},"model":"orange_shulker_box"}]},"orange_stained_glass":{"states":[{"properties":{},"model":"orange_stained_glass"}]},"orange_stained_glass_pane":{"conditional":[{"model":"orange_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"orange_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"orange_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"orange_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"orange_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"orange_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"orange_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"orange_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"orange_stained_glass_pane_noside","y":270}]},"orange_terracotta":{"states":[{"properties":{},"model":"orange_terracotta"}]},"orange_tulip":{"states":[{"properties":{},"model":"orange_tulip"}]},"orange_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"orange_wool":{"states":[{"properties":{},"model":"orange_wool"}]},"oxeye_daisy":{"states":[{"properties":{},"model":"oxeye_daisy"}]},"packed_ice":{"states":[{"properties":{},"model":"packed_ice"}]},"peony":{"states":[{"properties":{"half":"lower"},"model":"peony_bottom"},{"properties":{"half":"upper"},"model":"peony_top"}]},"petrified_oak_slab":{"states":[{"properties":{"type":"bottom"},"model":"petrified_oak_slab"},{"properties":{"type":"double"},"model":"oak_planks"},{"properties":{"type":"top"},"model":"petrified_oak_slab_top"}]},"pink_banner":{"states":[{"properties":{},"model":"banner"}]},"pink_bed":{"states":[{"properties":{},"model":"bed"}]},"pink_candle":{"states":[{"properties":{"candles":"1"},"model":"pink_candle_one_candle"},{"properties":{"candles":"2"},"model":"pink_candle_two_candles"},{"properties":{"candles":"3"},"model":"pink_candle_three_candles"},{"properties":{"candles":"4"},"model":"pink_candle_four_candles"}]},"pink_candle_cake":{"states":[{"properties":{},"model":"pink_candle_cake"}]},"pink_carpet":{"states":[{"properties":{},"model":"pink_carpet"}]},"pink_concrete":{"states":[{"properties":{},"model":"pink_concrete"}]},"pink_concrete_powder":{"states":[{"properties":{},"model":"pink_concrete_powder"}]},"pink_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"pink_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"pink_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"pink_glazed_terracotta"},{"properties":{"facing":"west"},"model":"pink_glazed_terracotta","y":90}]},"pink_shulker_box":{"states":[{"properties":{},"model":"pink_shulker_box"}]},"pink_stained_glass":{"states":[{"properties":{},"model":"pink_stained_glass"}]},"pink_stained_glass_pane":{"conditional":[{"model":"pink_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"pink_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"pink_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"pink_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"pink_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"pink_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"pink_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"pink_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"pink_stained_glass_pane_noside","y":270}]},"pink_terracotta":{"states":[{"properties":{},"model":"pink_terracotta"}]},"pink_tulip":{"states":[{"properties":{},"model":"pink_tulip"}]},"pink_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"pink_wool":{"states":[{"properties":{},"model":"pink_wool"}]},"piston":{"states":[{"properties":{"extended":"false","facing":"down"},"model":"piston","x":90},{"properties":{"extended":"false","facing":"east"},"model":"piston","y":90},{"properties":{"extended":"false","facing":"north"},"model":"piston"},{"properties":{"extended":"false","facing":"south"},"model":"piston","y":180},{"properties":{"extended":"false","facing":"up"},"model":"piston","x":270},{"properties":{"extended":"false","facing":"west"},"model":"piston","y":270},{"properties":{"extended":"true","facing":"down"},"model":"piston_base","x":90},{"properties":{"extended":"true","facing":"east"},"model":"piston_base","y":90},{"properties":{"extended":"true","facing":"north"},"model":"piston_base"},{"properties":{"extended":"true","facing":"south"},"model":"piston_base","y":180},{"properties":{"extended":"true","facing":"up"},"model":"piston_base","x":270},{"properties":{"extended":"true","facing":"west"},"model":"piston_base","y":270}]},"piston_head":{"states":[{"properties":{"facing":"down","short":"false","type":"normal"},"model":"piston_head","x":90},{"properties":{"facing":"down","short":"false","type":"sticky"},"model":"piston_head_sticky","x":90},{"properties":{"facing":"down","short":"true","type":"normal"},"model":"piston_head_short","x":90},{"properties":{"facing":"down","short":"true","type":"sticky"},"model":"piston_head_short_sticky","x":90},{"properties":{"facing":"east","short":"false","type":"normal"},"model":"piston_head","y":90},{"properties":{"facing":"east","short":"false","type":"sticky"},"model":"piston_head_sticky","y":90},{"properties":{"facing":"east","short":"true","type":"normal"},"model":"piston_head_short","y":90},{"properties":{"facing":"east","short":"true","type":"sticky"},"model":"piston_head_short_sticky","y":90},{"properties":{"facing":"north","short":"false","type":"normal"},"model":"piston_head"},{"properties":{"facing":"north","short":"false","type":"sticky"},"model":"piston_head_sticky"},{"properties":{"facing":"north","short":"true","type":"normal"},"model":"piston_head_short"},{"properties":{"facing":"north","short":"true","type":"sticky"},"model":"piston_head_short_sticky"},{"properties":{"facing":"south","short":"false","type":"normal"},"model":"piston_head","y":180},{"properties":{"facing":"south","short":"false","type":"sticky"},"model":"piston_head_sticky","y":180},{"properties":{"facing":"south","short":"true","type":"normal"},"model":"piston_head_short","y":180},{"properties":{"facing":"south","short":"true","type":"sticky"},"model":"piston_head_short_sticky","y":180},{"properties":{"facing":"up","short":"false","type":"normal"},"model":"piston_head","x":270},{"properties":{"facing":"up","short":"false","type":"sticky"},"model":"piston_head_sticky","x":270},{"properties":{"facing":"up","short":"true","type":"normal"},"model":"piston_head_short","x":270},{"properties":{"facing":"up","short":"true","type":"sticky"},"model":"piston_head_short_sticky","x":270},{"properties":{"facing":"west","short":"false","type":"normal"},"model":"piston_head","y":270},{"properties":{"facing":"west","short":"false","type":"sticky"},"model":"piston_head_sticky","y":270},{"properties":{"facing":"west","short":"true","type":"normal"},"model":"piston_head_short","y":270},{"properties":{"facing":"west","short":"true","type":"sticky"},"model":"piston_head_short_sticky","y":270}]},"player_head":{"states":[{"properties":{},"model":"skull"}]},"player_wall_head":{"states":[{"properties":{},"model":"skull"}]},"podzol":{"states":[{"properties":{"snowy":"false"},"model":"podzol"},{"properties":{"snowy":"true"},"model":"grass_block_snow"}]},"polished_andesite":{"states":[{"properties":{},"model":"polished_andesite"}]},"polished_andesite_slab":{"states":[{"properties":{"type":"bottom"},"model":"polished_andesite_slab"},{"properties":{"type":"double"},"model":"polished_andesite"},{"properties":{"type":"top"},"model":"polished_andesite_slab_top"}]},"polished_andesite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"polished_andesite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"polished_andesite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"polished_andesite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"polished_andesite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"polished_andesite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"polished_andesite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"polished_andesite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"polished_andesite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"polished_andesite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"polished_andesite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"polished_andesite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"polished_andesite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"polished_andesite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"polished_andesite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"polished_andesite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"polished_andesite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"polished_andesite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"polished_andesite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"polished_andesite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"polished_andesite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"polished_andesite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"polished_andesite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"polished_andesite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"polished_andesite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"polished_andesite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"polished_andesite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"polished_andesite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"polished_andesite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"polished_andesite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"polished_andesite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"polished_andesite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"polished_andesite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"polished_andesite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"polished_andesite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"polished_andesite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"polished_andesite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"polished_andesite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"polished_andesite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"polished_andesite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"polished_andesite_stairs","x":180,"y":180}]},"polished_basalt":{"states":[{"properties":{"axis":"x"},"model":"polished_basalt","x":90,"y":90},{"properties":{"axis":"y"},"model":"polished_basalt"},{"properties":{"axis":"z"},"model":"polished_basalt","x":90}]},"polished_blackstone":{"states":[{"properties":{},"model":"polished_blackstone"}]},"polished_blackstone_bricks":{"states":[{"properties":{},"model":"polished_blackstone_bricks"}]},"polished_blackstone_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"polished_blackstone_brick_slab"},{"properties":{"type":"double"},"model":"polished_blackstone_bricks"},{"properties":{"type":"top"},"model":"polished_blackstone_brick_slab_top"}]},"polished_blackstone_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"polished_blackstone_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"polished_blackstone_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"polished_blackstone_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"polished_blackstone_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"polished_blackstone_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"polished_blackstone_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"polished_blackstone_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"polished_blackstone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"polished_blackstone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"polished_blackstone_brick_stairs","x":180,"y":180}]},"polished_blackstone_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"polished_blackstone_brick_wall_post"},{"properties":{"north":"low"},"model":"polished_blackstone_brick_wall_side"},{"properties":{"east":"low"},"model":"polished_blackstone_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"polished_blackstone_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"polished_blackstone_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"polished_blackstone_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"polished_blackstone_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"polished_blackstone_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"polished_blackstone_brick_wall_side_tall","y":270}]},"polished_blackstone_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"polished_blackstone_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"polished_blackstone_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"polished_blackstone_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"polished_blackstone_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"polished_blackstone_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"polished_blackstone_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"polished_blackstone_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"polished_blackstone_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"polished_blackstone_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"polished_blackstone_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"polished_blackstone_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"polished_blackstone_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"polished_blackstone_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"polished_blackstone_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"polished_blackstone_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"polished_blackstone_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"polished_blackstone_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"polished_blackstone_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"polished_blackstone_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"polished_blackstone_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"polished_blackstone_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"polished_blackstone_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"polished_blackstone_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"polished_blackstone_button_pressed","x":90,"y":270}]},"polished_blackstone_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"polished_blackstone_pressure_plate"},{"properties":{"powered":"true"},"model":"polished_blackstone_pressure_plate_down"}]},"polished_blackstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"polished_blackstone_slab"},{"properties":{"type":"double"},"model":"polished_blackstone"},{"properties":{"type":"top"},"model":"polished_blackstone_slab_top"}]},"polished_blackstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"polished_blackstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"polished_blackstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"polished_blackstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"polished_blackstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"polished_blackstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"polished_blackstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"polished_blackstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"polished_blackstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"polished_blackstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"polished_blackstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"polished_blackstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"polished_blackstone_stairs","x":180,"y":180}]},"polished_blackstone_wall":{"conditional":[{"properties":{"up":"true"},"model":"polished_blackstone_wall_post"},{"properties":{"north":"low"},"model":"polished_blackstone_wall_side"},{"properties":{"east":"low"},"model":"polished_blackstone_wall_side","y":90},{"properties":{"south":"low"},"model":"polished_blackstone_wall_side","y":180},{"properties":{"west":"low"},"model":"polished_blackstone_wall_side","y":270},{"properties":{"north":"tall"},"model":"polished_blackstone_wall_side_tall"},{"properties":{"east":"tall"},"model":"polished_blackstone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"polished_blackstone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"polished_blackstone_wall_side_tall","y":270}]},"polished_diorite":{"states":[{"properties":{},"model":"polished_diorite"}]},"polished_diorite_slab":{"states":[{"properties":{"type":"bottom"},"model":"polished_diorite_slab"},{"properties":{"type":"double"},"model":"polished_diorite"},{"properties":{"type":"top"},"model":"polished_diorite_slab_top"}]},"polished_diorite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"polished_diorite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"polished_diorite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"polished_diorite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"polished_diorite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"polished_diorite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"polished_diorite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"polished_diorite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"polished_diorite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"polished_diorite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"polished_diorite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"polished_diorite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"polished_diorite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"polished_diorite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"polished_diorite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"polished_diorite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"polished_diorite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"polished_diorite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"polished_diorite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"polished_diorite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"polished_diorite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"polished_diorite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"polished_diorite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"polished_diorite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"polished_diorite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"polished_diorite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"polished_diorite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"polished_diorite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"polished_diorite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"polished_diorite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"polished_diorite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"polished_diorite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"polished_diorite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"polished_diorite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"polished_diorite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"polished_diorite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"polished_diorite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"polished_diorite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"polished_diorite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"polished_diorite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"polished_diorite_stairs","x":180,"y":180}]},"polished_granite":{"states":[{"properties":{},"model":"polished_granite"}]},"polished_granite_slab":{"states":[{"properties":{"type":"bottom"},"model":"polished_granite_slab"},{"properties":{"type":"double"},"model":"polished_granite"},{"properties":{"type":"top"},"model":"polished_granite_slab_top"}]},"polished_granite_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"polished_granite_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"polished_granite_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"polished_granite_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"polished_granite_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"polished_granite_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"polished_granite_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"polished_granite_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"polished_granite_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"polished_granite_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"polished_granite_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"polished_granite_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"polished_granite_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"polished_granite_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"polished_granite_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"polished_granite_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"polished_granite_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"polished_granite_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"polished_granite_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"polished_granite_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"polished_granite_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"polished_granite_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"polished_granite_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"polished_granite_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"polished_granite_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"polished_granite_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"polished_granite_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"polished_granite_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"polished_granite_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"polished_granite_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"polished_granite_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"polished_granite_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"polished_granite_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"polished_granite_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"polished_granite_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"polished_granite_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"polished_granite_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"polished_granite_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"polished_granite_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"polished_granite_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"polished_granite_stairs","x":180,"y":180}]},"poppy":{"states":[{"properties":{},"model":"poppy"}]},"potatoes":{"states":[{"properties":{"age":"0"},"model":"potatoes_stage0"},{"properties":{"age":"1"},"model":"potatoes_stage0"},{"properties":{"age":"2"},"model":"potatoes_stage1"},{"properties":{"age":"3"},"model":"potatoes_stage1"},{"properties":{"age":"4"},"model":"potatoes_stage2"},{"properties":{"age":"5"},"model":"potatoes_stage2"},{"properties":{"age":"6"},"model":"potatoes_stage2"},{"properties":{"age":"7"},"model":"potatoes_stage3"}]},"potted_acacia_sapling":{"states":[{"properties":{},"model":"potted_acacia_sapling"}]},"potted_allium":{"states":[{"properties":{},"model":"potted_allium"}]},"potted_azure_bluet":{"states":[{"properties":{},"model":"potted_azure_bluet"}]},"potted_bamboo":{"states":[{"properties":{},"model":"potted_bamboo"}]},"potted_birch_sapling":{"states":[{"properties":{},"model":"potted_birch_sapling"}]},"potted_blue_orchid":{"states":[{"properties":{},"model":"potted_blue_orchid"}]},"potted_brown_mushroom":{"states":[{"properties":{},"model":"potted_brown_mushroom"}]},"potted_cactus":{"states":[{"properties":{},"model":"potted_cactus"}]},"potted_cornflower":{"states":[{"properties":{},"model":"potted_cornflower"}]},"potted_crimson_fungus":{"states":[{"properties":{},"model":"potted_crimson_fungus"}]},"potted_crimson_roots":{"states":[{"properties":{},"model":"potted_crimson_roots"}]},"potted_dandelion":{"states":[{"properties":{},"model":"potted_dandelion"}]},"potted_dark_oak_sapling":{"states":[{"properties":{},"model":"potted_dark_oak_sapling"}]},"potted_dead_bush":{"states":[{"properties":{},"model":"potted_dead_bush"}]},"potted_fern":{"states":[{"properties":{},"model":"potted_fern"}]},"potted_jungle_sapling":{"states":[{"properties":{},"model":"potted_jungle_sapling"}]},"potted_lily_of_the_valley":{"states":[{"properties":{},"model":"potted_lily_of_the_valley"}]},"potted_oak_sapling":{"states":[{"properties":{},"model":"potted_oak_sapling"}]},"potted_orange_tulip":{"states":[{"properties":{},"model":"potted_orange_tulip"}]},"potted_oxeye_daisy":{"states":[{"properties":{},"model":"potted_oxeye_daisy"}]},"potted_pink_tulip":{"states":[{"properties":{},"model":"potted_pink_tulip"}]},"potted_poppy":{"states":[{"properties":{},"model":"potted_poppy"}]},"potted_red_mushroom":{"states":[{"properties":{},"model":"potted_red_mushroom"}]},"potted_red_tulip":{"states":[{"properties":{},"model":"potted_red_tulip"}]},"potted_spruce_sapling":{"states":[{"properties":{},"model":"potted_spruce_sapling"}]},"potted_warped_fungus":{"states":[{"properties":{},"model":"potted_warped_fungus"}]},"potted_warped_roots":{"states":[{"properties":{},"model":"potted_warped_roots"}]},"potted_white_tulip":{"states":[{"properties":{},"model":"potted_white_tulip"}]},"potted_wither_rose":{"states":[{"properties":{},"model":"potted_wither_rose"}]},"powered_rail":{"states":[{"properties":{"powered":"false","shape":"ascending_east"},"model":"powered_rail_raised_ne","y":90},{"properties":{"powered":"false","shape":"ascending_north"},"model":"powered_rail_raised_ne"},{"properties":{"powered":"false","shape":"ascending_south"},"model":"powered_rail_raised_sw"},{"properties":{"powered":"false","shape":"ascending_west"},"model":"powered_rail_raised_sw","y":90},{"properties":{"powered":"false","shape":"east_west"},"model":"powered_rail","y":90},{"properties":{"powered":"false","shape":"north_south"},"model":"powered_rail"},{"properties":{"powered":"true","shape":"ascending_east"},"model":"powered_rail_on_raised_ne","y":90},{"properties":{"powered":"true","shape":"ascending_north"},"model":"powered_rail_on_raised_ne"},{"properties":{"powered":"true","shape":"ascending_south"},"model":"powered_rail_on_raised_sw"},{"properties":{"powered":"true","shape":"ascending_west"},"model":"powered_rail_on_raised_sw","y":90},{"properties":{"powered":"true","shape":"east_west"},"model":"powered_rail_on","y":90},{"properties":{"powered":"true","shape":"north_south"},"model":"powered_rail_on"}]},"prismarine":{"states":[{"properties":{},"model":"prismarine"}]},"prismarine_bricks":{"states":[{"properties":{},"model":"prismarine_bricks"}]},"prismarine_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"prismarine_brick_slab"},{"properties":{"type":"double"},"model":"prismarine_bricks"},{"properties":{"type":"top"},"model":"prismarine_brick_slab_top"}]},"prismarine_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"prismarine_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"prismarine_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"prismarine_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"prismarine_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"prismarine_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"prismarine_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"prismarine_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"prismarine_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"prismarine_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"prismarine_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"prismarine_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"prismarine_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"prismarine_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"prismarine_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"prismarine_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"prismarine_brick_stairs","x":180,"y":180}]},"prismarine_slab":{"states":[{"properties":{"type":"bottom"},"model":"prismarine_slab"},{"properties":{"type":"double"},"model":"prismarine"},{"properties":{"type":"top"},"model":"prismarine_slab_top"}]},"prismarine_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"prismarine_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"prismarine_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"prismarine_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"prismarine_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"prismarine_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"prismarine_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"prismarine_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"prismarine_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"prismarine_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"prismarine_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"prismarine_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"prismarine_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"prismarine_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"prismarine_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"prismarine_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"prismarine_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"prismarine_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"prismarine_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"prismarine_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"prismarine_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"prismarine_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"prismarine_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"prismarine_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"prismarine_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"prismarine_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"prismarine_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"prismarine_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"prismarine_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"prismarine_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"prismarine_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"prismarine_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"prismarine_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"prismarine_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"prismarine_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"prismarine_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"prismarine_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"prismarine_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"prismarine_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"prismarine_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"prismarine_stairs","x":180,"y":180}]},"prismarine_wall":{"conditional":[{"properties":{"up":"true"},"model":"prismarine_wall_post"},{"properties":{"north":"low"},"model":"prismarine_wall_side"},{"properties":{"east":"low"},"model":"prismarine_wall_side","y":90},{"properties":{"south":"low"},"model":"prismarine_wall_side","y":180},{"properties":{"west":"low"},"model":"prismarine_wall_side","y":270},{"properties":{"north":"tall"},"model":"prismarine_wall_side_tall"},{"properties":{"east":"tall"},"model":"prismarine_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"prismarine_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"prismarine_wall_side_tall","y":270}]},"pumpkin":{"states":[{"properties":{},"model":"pumpkin"}]},"pumpkin_stem":{"states":[{"properties":{"age":"0"},"model":"pumpkin_stem_stage0"},{"properties":{"age":"1"},"model":"pumpkin_stem_stage1"},{"properties":{"age":"2"},"model":"pumpkin_stem_stage2"},{"properties":{"age":"3"},"model":"pumpkin_stem_stage3"},{"properties":{"age":"4"},"model":"pumpkin_stem_stage4"},{"properties":{"age":"5"},"model":"pumpkin_stem_stage5"},{"properties":{"age":"6"},"model":"pumpkin_stem_stage6"},{"properties":{"age":"7"},"model":"pumpkin_stem_stage7"}]},"purple_banner":{"states":[{"properties":{},"model":"banner"}]},"purple_bed":{"states":[{"properties":{},"model":"bed"}]},"purple_candle":{"states":[{"properties":{"candles":"1"},"model":"purple_candle_one_candle"},{"properties":{"candles":"2"},"model":"purple_candle_two_candles"},{"properties":{"candles":"3"},"model":"purple_candle_three_candles"},{"properties":{"candles":"4"},"model":"purple_candle_four_candles"}]},"purple_candle_cake":{"states":[{"properties":{},"model":"purple_candle_cake"}]},"purple_carpet":{"states":[{"properties":{},"model":"purple_carpet"}]},"purple_concrete":{"states":[{"properties":{},"model":"purple_concrete"}]},"purple_concrete_powder":{"states":[{"properties":{},"model":"purple_concrete_powder"}]},"purple_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"purple_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"purple_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"purple_glazed_terracotta"},{"properties":{"facing":"west"},"model":"purple_glazed_terracotta","y":90}]},"purple_shulker_box":{"states":[{"properties":{},"model":"purple_shulker_box"}]},"purple_stained_glass":{"states":[{"properties":{},"model":"purple_stained_glass"}]},"purple_stained_glass_pane":{"conditional":[{"model":"purple_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"purple_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"purple_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"purple_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"purple_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"purple_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"purple_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"purple_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"purple_stained_glass_pane_noside","y":270}]},"purple_terracotta":{"states":[{"properties":{},"model":"purple_terracotta"}]},"purple_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"purple_wool":{"states":[{"properties":{},"model":"purple_wool"}]},"purpur_block":{"states":[{"properties":{},"model":"purpur_block"}]},"purpur_pillar":{"states":[{"properties":{"axis":"x"},"model":"purpur_pillar_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"purpur_pillar"},{"properties":{"axis":"z"},"model":"purpur_pillar_horizontal","x":90}]},"purpur_slab":{"states":[{"properties":{"type":"bottom"},"model":"purpur_slab"},{"properties":{"type":"double"},"model":"purpur_block"},{"properties":{"type":"top"},"model":"purpur_slab_top"}]},"purpur_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"purpur_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"purpur_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"purpur_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"purpur_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"purpur_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"purpur_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"purpur_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"purpur_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"purpur_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"purpur_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"purpur_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"purpur_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"purpur_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"purpur_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"purpur_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"purpur_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"purpur_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"purpur_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"purpur_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"purpur_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"purpur_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"purpur_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"purpur_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"purpur_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"purpur_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"purpur_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"purpur_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"purpur_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"purpur_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"purpur_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"purpur_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"purpur_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"purpur_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"purpur_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"purpur_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"purpur_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"purpur_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"purpur_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"purpur_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"purpur_stairs","x":180,"y":180}]},"quartz_block":{"states":[{"properties":{},"model":"quartz_block"}]},"quartz_bricks":{"states":[{"properties":{},"model":"quartz_bricks"}]},"quartz_pillar":{"states":[{"properties":{"axis":"x"},"model":"quartz_pillar_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"quartz_pillar"},{"properties":{"axis":"z"},"model":"quartz_pillar_horizontal","x":90}]},"quartz_slab":{"states":[{"properties":{"type":"bottom"},"model":"quartz_slab"},{"properties":{"type":"double"},"model":"quartz_block"},{"properties":{"type":"top"},"model":"quartz_slab_top"}]},"quartz_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"quartz_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"quartz_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"quartz_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"quartz_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"quartz_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"quartz_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"quartz_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"quartz_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"quartz_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"quartz_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"quartz_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"quartz_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"quartz_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"quartz_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"quartz_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"quartz_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"quartz_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"quartz_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"quartz_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"quartz_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"quartz_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"quartz_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"quartz_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"quartz_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"quartz_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"quartz_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"quartz_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"quartz_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"quartz_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"quartz_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"quartz_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"quartz_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"quartz_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"quartz_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"quartz_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"quartz_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"quartz_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"quartz_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"quartz_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"quartz_stairs","x":180,"y":180}]},"rail":{"states":[{"properties":{"shape":"ascending_east"},"model":"rail_raised_ne","y":90},{"properties":{"shape":"ascending_north"},"model":"rail_raised_ne"},{"properties":{"shape":"ascending_south"},"model":"rail_raised_sw"},{"properties":{"shape":"ascending_west"},"model":"rail_raised_sw","y":90},{"properties":{"shape":"east_west"},"model":"rail","y":90},{"properties":{"shape":"north_east"},"model":"rail_corner","y":270},{"properties":{"shape":"north_south"},"model":"rail"},{"properties":{"shape":"north_west"},"model":"rail_corner","y":180},{"properties":{"shape":"south_east"},"model":"rail_corner"},{"properties":{"shape":"south_west"},"model":"rail_corner","y":90}]},"redstone_block":{"states":[{"properties":{},"model":"redstone_block"}]},"redstone_lamp":{"states":[{"properties":{"lit":"false"},"model":"redstone_lamp"},{"properties":{"lit":"true"},"model":"redstone_lamp_on"}]},"redstone_ore":{"states":[{"properties":{},"model":"redstone_ore"}]},"redstone_torch":{"states":[{"properties":{"lit":"false"},"model":"redstone_torch_off"},{"properties":{"lit":"true"},"model":"redstone_torch"}]},"redstone_wall_torch":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"redstone_wall_torch_off"},{"properties":{"facing":"east","lit":"true"},"model":"redstone_wall_torch"},{"properties":{"facing":"north","lit":"false"},"model":"redstone_wall_torch_off","y":270},{"properties":{"facing":"north","lit":"true"},"model":"redstone_wall_torch","y":270},{"properties":{"facing":"south","lit":"false"},"model":"redstone_wall_torch_off","y":90},{"properties":{"facing":"south","lit":"true"},"model":"redstone_wall_torch","y":90},{"properties":{"facing":"west","lit":"false"},"model":"redstone_wall_torch_off","y":180},{"properties":{"facing":"west","lit":"true"},"model":"redstone_wall_torch","y":180}]},"redstone_wire":{"conditional":[{"properties":{"west":"none","east":"none","south":"none","north":"none"},"model":"redstone_dust_dot"},{"properties":{"east":"side|up","north":"side|up"},"model":"redstone_dust_dot"},{"properties":{"east":"side|up","south":"side|up"},"model":"redstone_dust_dot"},{"properties":{"west":"side|up","south":"side|up"},"model":"redstone_dust_dot"},{"properties":{"west":"side|up","north":"side|up"},"model":"redstone_dust_dot"},{"properties":{"north":"side|up"},"model":"redstone_dust_side0"},{"properties":{"south":"side|up"},"model":"redstone_dust_side_alt0"},{"properties":{"east":"side|up"},"model":"redstone_dust_side_alt1","y":270},{"properties":{"west":"side|up"},"model":"redstone_dust_side1","y":270},{"properties":{"north":"up"},"model":"redstone_dust_up"},{"properties":{"east":"up"},"model":"redstone_dust_up","y":90},{"properties":{"south":"up"},"model":"redstone_dust_up","y":180},{"properties":{"west":"up"},"model":"redstone_dust_up","y":270}]},"red_banner":{"states":[{"properties":{},"model":"banner"}]},"red_bed":{"states":[{"properties":{},"model":"bed"}]},"red_candle":{"states":[{"properties":{"candles":"1"},"model":"red_candle_one_candle"},{"properties":{"candles":"2"},"model":"red_candle_two_candles"},{"properties":{"candles":"3"},"model":"red_candle_three_candles"},{"properties":{"candles":"4"},"model":"red_candle_four_candles"}]},"red_candle_cake":{"states":[{"properties":{},"model":"red_candle_cake"}]},"red_carpet":{"states":[{"properties":{},"model":"red_carpet"}]},"red_concrete":{"states":[{"properties":{},"model":"red_concrete"}]},"red_concrete_powder":{"states":[{"properties":{},"model":"red_concrete_powder"}]},"red_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"red_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"red_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"red_glazed_terracotta"},{"properties":{"facing":"west"},"model":"red_glazed_terracotta","y":90}]},"red_mushroom":{"states":[{"properties":{},"model":"red_mushroom"}]},"red_mushroom_block":{"conditional":[{"properties":{"north":"true"},"model":"red_mushroom_block"},{"properties":{"east":"true"},"model":"red_mushroom_block","y":90},{"properties":{"south":"true"},"model":"red_mushroom_block","y":180},{"properties":{"west":"true"},"model":"red_mushroom_block","y":270},{"properties":{"up":"true"},"model":"red_mushroom_block","x":270},{"properties":{"down":"true"},"model":"red_mushroom_block","x":90},{"properties":{"north":"false"},"model":"mushroom_block_inside"},{"properties":{"east":"false"},"model":"mushroom_block_inside","y":90},{"properties":{"south":"false"},"model":"mushroom_block_inside","y":180},{"properties":{"west":"false"},"model":"mushroom_block_inside","y":270},{"properties":{"up":"false"},"model":"mushroom_block_inside","x":270},{"properties":{"down":"false"},"model":"mushroom_block_inside","x":90}]},"red_nether_bricks":{"states":[{"properties":{},"model":"red_nether_bricks"}]},"red_nether_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"red_nether_brick_slab"},{"properties":{"type":"double"},"model":"red_nether_bricks"},{"properties":{"type":"top"},"model":"red_nether_brick_slab_top"}]},"red_nether_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"red_nether_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"red_nether_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"red_nether_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"red_nether_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"red_nether_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"red_nether_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"red_nether_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"red_nether_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"red_nether_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"red_nether_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"red_nether_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"red_nether_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"red_nether_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"red_nether_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"red_nether_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"red_nether_brick_stairs","x":180,"y":180}]},"red_nether_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"red_nether_brick_wall_post"},{"properties":{"north":"low"},"model":"red_nether_brick_wall_side"},{"properties":{"east":"low"},"model":"red_nether_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"red_nether_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"red_nether_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"red_nether_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"red_nether_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"red_nether_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"red_nether_brick_wall_side_tall","y":270}]},"red_sand":{"states":[{"properties":{},"model":"red_sand"}]},"red_sandstone":{"states":[{"properties":{},"model":"red_sandstone"}]},"red_sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"red_sandstone_slab"},{"properties":{"type":"double"},"model":"red_sandstone"},{"properties":{"type":"top"},"model":"red_sandstone_slab_top"}]},"red_sandstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"red_sandstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"red_sandstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"red_sandstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"red_sandstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"red_sandstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"red_sandstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"red_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"red_sandstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"red_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"red_sandstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"red_sandstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"red_sandstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"red_sandstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"red_sandstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"red_sandstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"red_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"red_sandstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"red_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"red_sandstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"red_sandstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"red_sandstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"red_sandstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"red_sandstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"red_sandstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"red_sandstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"red_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"red_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"red_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"red_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"red_sandstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"red_sandstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"red_sandstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"red_sandstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"red_sandstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"red_sandstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"red_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"red_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"red_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"red_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"red_sandstone_stairs","x":180,"y":180}]},"red_sandstone_wall":{"conditional":[{"properties":{"up":"true"},"model":"red_sandstone_wall_post"},{"properties":{"north":"low"},"model":"red_sandstone_wall_side"},{"properties":{"east":"low"},"model":"red_sandstone_wall_side","y":90},{"properties":{"south":"low"},"model":"red_sandstone_wall_side","y":180},{"properties":{"west":"low"},"model":"red_sandstone_wall_side","y":270},{"properties":{"north":"tall"},"model":"red_sandstone_wall_side_tall"},{"properties":{"east":"tall"},"model":"red_sandstone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"red_sandstone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"red_sandstone_wall_side_tall","y":270}]},"red_shulker_box":{"states":[{"properties":{},"model":"red_shulker_box"}]},"red_stained_glass":{"states":[{"properties":{},"model":"red_stained_glass"}]},"red_stained_glass_pane":{"conditional":[{"model":"red_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"red_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"red_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"red_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"red_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"red_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"red_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"red_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"red_stained_glass_pane_noside","y":270}]},"red_terracotta":{"states":[{"properties":{},"model":"red_terracotta"}]},"red_tulip":{"states":[{"properties":{},"model":"red_tulip"}]},"red_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"red_wool":{"states":[{"properties":{},"model":"red_wool"}]},"repeater":{"states":[{"properties":{"delay":"1","facing":"east","locked":"false","powered":"false"},"model":"repeater_1tick","y":270},{"properties":{"delay":"1","facing":"east","locked":"false","powered":"true"},"model":"repeater_1tick_on","y":270},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"false"},"model":"repeater_1tick_locked","y":270},{"properties":{"delay":"1","facing":"east","locked":"true","powered":"true"},"model":"repeater_1tick_on_locked","y":270},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"false"},"model":"repeater_1tick","y":180},{"properties":{"delay":"1","facing":"north","locked":"false","powered":"true"},"model":"repeater_1tick_on","y":180},{"properties":{"delay":"1","facing":"north","locked":"true","powered":"false"},"model":"repeater_1tick_locked","y":180},{"properties":{"delay":"1","facing":"north","locked":"true","powered":"true"},"model":"repeater_1tick_on_locked","y":180},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"false"},"model":"repeater_1tick"},{"properties":{"delay":"1","facing":"south","locked":"false","powered":"true"},"model":"repeater_1tick_on"},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"false"},"model":"repeater_1tick_locked"},{"properties":{"delay":"1","facing":"south","locked":"true","powered":"true"},"model":"repeater_1tick_on_locked"},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"false"},"model":"repeater_1tick","y":90},{"properties":{"delay":"1","facing":"west","locked":"false","powered":"true"},"model":"repeater_1tick_on","y":90},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"false"},"model":"repeater_1tick_locked","y":90},{"properties":{"delay":"1","facing":"west","locked":"true","powered":"true"},"model":"repeater_1tick_on_locked","y":90},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"false"},"model":"repeater_2tick","y":270},{"properties":{"delay":"2","facing":"east","locked":"false","powered":"true"},"model":"repeater_2tick_on","y":270},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"false"},"model":"repeater_2tick_locked","y":270},{"properties":{"delay":"2","facing":"east","locked":"true","powered":"true"},"model":"repeater_2tick_on_locked","y":270},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"false"},"model":"repeater_2tick","y":180},{"properties":{"delay":"2","facing":"north","locked":"false","powered":"true"},"model":"repeater_2tick_on","y":180},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"false"},"model":"repeater_2tick_locked","y":180},{"properties":{"delay":"2","facing":"north","locked":"true","powered":"true"},"model":"repeater_2tick_on_locked","y":180},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"false"},"model":"repeater_2tick"},{"properties":{"delay":"2","facing":"south","locked":"false","powered":"true"},"model":"repeater_2tick_on"},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"false"},"model":"repeater_2tick_locked"},{"properties":{"delay":"2","facing":"south","locked":"true","powered":"true"},"model":"repeater_2tick_on_locked"},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"false"},"model":"repeater_2tick","y":90},{"properties":{"delay":"2","facing":"west","locked":"false","powered":"true"},"model":"repeater_2tick_on","y":90},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"false"},"model":"repeater_2tick_locked","y":90},{"properties":{"delay":"2","facing":"west","locked":"true","powered":"true"},"model":"repeater_2tick_on_locked","y":90},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"false"},"model":"repeater_3tick","y":270},{"properties":{"delay":"3","facing":"east","locked":"false","powered":"true"},"model":"repeater_3tick_on","y":270},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"false"},"model":"repeater_3tick_locked","y":270},{"properties":{"delay":"3","facing":"east","locked":"true","powered":"true"},"model":"repeater_3tick_on_locked","y":270},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"false"},"model":"repeater_3tick","y":180},{"properties":{"delay":"3","facing":"north","locked":"false","powered":"true"},"model":"repeater_3tick_on","y":180},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"false"},"model":"repeater_3tick_locked","y":180},{"properties":{"delay":"3","facing":"north","locked":"true","powered":"true"},"model":"repeater_3tick_on_locked","y":180},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"false"},"model":"repeater_3tick"},{"properties":{"delay":"3","facing":"south","locked":"false","powered":"true"},"model":"repeater_3tick_on"},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"false"},"model":"repeater_3tick_locked"},{"properties":{"delay":"3","facing":"south","locked":"true","powered":"true"},"model":"repeater_3tick_on_locked"},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"false"},"model":"repeater_3tick","y":90},{"properties":{"delay":"3","facing":"west","locked":"false","powered":"true"},"model":"repeater_3tick_on","y":90},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"false"},"model":"repeater_3tick_locked","y":90},{"properties":{"delay":"3","facing":"west","locked":"true","powered":"true"},"model":"repeater_3tick_on_locked","y":90},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"false"},"model":"repeater_4tick","y":270},{"properties":{"delay":"4","facing":"east","locked":"false","powered":"true"},"model":"repeater_4tick_on","y":270},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"false"},"model":"repeater_4tick_locked","y":270},{"properties":{"delay":"4","facing":"east","locked":"true","powered":"true"},"model":"repeater_4tick_on_locked","y":270},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"false"},"model":"repeater_4tick","y":180},{"properties":{"delay":"4","facing":"north","locked":"false","powered":"true"},"model":"repeater_4tick_on","y":180},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"false"},"model":"repeater_4tick_locked","y":180},{"properties":{"delay":"4","facing":"north","locked":"true","powered":"true"},"model":"repeater_4tick_on_locked","y":180},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"false"},"model":"repeater_4tick"},{"properties":{"delay":"4","facing":"south","locked":"false","powered":"true"},"model":"repeater_4tick_on"},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"false"},"model":"repeater_4tick_locked"},{"properties":{"delay":"4","facing":"south","locked":"true","powered":"true"},"model":"repeater_4tick_on_locked"},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"false"},"model":"repeater_4tick","y":90},{"properties":{"delay":"4","facing":"west","locked":"false","powered":"true"},"model":"repeater_4tick_on","y":90},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"false"},"model":"repeater_4tick_locked","y":90},{"properties":{"delay":"4","facing":"west","locked":"true","powered":"true"},"model":"repeater_4tick_on_locked","y":90}]},"repeating_command_block":{"states":[{"properties":{"conditional":"false","facing":"down"},"model":"repeating_command_block","x":90},{"properties":{"conditional":"false","facing":"east"},"model":"repeating_command_block","y":90},{"properties":{"conditional":"false","facing":"north"},"model":"repeating_command_block"},{"properties":{"conditional":"false","facing":"south"},"model":"repeating_command_block","y":180},{"properties":{"conditional":"false","facing":"up"},"model":"repeating_command_block","x":270},{"properties":{"conditional":"false","facing":"west"},"model":"repeating_command_block","y":270},{"properties":{"conditional":"true","facing":"down"},"model":"repeating_command_block_conditional","x":90},{"properties":{"conditional":"true","facing":"east"},"model":"repeating_command_block_conditional","y":90},{"properties":{"conditional":"true","facing":"north"},"model":"repeating_command_block_conditional"},{"properties":{"conditional":"true","facing":"south"},"model":"repeating_command_block_conditional","y":180},{"properties":{"conditional":"true","facing":"up"},"model":"repeating_command_block_conditional","x":270},{"properties":{"conditional":"true","facing":"west"},"model":"repeating_command_block_conditional","y":270}]},"respawn_anchor":{"states":[{"properties":{"charges":"0"},"model":"respawn_anchor_0"},{"properties":{"charges":"1"},"model":"respawn_anchor_1"},{"properties":{"charges":"2"},"model":"respawn_anchor_2"},{"properties":{"charges":"3"},"model":"respawn_anchor_3"},{"properties":{"charges":"4"},"model":"respawn_anchor_4"}]},"rose_bush":{"states":[{"properties":{"half":"lower"},"model":"rose_bush_bottom"},{"properties":{"half":"upper"},"model":"rose_bush_top"}]},"sand":{"states":[{"properties":{},"model":"sand"}]},"sandstone":{"states":[{"properties":{},"model":"sandstone"}]},"sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"sandstone_slab"},{"properties":{"type":"double"},"model":"sandstone"},{"properties":{"type":"top"},"model":"sandstone_slab_top"}]},"sandstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"sandstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"sandstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"sandstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"sandstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"sandstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"sandstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"sandstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"sandstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"sandstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"sandstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"sandstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"sandstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"sandstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"sandstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"sandstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"sandstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"sandstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"sandstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"sandstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"sandstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"sandstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"sandstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"sandstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"sandstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"sandstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"sandstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"sandstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"sandstone_stairs","x":180,"y":180}]},"sandstone_wall":{"conditional":[{"properties":{"up":"true"},"model":"sandstone_wall_post"},{"properties":{"north":"low"},"model":"sandstone_wall_side"},{"properties":{"east":"low"},"model":"sandstone_wall_side","y":90},{"properties":{"south":"low"},"model":"sandstone_wall_side","y":180},{"properties":{"west":"low"},"model":"sandstone_wall_side","y":270},{"properties":{"north":"tall"},"model":"sandstone_wall_side_tall"},{"properties":{"east":"tall"},"model":"sandstone_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"sandstone_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"sandstone_wall_side_tall","y":270}]},"scaffolding":{"states":[{"properties":{"bottom":"false"},"model":"scaffolding_stable"},{"properties":{"bottom":"true"},"model":"scaffolding_unstable"}]},"seagrass":{"states":[{"properties":{},"model":"seagrass"}]},"sea_lantern":{"states":[{"properties":{},"model":"sea_lantern"}]},"sea_pickle":{"states":[{"properties":{"pickles":"1","waterlogged":"false"},"model":"dead_sea_pickle"},{"properties":{"pickles":"1","waterlogged":"true"},"model":"sea_pickle"},{"properties":{"pickles":"2","waterlogged":"false"},"model":"two_dead_sea_pickles"},{"properties":{"pickles":"2","waterlogged":"true"},"model":"two_sea_pickles"},{"properties":{"pickles":"3","waterlogged":"false"},"model":"three_dead_sea_pickles"},{"properties":{"pickles":"3","waterlogged":"true"},"model":"three_sea_pickles"},{"properties":{"pickles":"4","waterlogged":"false"},"model":"four_dead_sea_pickles"},{"properties":{"pickles":"4","waterlogged":"true"},"model":"four_sea_pickles"}]},"semi_weathered_copper_block":{"states":[{"properties":{},"model":"semi_weathered_copper_block"}]},"semi_weathered_cut_copper":{"states":[{"properties":{},"model":"semi_weathered_cut_copper"}]},"semi_weathered_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"semi_weathered_cut_copper_slab"},{"properties":{"type":"double"},"model":"semi_weathered_cut_copper"},{"properties":{"type":"top"},"model":"semi_weathered_cut_copper_slab_top"}]},"semi_weathered_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":180}]},"shroomlight":{"states":[{"properties":{},"model":"shroomlight"}]},"shulker_box":{"states":[{"properties":{},"model":"shulker_box"}]},"skeleton_skull":{"states":[{"properties":{},"model":"skull"}]},"skeleton_wall_skull":{"states":[{"properties":{},"model":"skull"}]},"slime_block":{"states":[{"properties":{},"model":"slime_block"}]},"small_amethyst_bud":{"states":[{"properties":{"facing":"down"},"model":"small_amethyst_bud","x":180},{"properties":{"facing":"east"},"model":"small_amethyst_bud","x":90,"y":90},{"properties":{"facing":"north"},"model":"small_amethyst_bud","x":90},{"properties":{"facing":"south"},"model":"small_amethyst_bud","x":90,"y":180},{"properties":{"facing":"up"},"model":"small_amethyst_bud"},{"properties":{"facing":"west"},"model":"small_amethyst_bud","x":90,"y":270}]},"smithing_table":{"states":[{"properties":{},"model":"smithing_table"}]},"smoker":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"smoker","y":90},{"properties":{"facing":"east","lit":"true"},"model":"smoker_on","y":90},{"properties":{"facing":"north","lit":"false"},"model":"smoker"},{"properties":{"facing":"north","lit":"true"},"model":"smoker_on"},{"properties":{"facing":"south","lit":"false"},"model":"smoker","y":180},{"properties":{"facing":"south","lit":"true"},"model":"smoker_on","y":180},{"properties":{"facing":"west","lit":"false"},"model":"smoker","y":270},{"properties":{"facing":"west","lit":"true"},"model":"smoker_on","y":270}]},"smooth_quartz":{"states":[{"properties":{},"model":"smooth_quartz"}]},"smooth_quartz_slab":{"states":[{"properties":{"type":"bottom"},"model":"smooth_quartz_slab"},{"properties":{"type":"double"},"model":"smooth_quartz"},{"properties":{"type":"top"},"model":"smooth_quartz_slab_top"}]},"smooth_quartz_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"smooth_quartz_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"smooth_quartz_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"smooth_quartz_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"smooth_quartz_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"smooth_quartz_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"smooth_quartz_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"smooth_quartz_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"smooth_quartz_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"smooth_quartz_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"smooth_quartz_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"smooth_quartz_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"smooth_quartz_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"smooth_quartz_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"smooth_quartz_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"smooth_quartz_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"smooth_quartz_stairs","x":180,"y":180}]},"smooth_red_sandstone":{"states":[{"properties":{},"model":"smooth_red_sandstone"}]},"smooth_red_sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"smooth_red_sandstone_slab"},{"properties":{"type":"double"},"model":"smooth_red_sandstone"},{"properties":{"type":"top"},"model":"smooth_red_sandstone_slab_top"}]},"smooth_red_sandstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"smooth_red_sandstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"smooth_red_sandstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"smooth_red_sandstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"smooth_red_sandstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"smooth_red_sandstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"smooth_red_sandstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"smooth_red_sandstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"smooth_red_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"smooth_red_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"smooth_red_sandstone_stairs","x":180,"y":180}]},"smooth_sandstone":{"states":[{"properties":{},"model":"smooth_sandstone"}]},"smooth_sandstone_slab":{"states":[{"properties":{"type":"bottom"},"model":"smooth_sandstone_slab"},{"properties":{"type":"double"},"model":"smooth_sandstone"},{"properties":{"type":"top"},"model":"smooth_sandstone_slab_top"}]},"smooth_sandstone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"smooth_sandstone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"smooth_sandstone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"smooth_sandstone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"smooth_sandstone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"smooth_sandstone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"smooth_sandstone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"smooth_sandstone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"smooth_sandstone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"smooth_sandstone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"smooth_sandstone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"smooth_sandstone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"smooth_sandstone_stairs","x":180,"y":180}]},"smooth_stone":{"states":[{"properties":{},"model":"smooth_stone"}]},"smooth_stone_slab":{"states":[{"properties":{"type":"bottom"},"model":"smooth_stone_slab"},{"properties":{"type":"double"},"model":"smooth_stone_slab_double"},{"properties":{"type":"top"},"model":"smooth_stone_slab_top"}]},"snow":{"states":[{"properties":{"layers":"1"},"model":"snow_height2"},{"properties":{"layers":"2"},"model":"snow_height4"},{"properties":{"layers":"3"},"model":"snow_height6"},{"properties":{"layers":"4"},"model":"snow_height8"},{"properties":{"layers":"5"},"model":"snow_height10"},{"properties":{"layers":"6"},"model":"snow_height12"},{"properties":{"layers":"7"},"model":"snow_height14"},{"properties":{"layers":"8"},"model":"snow_block"}]},"snow_block":{"states":[{"properties":{},"model":"snow_block"}]},"soul_campfire":{"states":[{"properties":{"facing":"east","lit":"false"},"model":"campfire_off","y":270},{"properties":{"facing":"east","lit":"true"},"model":"soul_campfire","y":270},{"properties":{"facing":"north","lit":"false"},"model":"campfire_off","y":180},{"properties":{"facing":"north","lit":"true"},"model":"soul_campfire","y":180},{"properties":{"facing":"south","lit":"false"},"model":"campfire_off"},{"properties":{"facing":"south","lit":"true"},"model":"soul_campfire"},{"properties":{"facing":"west","lit":"false"},"model":"campfire_off","y":90},{"properties":{"facing":"west","lit":"true"},"model":"soul_campfire","y":90}]},"soul_fire":{"conditional":[{"model":"soul_fire_floor0"},{"model":"soul_fire_side0"},{"model":"soul_fire_side0","y":90},{"model":"soul_fire_side0","y":180},{"model":"soul_fire_side0","y":270}]},"soul_lantern":{"states":[{"properties":{"hanging":"false"},"model":"soul_lantern"},{"properties":{"hanging":"true"},"model":"soul_lantern_hanging"}]},"soul_sand":{"states":[{"properties":{},"model":"soul_sand"}]},"soul_soil":{"states":[{"properties":{},"model":"soul_soil"}]},"soul_torch":{"states":[{"properties":{},"model":"soul_torch"}]},"soul_wall_torch":{"states":[{"properties":{"facing":"east"},"model":"soul_wall_torch"},{"properties":{"facing":"north"},"model":"soul_wall_torch","y":270},{"properties":{"facing":"south"},"model":"soul_wall_torch","y":90},{"properties":{"facing":"west"},"model":"soul_wall_torch","y":180}]},"spawner":{"states":[{"properties":{},"model":"spawner"}]},"sponge":{"states":[{"properties":{},"model":"sponge"}]},"spruce_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"spruce_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"spruce_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"spruce_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"spruce_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"spruce_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"spruce_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"spruce_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"spruce_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"spruce_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"spruce_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"spruce_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"spruce_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"spruce_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"spruce_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"spruce_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"spruce_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"spruce_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"spruce_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"spruce_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"spruce_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"spruce_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"spruce_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"spruce_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"spruce_button_pressed","x":90,"y":270}]},"spruce_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"spruce_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"spruce_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"spruce_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"spruce_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"spruce_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"spruce_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"spruce_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"spruce_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"spruce_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"spruce_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"spruce_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"spruce_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"spruce_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"spruce_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"spruce_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"spruce_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"spruce_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"spruce_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"spruce_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"spruce_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"spruce_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"spruce_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"spruce_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"spruce_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"spruce_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"spruce_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"spruce_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"spruce_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"spruce_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"spruce_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"spruce_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"spruce_door_top","y":90}]},"spruce_fence":{"conditional":[{"model":"spruce_fence_post"},{"properties":{"north":"true"},"model":"spruce_fence_side"},{"properties":{"east":"true"},"model":"spruce_fence_side","y":90},{"properties":{"south":"true"},"model":"spruce_fence_side","y":180},{"properties":{"west":"true"},"model":"spruce_fence_side","y":270}]},"spruce_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"spruce_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"spruce_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"spruce_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"spruce_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"spruce_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"spruce_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"spruce_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"spruce_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"spruce_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"spruce_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"spruce_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"spruce_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"spruce_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"spruce_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"spruce_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"spruce_fence_gate_wall_open","y":90}]},"spruce_leaves":{"states":[{"properties":{},"model":"spruce_leaves"}]},"spruce_log":{"states":[{"properties":{"axis":"x"},"model":"spruce_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"spruce_log"},{"properties":{"axis":"z"},"model":"spruce_log_horizontal","x":90}]},"spruce_planks":{"states":[{"properties":{},"model":"spruce_planks"}]},"spruce_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"spruce_pressure_plate"},{"properties":{"powered":"true"},"model":"spruce_pressure_plate_down"}]},"spruce_sapling":{"states":[{"properties":{},"model":"spruce_sapling"}]},"spruce_sign":{"states":[{"properties":{},"model":"spruce_sign"}]},"spruce_slab":{"states":[{"properties":{"type":"bottom"},"model":"spruce_slab"},{"properties":{"type":"double"},"model":"spruce_planks"},{"properties":{"type":"top"},"model":"spruce_slab_top"}]},"spruce_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"spruce_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"spruce_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"spruce_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"spruce_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"spruce_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"spruce_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"spruce_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"spruce_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"spruce_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"spruce_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"spruce_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"spruce_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"spruce_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"spruce_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"spruce_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"spruce_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"spruce_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"spruce_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"spruce_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"spruce_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"spruce_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"spruce_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"spruce_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"spruce_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"spruce_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"spruce_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"spruce_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"spruce_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"spruce_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"spruce_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"spruce_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"spruce_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"spruce_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"spruce_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"spruce_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"spruce_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"spruce_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"spruce_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"spruce_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"spruce_stairs","x":180,"y":180}]},"spruce_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"spruce_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"spruce_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"spruce_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"spruce_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"spruce_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"spruce_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"spruce_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"spruce_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"spruce_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"spruce_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"spruce_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"spruce_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"spruce_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"spruce_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"spruce_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"spruce_trapdoor_open","x":180,"y":90}]},"spruce_wall_sign":{"states":[{"properties":{},"model":"spruce_sign"}]},"spruce_wood":{"states":[{"properties":{"axis":"x"},"model":"spruce_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"spruce_wood"},{"properties":{"axis":"z"},"model":"spruce_wood","x":90}]},"sticky_piston":{"states":[{"properties":{"extended":"false","facing":"down"},"model":"sticky_piston","x":90},{"properties":{"extended":"false","facing":"east"},"model":"sticky_piston","y":90},{"properties":{"extended":"false","facing":"north"},"model":"sticky_piston"},{"properties":{"extended":"false","facing":"south"},"model":"sticky_piston","y":180},{"properties":{"extended":"false","facing":"up"},"model":"sticky_piston","x":270},{"properties":{"extended":"false","facing":"west"},"model":"sticky_piston","y":270},{"properties":{"extended":"true","facing":"down"},"model":"piston_base","x":90},{"properties":{"extended":"true","facing":"east"},"model":"piston_base","y":90},{"properties":{"extended":"true","facing":"north"},"model":"piston_base"},{"properties":{"extended":"true","facing":"south"},"model":"piston_base","y":180},{"properties":{"extended":"true","facing":"up"},"model":"piston_base","x":270},{"properties":{"extended":"true","facing":"west"},"model":"piston_base","y":270}]},"stone":{"states":[{"properties":{},"model":"stone"}]},"stonecutter":{"states":[{"properties":{"facing":"east"},"model":"stonecutter","y":90},{"properties":{"facing":"north"},"model":"stonecutter"},{"properties":{"facing":"south"},"model":"stonecutter","y":180},{"properties":{"facing":"west"},"model":"stonecutter","y":270}]},"stone_bricks":{"states":[{"properties":{},"model":"stone_bricks"}]},"stone_brick_slab":{"states":[{"properties":{"type":"bottom"},"model":"stone_brick_slab"},{"properties":{"type":"double"},"model":"stone_bricks"},{"properties":{"type":"top"},"model":"stone_brick_slab_top"}]},"stone_brick_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"stone_brick_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"stone_brick_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"stone_brick_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"stone_brick_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"stone_brick_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"stone_brick_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"stone_brick_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"stone_brick_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"stone_brick_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"stone_brick_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"stone_brick_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"stone_brick_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"stone_brick_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"stone_brick_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"stone_brick_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"stone_brick_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"stone_brick_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"stone_brick_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"stone_brick_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"stone_brick_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"stone_brick_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"stone_brick_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"stone_brick_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"stone_brick_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"stone_brick_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"stone_brick_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"stone_brick_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"stone_brick_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"stone_brick_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"stone_brick_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"stone_brick_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"stone_brick_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"stone_brick_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"stone_brick_stairs","x":180,"y":180}]},"stone_brick_wall":{"conditional":[{"properties":{"up":"true"},"model":"stone_brick_wall_post"},{"properties":{"north":"low"},"model":"stone_brick_wall_side"},{"properties":{"east":"low"},"model":"stone_brick_wall_side","y":90},{"properties":{"south":"low"},"model":"stone_brick_wall_side","y":180},{"properties":{"west":"low"},"model":"stone_brick_wall_side","y":270},{"properties":{"north":"tall"},"model":"stone_brick_wall_side_tall"},{"properties":{"east":"tall"},"model":"stone_brick_wall_side_tall","y":90},{"properties":{"south":"tall"},"model":"stone_brick_wall_side_tall","y":180},{"properties":{"west":"tall"},"model":"stone_brick_wall_side_tall","y":270}]},"stone_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"stone_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"stone_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"stone_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"stone_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"stone_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"stone_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"stone_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"stone_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"stone_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"stone_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"stone_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"stone_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"stone_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"stone_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"stone_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"stone_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"stone_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"stone_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"stone_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"stone_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"stone_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"stone_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"stone_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"stone_button_pressed","x":90,"y":270}]},"stone_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"stone_pressure_plate"},{"properties":{"powered":"true"},"model":"stone_pressure_plate_down"}]},"stone_slab":{"states":[{"properties":{"type":"bottom"},"model":"stone_slab"},{"properties":{"type":"double"},"model":"stone"},{"properties":{"type":"top"},"model":"stone_slab_top"}]},"stone_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"stone_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"stone_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"stone_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"stone_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"stone_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"stone_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"stone_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"stone_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"stone_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"stone_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"stone_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"stone_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"stone_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"stone_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"stone_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"stone_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"stone_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"stone_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"stone_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"stone_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"stone_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"stone_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"stone_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"stone_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"stone_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"stone_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"stone_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"stone_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"stone_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"stone_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"stone_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"stone_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"stone_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"stone_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"stone_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"stone_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"stone_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"stone_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"stone_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"stone_stairs","x":180,"y":180}]},"stripped_acacia_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_acacia_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_acacia_log"},{"properties":{"axis":"z"},"model":"stripped_acacia_log_horizontal","x":90}]},"stripped_acacia_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_acacia_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_acacia_wood"},{"properties":{"axis":"z"},"model":"stripped_acacia_wood","x":90}]},"stripped_birch_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_birch_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_birch_log"},{"properties":{"axis":"z"},"model":"stripped_birch_log_horizontal","x":90}]},"stripped_birch_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_birch_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_birch_wood"},{"properties":{"axis":"z"},"model":"stripped_birch_wood","x":90}]},"stripped_crimson_hyphae":{"states":[{"properties":{"axis":"x"},"model":"stripped_crimson_hyphae","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_crimson_hyphae"},{"properties":{"axis":"z"},"model":"stripped_crimson_hyphae","x":90}]},"stripped_crimson_stem":{"states":[{"properties":{"axis":"x"},"model":"stripped_crimson_stem","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_crimson_stem"},{"properties":{"axis":"z"},"model":"stripped_crimson_stem","x":90}]},"stripped_dark_oak_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_dark_oak_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_dark_oak_log"},{"properties":{"axis":"z"},"model":"stripped_dark_oak_log_horizontal","x":90}]},"stripped_dark_oak_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_dark_oak_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_dark_oak_wood"},{"properties":{"axis":"z"},"model":"stripped_dark_oak_wood","x":90}]},"stripped_jungle_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_jungle_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_jungle_log"},{"properties":{"axis":"z"},"model":"stripped_jungle_log_horizontal","x":90}]},"stripped_jungle_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_jungle_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_jungle_wood"},{"properties":{"axis":"z"},"model":"stripped_jungle_wood","x":90}]},"stripped_oak_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_oak_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_oak_log"},{"properties":{"axis":"z"},"model":"stripped_oak_log_horizontal","x":90}]},"stripped_oak_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_oak_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_oak_wood"},{"properties":{"axis":"z"},"model":"stripped_oak_wood","x":90}]},"stripped_spruce_log":{"states":[{"properties":{"axis":"x"},"model":"stripped_spruce_log_horizontal","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_spruce_log"},{"properties":{"axis":"z"},"model":"stripped_spruce_log_horizontal","x":90}]},"stripped_spruce_wood":{"states":[{"properties":{"axis":"x"},"model":"stripped_spruce_wood","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_spruce_wood"},{"properties":{"axis":"z"},"model":"stripped_spruce_wood","x":90}]},"stripped_warped_hyphae":{"states":[{"properties":{"axis":"x"},"model":"stripped_warped_hyphae","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_warped_hyphae"},{"properties":{"axis":"z"},"model":"stripped_warped_hyphae","x":90}]},"stripped_warped_stem":{"states":[{"properties":{"axis":"x"},"model":"stripped_warped_stem","x":90,"y":90},{"properties":{"axis":"y"},"model":"stripped_warped_stem"},{"properties":{"axis":"z"},"model":"stripped_warped_stem","x":90}]},"structure_block":{"states":[{"properties":{"mode":"corner"},"model":"structure_block_corner"},{"properties":{"mode":"data"},"model":"structure_block_data"},{"properties":{"mode":"load"},"model":"structure_block_load"},{"properties":{"mode":"save"},"model":"structure_block_save"}]},"structure_void":{"states":[{"properties":{},"model":"structure_void"}]},"sugar_cane":{"states":[{"properties":{},"model":"sugar_cane"}]},"sunflower":{"states":[{"properties":{"half":"lower"},"model":"sunflower_bottom"},{"properties":{"half":"upper"},"model":"sunflower_top"}]},"sweet_berry_bush":{"states":[{"properties":{"age":"0"},"model":"sweet_berry_bush_stage0"},{"properties":{"age":"1"},"model":"sweet_berry_bush_stage1"},{"properties":{"age":"2"},"model":"sweet_berry_bush_stage2"},{"properties":{"age":"3"},"model":"sweet_berry_bush_stage3"}]},"tall_grass":{"states":[{"properties":{"half":"lower"},"model":"tall_grass_bottom"},{"properties":{"half":"upper"},"model":"tall_grass_top"}]},"tall_seagrass":{"states":[{"properties":{"half":"lower"},"model":"tall_seagrass_bottom"},{"properties":{"half":"upper"},"model":"tall_seagrass_top"}]},"target":{"states":[{"properties":{},"model":"target"}]},"terracotta":{"states":[{"properties":{},"model":"terracotta"}]},"tinted_glass":{"states":[{"properties":{},"model":"tinted_glass"}]},"tnt":{"states":[{"properties":{},"model":"tnt"}]},"torch":{"states":[{"properties":{},"model":"torch"}]},"trapped_chest":{"states":[{"properties":{},"model":"chest"}]},"tripwire":{"states":[{"properties":{"attached":"false","east":"false","north":"false","south":"false","west":"false"},"model":"tripwire_ns"},{"properties":{"attached":"false","east":"false","north":"false","south":"false","west":"true"},"model":"tripwire_n","y":270},{"properties":{"attached":"false","east":"false","north":"false","south":"true","west":"false"},"model":"tripwire_n","y":180},{"properties":{"attached":"false","east":"false","north":"false","south":"true","west":"true"},"model":"tripwire_ne","y":180},{"properties":{"attached":"false","east":"false","north":"true","south":"false","west":"false"},"model":"tripwire_n"},{"properties":{"attached":"false","east":"false","north":"true","south":"false","west":"true"},"model":"tripwire_ne","y":270},{"properties":{"attached":"false","east":"false","north":"true","south":"true","west":"false"},"model":"tripwire_ns"},{"properties":{"attached":"false","east":"false","north":"true","south":"true","west":"true"},"model":"tripwire_nse","y":180},{"properties":{"attached":"false","east":"true","north":"false","south":"false","west":"false"},"model":"tripwire_n","y":90},{"properties":{"attached":"false","east":"true","north":"false","south":"false","west":"true"},"model":"tripwire_ns","y":90},{"properties":{"attached":"false","east":"true","north":"false","south":"true","west":"false"},"model":"tripwire_ne","y":90},{"properties":{"attached":"false","east":"true","north":"false","south":"true","west":"true"},"model":"tripwire_nse","y":90},{"properties":{"attached":"false","east":"true","north":"true","south":"false","west":"false"},"model":"tripwire_ne"},{"properties":{"attached":"false","east":"true","north":"true","south":"false","west":"true"},"model":"tripwire_nse","y":270},{"properties":{"attached":"false","east":"true","north":"true","south":"true","west":"false"},"model":"tripwire_nse"},{"properties":{"attached":"false","east":"true","north":"true","south":"true","west":"true"},"model":"tripwire_nsew"},{"properties":{"attached":"true","east":"false","north":"false","south":"false","west":"false"},"model":"tripwire_attached_ns"},{"properties":{"attached":"true","east":"false","north":"false","south":"false","west":"true"},"model":"tripwire_attached_n","y":270},{"properties":{"attached":"true","east":"false","north":"false","south":"true","west":"false"},"model":"tripwire_attached_n","y":180},{"properties":{"attached":"true","east":"false","north":"false","south":"true","west":"true"},"model":"tripwire_attached_ne","y":180},{"properties":{"attached":"true","east":"false","north":"true","south":"false","west":"false"},"model":"tripwire_attached_n"},{"properties":{"attached":"true","east":"false","north":"true","south":"false","west":"true"},"model":"tripwire_attached_ne","y":270},{"properties":{"attached":"true","east":"false","north":"true","south":"true","west":"false"},"model":"tripwire_attached_ns"},{"properties":{"attached":"true","east":"false","north":"true","south":"true","west":"true"},"model":"tripwire_attached_nse","y":180},{"properties":{"attached":"true","east":"true","north":"false","south":"false","west":"false"},"model":"tripwire_attached_n","y":90},{"properties":{"attached":"true","east":"true","north":"false","south":"false","west":"true"},"model":"tripwire_attached_ns","y":90},{"properties":{"attached":"true","east":"true","north":"false","south":"true","west":"false"},"model":"tripwire_attached_ne","y":90},{"properties":{"attached":"true","east":"true","north":"false","south":"true","west":"true"},"model":"tripwire_attached_nse","y":90},{"properties":{"attached":"true","east":"true","north":"true","south":"false","west":"false"},"model":"tripwire_attached_ne"},{"properties":{"attached":"true","east":"true","north":"true","south":"false","west":"true"},"model":"tripwire_attached_nse","y":270},{"properties":{"attached":"true","east":"true","north":"true","south":"true","west":"false"},"model":"tripwire_attached_nse"},{"properties":{"attached":"true","east":"true","north":"true","south":"true","west":"true"},"model":"tripwire_attached_nsew"}]},"tripwire_hook":{"states":[{"properties":{"attached":"false","facing":"east","powered":"false"},"model":"tripwire_hook","y":90},{"properties":{"attached":"false","facing":"east","powered":"true"},"model":"tripwire_hook_on","y":90},{"properties":{"attached":"false","facing":"north","powered":"false"},"model":"tripwire_hook"},{"properties":{"attached":"false","facing":"north","powered":"true"},"model":"tripwire_hook_on"},{"properties":{"attached":"false","facing":"south","powered":"false"},"model":"tripwire_hook","y":180},{"properties":{"attached":"false","facing":"south","powered":"true"},"model":"tripwire_hook_on","y":180},{"properties":{"attached":"false","facing":"west","powered":"false"},"model":"tripwire_hook","y":270},{"properties":{"attached":"false","facing":"west","powered":"true"},"model":"tripwire_hook_on","y":270},{"properties":{"attached":"true","facing":"east","powered":"false"},"model":"tripwire_hook_attached","y":90},{"properties":{"attached":"true","facing":"east","powered":"true"},"model":"tripwire_hook_attached_on","y":90},{"properties":{"attached":"true","facing":"north","powered":"false"},"model":"tripwire_hook_attached"},{"properties":{"attached":"true","facing":"north","powered":"true"},"model":"tripwire_hook_attached_on"},{"properties":{"attached":"true","facing":"south","powered":"false"},"model":"tripwire_hook_attached","y":180},{"properties":{"attached":"true","facing":"south","powered":"true"},"model":"tripwire_hook_attached_on","y":180},{"properties":{"attached":"true","facing":"west","powered":"false"},"model":"tripwire_hook_attached","y":270},{"properties":{"attached":"true","facing":"west","powered":"true"},"model":"tripwire_hook_attached_on","y":270}]},"tube_coral":{"states":[{"properties":{},"model":"tube_coral"}]},"tube_coral_block":{"states":[{"properties":{},"model":"tube_coral_block"}]},"tube_coral_fan":{"states":[{"properties":{},"model":"tube_coral_fan"}]},"tube_coral_wall_fan":{"states":[{"properties":{"facing":"east"},"model":"tube_coral_wall_fan","y":90},{"properties":{"facing":"north"},"model":"tube_coral_wall_fan"},{"properties":{"facing":"south"},"model":"tube_coral_wall_fan","y":180},{"properties":{"facing":"west"},"model":"tube_coral_wall_fan","y":270}]},"tuff":{"states":[{"properties":{},"model":"tuff"}]},"turtle_egg":{"states":[{"properties":{"eggs":"1","hatch":"0"},"model":"turtle_egg"},{"properties":{"eggs":"1","hatch":"1"},"model":"slightly_cracked_turtle_egg"},{"properties":{"eggs":"1","hatch":"2"},"model":"very_cracked_turtle_egg"},{"properties":{"eggs":"2","hatch":"0"},"model":"two_turtle_eggs"},{"properties":{"eggs":"2","hatch":"1"},"model":"two_slightly_cracked_turtle_eggs"},{"properties":{"eggs":"2","hatch":"2"},"model":"two_very_cracked_turtle_eggs"},{"properties":{"eggs":"3","hatch":"0"},"model":"three_turtle_eggs"},{"properties":{"eggs":"3","hatch":"1"},"model":"three_slightly_cracked_turtle_eggs"},{"properties":{"eggs":"3","hatch":"2"},"model":"three_very_cracked_turtle_eggs"},{"properties":{"eggs":"4","hatch":"0"},"model":"four_turtle_eggs"},{"properties":{"eggs":"4","hatch":"1"},"model":"four_slightly_cracked_turtle_eggs"},{"properties":{"eggs":"4","hatch":"2"},"model":"four_very_cracked_turtle_eggs"}]},"twisting_vines":{"states":[{"properties":{},"model":"twisting_vines"}]},"twisting_vines_plant":{"states":[{"properties":{},"model":"twisting_vines_plant"}]},"vine":{"states":[{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"false"},"model":"vine_1"},{"properties":{"east":"false","north":"false","south":"false","up":"false","west":"true"},"model":"vine_1","y":90},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"false"},"model":"vine_u"},{"properties":{"east":"false","north":"false","south":"false","up":"true","west":"true"},"model":"vine_1u","y":90},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"false"},"model":"vine_1"},{"properties":{"east":"false","north":"false","south":"true","up":"false","west":"true"},"model":"vine_2","y":180},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"false"},"model":"vine_1u"},{"properties":{"east":"false","north":"false","south":"true","up":"true","west":"true"},"model":"vine_2u","y":180},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"false"},"model":"vine_1","y":180},{"properties":{"east":"false","north":"true","south":"false","up":"false","west":"true"},"model":"vine_2","y":270},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"false"},"model":"vine_1u","y":180},{"properties":{"east":"false","north":"true","south":"false","up":"true","west":"true"},"model":"vine_2u","y":270},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"false"},"model":"vine_2_opposite","y":90},{"properties":{"east":"false","north":"true","south":"true","up":"false","west":"true"},"model":"vine_3","y":180},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"false"},"model":"vine_2u_opposite","y":90},{"properties":{"east":"false","north":"true","south":"true","up":"true","west":"true"},"model":"vine_3u","y":180},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"false"},"model":"vine_1","y":270},{"properties":{"east":"true","north":"false","south":"false","up":"false","west":"true"},"model":"vine_2_opposite"},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"false"},"model":"vine_1u","y":270},{"properties":{"east":"true","north":"false","south":"false","up":"true","west":"true"},"model":"vine_2u_opposite"},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"false"},"model":"vine_2","y":90},{"properties":{"east":"true","north":"false","south":"true","up":"false","west":"true"},"model":"vine_3","y":90},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"false"},"model":"vine_2u","y":90},{"properties":{"east":"true","north":"false","south":"true","up":"true","west":"true"},"model":"vine_3u","y":90},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"false"},"model":"vine_2"},{"properties":{"east":"true","north":"true","south":"false","up":"false","west":"true"},"model":"vine_3","y":270},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"false"},"model":"vine_2u"},{"properties":{"east":"true","north":"true","south":"false","up":"true","west":"true"},"model":"vine_3u","y":270},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"false"},"model":"vine_3"},{"properties":{"east":"true","north":"true","south":"true","up":"false","west":"true"},"model":"vine_4"},{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"false"},"model":"vine_3u"},{"properties":{"east":"true","north":"true","south":"true","up":"true","west":"true"},"model":"vine_4u"}]},"void_air":{"states":[{"properties":{},"model":"air"}]},"wall_torch":{"states":[{"properties":{"facing":"east"},"model":"wall_torch"},{"properties":{"facing":"north"},"model":"wall_torch","y":270},{"properties":{"facing":"south"},"model":"wall_torch","y":90},{"properties":{"facing":"west"},"model":"wall_torch","y":180}]},"warped_button":{"states":[{"properties":{"face":"ceiling","facing":"east","powered":"false"},"model":"warped_button","x":180,"y":270},{"properties":{"face":"ceiling","facing":"east","powered":"true"},"model":"warped_button_pressed","x":180,"y":270},{"properties":{"face":"ceiling","facing":"north","powered":"false"},"model":"warped_button","x":180,"y":180},{"properties":{"face":"ceiling","facing":"north","powered":"true"},"model":"warped_button_pressed","x":180,"y":180},{"properties":{"face":"ceiling","facing":"south","powered":"false"},"model":"warped_button","x":180},{"properties":{"face":"ceiling","facing":"south","powered":"true"},"model":"warped_button_pressed","x":180},{"properties":{"face":"ceiling","facing":"west","powered":"false"},"model":"warped_button","x":180,"y":90},{"properties":{"face":"ceiling","facing":"west","powered":"true"},"model":"warped_button_pressed","x":180,"y":90},{"properties":{"face":"floor","facing":"east","powered":"false"},"model":"warped_button","y":90},{"properties":{"face":"floor","facing":"east","powered":"true"},"model":"warped_button_pressed","y":90},{"properties":{"face":"floor","facing":"north","powered":"false"},"model":"warped_button"},{"properties":{"face":"floor","facing":"north","powered":"true"},"model":"warped_button_pressed"},{"properties":{"face":"floor","facing":"south","powered":"false"},"model":"warped_button","y":180},{"properties":{"face":"floor","facing":"south","powered":"true"},"model":"warped_button_pressed","y":180},{"properties":{"face":"floor","facing":"west","powered":"false"},"model":"warped_button","y":270},{"properties":{"face":"floor","facing":"west","powered":"true"},"model":"warped_button_pressed","y":270},{"properties":{"face":"wall","facing":"east","powered":"false"},"model":"warped_button","x":90,"y":90},{"properties":{"face":"wall","facing":"east","powered":"true"},"model":"warped_button_pressed","x":90,"y":90},{"properties":{"face":"wall","facing":"north","powered":"false"},"model":"warped_button","x":90},{"properties":{"face":"wall","facing":"north","powered":"true"},"model":"warped_button_pressed","x":90},{"properties":{"face":"wall","facing":"south","powered":"false"},"model":"warped_button","x":90,"y":180},{"properties":{"face":"wall","facing":"south","powered":"true"},"model":"warped_button_pressed","x":90,"y":180},{"properties":{"face":"wall","facing":"west","powered":"false"},"model":"warped_button","x":90,"y":270},{"properties":{"face":"wall","facing":"west","powered":"true"},"model":"warped_button_pressed","x":90,"y":270}]},"warped_door":{"states":[{"properties":{"facing":"east","half":"lower","hinge":"left","open":"false"},"model":"warped_door_bottom"},{"properties":{"facing":"east","half":"lower","hinge":"left","open":"true"},"model":"warped_door_bottom_hinge","y":90},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"false"},"model":"warped_door_bottom_hinge"},{"properties":{"facing":"east","half":"lower","hinge":"right","open":"true"},"model":"warped_door_bottom","y":270},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"false"},"model":"warped_door_top"},{"properties":{"facing":"east","half":"upper","hinge":"left","open":"true"},"model":"warped_door_top_hinge","y":90},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"false"},"model":"warped_door_top_hinge"},{"properties":{"facing":"east","half":"upper","hinge":"right","open":"true"},"model":"warped_door_top","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"false"},"model":"warped_door_bottom","y":270},{"properties":{"facing":"north","half":"lower","hinge":"left","open":"true"},"model":"warped_door_bottom_hinge"},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"false"},"model":"warped_door_bottom_hinge","y":270},{"properties":{"facing":"north","half":"lower","hinge":"right","open":"true"},"model":"warped_door_bottom","y":180},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"false"},"model":"warped_door_top","y":270},{"properties":{"facing":"north","half":"upper","hinge":"left","open":"true"},"model":"warped_door_top_hinge"},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"false"},"model":"warped_door_top_hinge","y":270},{"properties":{"facing":"north","half":"upper","hinge":"right","open":"true"},"model":"warped_door_top","y":180},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"false"},"model":"warped_door_bottom","y":90},{"properties":{"facing":"south","half":"lower","hinge":"left","open":"true"},"model":"warped_door_bottom_hinge","y":180},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"false"},"model":"warped_door_bottom_hinge","y":90},{"properties":{"facing":"south","half":"lower","hinge":"right","open":"true"},"model":"warped_door_bottom"},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"false"},"model":"warped_door_top","y":90},{"properties":{"facing":"south","half":"upper","hinge":"left","open":"true"},"model":"warped_door_top_hinge","y":180},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"false"},"model":"warped_door_top_hinge","y":90},{"properties":{"facing":"south","half":"upper","hinge":"right","open":"true"},"model":"warped_door_top"},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"false"},"model":"warped_door_bottom","y":180},{"properties":{"facing":"west","half":"lower","hinge":"left","open":"true"},"model":"warped_door_bottom_hinge","y":270},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"false"},"model":"warped_door_bottom_hinge","y":180},{"properties":{"facing":"west","half":"lower","hinge":"right","open":"true"},"model":"warped_door_bottom","y":90},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"false"},"model":"warped_door_top","y":180},{"properties":{"facing":"west","half":"upper","hinge":"left","open":"true"},"model":"warped_door_top_hinge","y":270},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"false"},"model":"warped_door_top_hinge","y":180},{"properties":{"facing":"west","half":"upper","hinge":"right","open":"true"},"model":"warped_door_top","y":90}]},"warped_fence":{"conditional":[{"model":"warped_fence_post"},{"properties":{"north":"true"},"model":"warped_fence_side"},{"properties":{"east":"true"},"model":"warped_fence_side","y":90},{"properties":{"south":"true"},"model":"warped_fence_side","y":180},{"properties":{"west":"true"},"model":"warped_fence_side","y":270}]},"warped_fence_gate":{"states":[{"properties":{"facing":"east","in_wall":"false","open":"false"},"model":"warped_fence_gate","y":270},{"properties":{"facing":"east","in_wall":"false","open":"true"},"model":"warped_fence_gate_open","y":270},{"properties":{"facing":"east","in_wall":"true","open":"false"},"model":"warped_fence_gate_wall","y":270},{"properties":{"facing":"east","in_wall":"true","open":"true"},"model":"warped_fence_gate_wall_open","y":270},{"properties":{"facing":"north","in_wall":"false","open":"false"},"model":"warped_fence_gate","y":180},{"properties":{"facing":"north","in_wall":"false","open":"true"},"model":"warped_fence_gate_open","y":180},{"properties":{"facing":"north","in_wall":"true","open":"false"},"model":"warped_fence_gate_wall","y":180},{"properties":{"facing":"north","in_wall":"true","open":"true"},"model":"warped_fence_gate_wall_open","y":180},{"properties":{"facing":"south","in_wall":"false","open":"false"},"model":"warped_fence_gate"},{"properties":{"facing":"south","in_wall":"false","open":"true"},"model":"warped_fence_gate_open"},{"properties":{"facing":"south","in_wall":"true","open":"false"},"model":"warped_fence_gate_wall"},{"properties":{"facing":"south","in_wall":"true","open":"true"},"model":"warped_fence_gate_wall_open"},{"properties":{"facing":"west","in_wall":"false","open":"false"},"model":"warped_fence_gate","y":90},{"properties":{"facing":"west","in_wall":"false","open":"true"},"model":"warped_fence_gate_open","y":90},{"properties":{"facing":"west","in_wall":"true","open":"false"},"model":"warped_fence_gate_wall","y":90},{"properties":{"facing":"west","in_wall":"true","open":"true"},"model":"warped_fence_gate_wall_open","y":90}]},"warped_fungus":{"states":[{"properties":{},"model":"warped_fungus"}]},"warped_hyphae":{"states":[{"properties":{"axis":"x"},"model":"warped_hyphae","x":90,"y":90},{"properties":{"axis":"y"},"model":"warped_hyphae"},{"properties":{"axis":"z"},"model":"warped_hyphae","x":90}]},"warped_nylium":{"states":[{"properties":{},"model":"warped_nylium"}]},"warped_planks":{"states":[{"properties":{},"model":"warped_planks"}]},"warped_pressure_plate":{"states":[{"properties":{"powered":"false"},"model":"warped_pressure_plate"},{"properties":{"powered":"true"},"model":"warped_pressure_plate_down"}]},"warped_roots":{"states":[{"properties":{},"model":"warped_roots"}]},"warped_sign":{"states":[{"properties":{},"model":"warped_sign"}]},"warped_slab":{"states":[{"properties":{"type":"bottom"},"model":"warped_slab"},{"properties":{"type":"double"},"model":"warped_planks"},{"properties":{"type":"top"},"model":"warped_slab_top"}]},"warped_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"warped_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"warped_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"warped_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"warped_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"warped_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"warped_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"warped_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"warped_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"warped_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"warped_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"warped_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"warped_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"warped_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"warped_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"warped_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"warped_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"warped_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"warped_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"warped_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"warped_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"warped_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"warped_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"warped_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"warped_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"warped_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"warped_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"warped_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"warped_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"warped_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"warped_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"warped_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"warped_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"warped_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"warped_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"warped_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"warped_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"warped_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"warped_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"warped_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"warped_stairs","x":180,"y":180}]},"warped_stem":{"states":[{"properties":{"axis":"x"},"model":"warped_stem","x":90,"y":90},{"properties":{"axis":"y"},"model":"warped_stem"},{"properties":{"axis":"z"},"model":"warped_stem","x":90}]},"warped_trapdoor":{"states":[{"properties":{"facing":"east","half":"bottom","open":"false"},"model":"warped_trapdoor_bottom","y":90},{"properties":{"facing":"east","half":"bottom","open":"true"},"model":"warped_trapdoor_open","y":90},{"properties":{"facing":"east","half":"top","open":"false"},"model":"warped_trapdoor_top","y":90},{"properties":{"facing":"east","half":"top","open":"true"},"model":"warped_trapdoor_open","x":180,"y":270},{"properties":{"facing":"north","half":"bottom","open":"false"},"model":"warped_trapdoor_bottom"},{"properties":{"facing":"north","half":"bottom","open":"true"},"model":"warped_trapdoor_open"},{"properties":{"facing":"north","half":"top","open":"false"},"model":"warped_trapdoor_top"},{"properties":{"facing":"north","half":"top","open":"true"},"model":"warped_trapdoor_open","x":180,"y":180},{"properties":{"facing":"south","half":"bottom","open":"false"},"model":"warped_trapdoor_bottom","y":180},{"properties":{"facing":"south","half":"bottom","open":"true"},"model":"warped_trapdoor_open","y":180},{"properties":{"facing":"south","half":"top","open":"false"},"model":"warped_trapdoor_top","y":180},{"properties":{"facing":"south","half":"top","open":"true"},"model":"warped_trapdoor_open","x":180,"y":0},{"properties":{"facing":"west","half":"bottom","open":"false"},"model":"warped_trapdoor_bottom","y":270},{"properties":{"facing":"west","half":"bottom","open":"true"},"model":"warped_trapdoor_open","y":270},{"properties":{"facing":"west","half":"top","open":"false"},"model":"warped_trapdoor_top","y":270},{"properties":{"facing":"west","half":"top","open":"true"},"model":"warped_trapdoor_open","x":180,"y":90}]},"warped_wall_sign":{"states":[{"properties":{},"model":"warped_sign"}]},"warped_wart_block":{"states":[{"properties":{},"model":"warped_wart_block"}]},"water":{"states":[{"properties":{},"model":"water"}]},"water_cauldron":{"states":[{"properties":{"level":"1"},"model":"water_cauldron_level1"},{"properties":{"level":"2"},"model":"water_cauldron_level2"},{"properties":{"level":"3"},"model":"water_cauldron"}]},"waxed_copper":{"states":[{"properties":{},"model":"copper_block"}]},"waxed_cut_copper":{"states":[{"properties":{},"model":"cut_copper"}]},"waxed_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"cut_copper_slab"},{"properties":{"type":"double"},"model":"cut_copper"},{"properties":{"type":"top"},"model":"cut_copper_slab_top"}]},"waxed_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"cut_copper_stairs","x":180,"y":180}]},"waxed_lightly_weathered_copper":{"states":[{"properties":{},"model":"lightly_weathered_copper_block"}]},"waxed_lightly_weathered_cut_copper":{"states":[{"properties":{},"model":"lightly_weathered_cut_copper"}]},"waxed_lightly_weathered_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"lightly_weathered_cut_copper_slab"},{"properties":{"type":"double"},"model":"lightly_weathered_cut_copper"},{"properties":{"type":"top"},"model":"lightly_weathered_cut_copper_slab_top"}]},"waxed_lightly_weathered_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"lightly_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"lightly_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"lightly_weathered_cut_copper_stairs","x":180,"y":180}]},"waxed_semi_weathered_copper":{"states":[{"properties":{},"model":"semi_weathered_copper_block"}]},"waxed_semi_weathered_cut_copper":{"states":[{"properties":{},"model":"semi_weathered_cut_copper"}]},"waxed_semi_weathered_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"semi_weathered_cut_copper_slab"},{"properties":{"type":"double"},"model":"semi_weathered_cut_copper"},{"properties":{"type":"top"},"model":"semi_weathered_cut_copper_slab_top"}]},"waxed_semi_weathered_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"semi_weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"semi_weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"semi_weathered_cut_copper_stairs","x":180,"y":180}]},"weathered_copper_block":{"states":[{"properties":{},"model":"weathered_copper_block"}]},"weathered_cut_copper":{"states":[{"properties":{},"model":"weathered_cut_copper"}]},"weathered_cut_copper_slab":{"states":[{"properties":{"type":"bottom"},"model":"weathered_cut_copper_slab"},{"properties":{"type":"double"},"model":"weathered_cut_copper"},{"properties":{"type":"top"},"model":"weathered_cut_copper_slab_top"}]},"weathered_cut_copper_stairs":{"states":[{"properties":{"facing":"east","half":"bottom","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"east","half":"bottom","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner"},{"properties":{"facing":"east","half":"bottom","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"east","half":"bottom","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer"},{"properties":{"facing":"east","half":"bottom","shape":"straight"},"model":"weathered_cut_copper_stairs"},{"properties":{"facing":"east","half":"top","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"east","half":"top","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"east","half":"top","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"east","half":"top","shape":"straight"},"model":"weathered_cut_copper_stairs","x":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"north","half":"bottom","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","y":270},{"properties":{"facing":"north","half":"bottom","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"north","half":"bottom","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","y":270},{"properties":{"facing":"north","half":"bottom","shape":"straight"},"model":"weathered_cut_copper_stairs","y":270},{"properties":{"facing":"north","half":"top","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","x":180},{"properties":{"facing":"north","half":"top","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"north","half":"top","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","x":180},{"properties":{"facing":"north","half":"top","shape":"straight"},"model":"weathered_cut_copper_stairs","x":180,"y":270},{"properties":{"facing":"south","half":"bottom","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner"},{"properties":{"facing":"south","half":"bottom","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"south","half":"bottom","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer"},{"properties":{"facing":"south","half":"bottom","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"south","half":"bottom","shape":"straight"},"model":"weathered_cut_copper_stairs","y":90},{"properties":{"facing":"south","half":"top","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":90},{"properties":{"facing":"south","half":"top","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"south","half":"top","shape":"straight"},"model":"weathered_cut_copper_stairs","x":180,"y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","y":90},{"properties":{"facing":"west","half":"bottom","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","y":180},{"properties":{"facing":"west","half":"bottom","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","y":90},{"properties":{"facing":"west","half":"bottom","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","y":180},{"properties":{"facing":"west","half":"bottom","shape":"straight"},"model":"weathered_cut_copper_stairs","y":180},{"properties":{"facing":"west","half":"top","shape":"inner_left"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"inner_right"},"model":"weathered_cut_copper_stairs_inner","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"outer_left"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":180},{"properties":{"facing":"west","half":"top","shape":"outer_right"},"model":"weathered_cut_copper_stairs_outer","x":180,"y":270},{"properties":{"facing":"west","half":"top","shape":"straight"},"model":"weathered_cut_copper_stairs","x":180,"y":180}]},"weeping_vines":{"states":[{"properties":{},"model":"weeping_vines"}]},"weeping_vines_plant":{"states":[{"properties":{},"model":"weeping_vines_plant"}]},"wet_sponge":{"states":[{"properties":{},"model":"wet_sponge"}]},"wheat":{"states":[{"properties":{"age":"0"},"model":"wheat_stage0"},{"properties":{"age":"1"},"model":"wheat_stage1"},{"properties":{"age":"2"},"model":"wheat_stage2"},{"properties":{"age":"3"},"model":"wheat_stage3"},{"properties":{"age":"4"},"model":"wheat_stage4"},{"properties":{"age":"5"},"model":"wheat_stage5"},{"properties":{"age":"6"},"model":"wheat_stage6"},{"properties":{"age":"7"},"model":"wheat_stage7"}]},"white_banner":{"states":[{"properties":{},"model":"banner"}]},"white_bed":{"states":[{"properties":{},"model":"bed"}]},"white_candle":{"states":[{"properties":{"candles":"1"},"model":"white_candle_one_candle"},{"properties":{"candles":"2"},"model":"white_candle_two_candles"},{"properties":{"candles":"3"},"model":"white_candle_three_candles"},{"properties":{"candles":"4"},"model":"white_candle_four_candles"}]},"white_candle_cake":{"states":[{"properties":{},"model":"white_candle_cake"}]},"white_carpet":{"states":[{"properties":{},"model":"white_carpet"}]},"white_concrete":{"states":[{"properties":{},"model":"white_concrete"}]},"white_concrete_powder":{"states":[{"properties":{},"model":"white_concrete_powder"}]},"white_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"white_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"white_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"white_glazed_terracotta"},{"properties":{"facing":"west"},"model":"white_glazed_terracotta","y":90}]},"white_shulker_box":{"states":[{"properties":{},"model":"white_shulker_box"}]},"white_stained_glass":{"states":[{"properties":{},"model":"white_stained_glass"}]},"white_stained_glass_pane":{"conditional":[{"model":"white_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"white_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"white_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"white_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"white_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"white_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"white_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"white_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"white_stained_glass_pane_noside","y":270}]},"white_terracotta":{"states":[{"properties":{},"model":"white_terracotta"}]},"white_tulip":{"states":[{"properties":{},"model":"white_tulip"}]},"white_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"white_wool":{"states":[{"properties":{},"model":"white_wool"}]},"wither_rose":{"states":[{"properties":{},"model":"wither_rose"}]},"wither_skeleton_skull":{"states":[{"properties":{},"model":"skull"}]},"wither_skeleton_wall_skull":{"states":[{"properties":{},"model":"skull"}]},"yellow_banner":{"states":[{"properties":{},"model":"banner"}]},"yellow_bed":{"states":[{"properties":{},"model":"bed"}]},"yellow_candle":{"states":[{"properties":{"candles":"1"},"model":"yellow_candle_one_candle"},{"properties":{"candles":"2"},"model":"yellow_candle_two_candles"},{"properties":{"candles":"3"},"model":"yellow_candle_three_candles"},{"properties":{"candles":"4"},"model":"yellow_candle_four_candles"}]},"yellow_candle_cake":{"states":[{"properties":{},"model":"yellow_candle_cake"}]},"yellow_carpet":{"states":[{"properties":{},"model":"yellow_carpet"}]},"yellow_concrete":{"states":[{"properties":{},"model":"yellow_concrete"}]},"yellow_concrete_powder":{"states":[{"properties":{},"model":"yellow_concrete_powder"}]},"yellow_glazed_terracotta":{"states":[{"properties":{"facing":"east"},"model":"yellow_glazed_terracotta","y":270},{"properties":{"facing":"north"},"model":"yellow_glazed_terracotta","y":180},{"properties":{"facing":"south"},"model":"yellow_glazed_terracotta"},{"properties":{"facing":"west"},"model":"yellow_glazed_terracotta","y":90}]},"yellow_shulker_box":{"states":[{"properties":{},"model":"yellow_shulker_box"}]},"yellow_stained_glass":{"states":[{"properties":{},"model":"yellow_stained_glass"}]},"yellow_stained_glass_pane":{"conditional":[{"model":"yellow_stained_glass_pane_post"},{"properties":{"north":"true"},"model":"yellow_stained_glass_pane_side"},{"properties":{"east":"true"},"model":"yellow_stained_glass_pane_side","y":90},{"properties":{"south":"true"},"model":"yellow_stained_glass_pane_side_alt"},{"properties":{"west":"true"},"model":"yellow_stained_glass_pane_side_alt","y":90},{"properties":{"north":"false"},"model":"yellow_stained_glass_pane_noside"},{"properties":{"east":"false"},"model":"yellow_stained_glass_pane_noside_alt"},{"properties":{"south":"false"},"model":"yellow_stained_glass_pane_noside_alt","y":90},{"properties":{"west":"false"},"model":"yellow_stained_glass_pane_noside","y":270}]},"yellow_terracotta":{"states":[{"properties":{},"model":"yellow_terracotta"}]},"yellow_wall_banner":{"states":[{"properties":{},"model":"banner"}]},"yellow_wool":{"states":[{"properties":{},"model":"yellow_wool"}]},"zombie_head":{"states":[{"properties":{},"model":"skull"}]},"zombie_wall_head":{"states":[{"properties":{},"model":"skull"}]}},"blockModels":{"acacia_button":{"parent":"block\/button","textures":{"texture":"block\/acacia_planks"}},"acacia_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/acacia_planks"}},"acacia_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/acacia_planks"}},"acacia_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/acacia_door_top","bottom":"block\/acacia_door_bottom"}},"acacia_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/acacia_door_top","bottom":"block\/acacia_door_bottom"}},"acacia_door_top":{"parent":"block\/door_top","textures":{"top":"block\/acacia_door_top","bottom":"block\/acacia_door_bottom"}},"acacia_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/acacia_door_top","bottom":"block\/acacia_door_bottom"}},"acacia_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/acacia_planks"}},"acacia_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/acacia_planks"}},"acacia_leaves":{"parent":"block\/leaves","textures":{"all":"block\/acacia_leaves"}},"acacia_log":{"parent":"block\/cube_column","textures":{"end":"block\/acacia_log_top","side":"block\/acacia_log"}},"acacia_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/acacia_log_top","side":"block\/acacia_log"}},"acacia_planks":{"parent":"block\/cube_all","textures":{"all":"block\/acacia_planks"}},"acacia_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/acacia_planks"}},"acacia_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/acacia_planks"}},"acacia_sapling":{"parent":"block\/cross","textures":{"cross":"block\/acacia_sapling"}},"acacia_sign":{"textures":{"particle":"block\/acacia_planks"}},"acacia_slab":{"parent":"block\/slab","textures":{"bottom":"block\/acacia_planks","top":"block\/acacia_planks","side":"block\/acacia_planks"}},"acacia_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/acacia_planks","top":"block\/acacia_planks","side":"block\/acacia_planks"}},"acacia_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/acacia_planks","top":"block\/acacia_planks","side":"block\/acacia_planks"}},"acacia_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/acacia_planks","top":"block\/acacia_planks","side":"block\/acacia_planks"}},"acacia_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/acacia_planks","top":"block\/acacia_planks","side":"block\/acacia_planks"}},"acacia_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/acacia_trapdoor"}},"acacia_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/acacia_trapdoor"}},"acacia_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/acacia_trapdoor"}},"acacia_wood":{"parent":"block\/cube_column","textures":{"end":"block\/acacia_log","side":"block\/acacia_log"}},"activator_rail":{"parent":"block\/rail_flat","textures":{"rail":"block\/activator_rail"}},"activator_rail_on":{"parent":"block\/rail_flat","textures":{"rail":"block\/activator_rail_on"}},"activator_rail_on_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/activator_rail_on"}},"activator_rail_on_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/activator_rail_on"}},"activator_rail_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/activator_rail"}},"activator_rail_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/activator_rail"}},"air":{},"allium":{"parent":"block\/cross","textures":{"cross":"block\/allium"}},"amethyst_block":{"parent":"block\/cube_all","textures":{"all":"block\/amethyst_block"}},"amethyst_cluster":{"parent":"block\/cross","textures":{"cross":"block\/amethyst_cluster"}},"ancient_debris":{"parent":"block\/cube_column","textures":{"end":"block\/ancient_debris_top","side":"block\/ancient_debris_side"}},"andesite":{"parent":"block\/cube_all","textures":{"all":"block\/andesite"}},"andesite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/andesite","top":"block\/andesite","side":"block\/andesite"}},"andesite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/andesite","top":"block\/andesite","side":"block\/andesite"}},"andesite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/andesite","top":"block\/andesite","side":"block\/andesite"}},"andesite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/andesite","top":"block\/andesite","side":"block\/andesite"}},"andesite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/andesite","top":"block\/andesite","side":"block\/andesite"}},"andesite_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/andesite"}},"andesite_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/andesite"}},"andesite_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/andesite"}},"andesite_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/andesite"}},"anvil":{"parent":"block\/template_anvil","textures":{"top":"block\/anvil_top"}},"attached_melon_stem":{"parent":"block\/stem_fruit","textures":{"stem":"block\/melon_stem","upperstem":"block\/attached_melon_stem"}},"attached_pumpkin_stem":{"parent":"block\/stem_fruit","textures":{"stem":"block\/pumpkin_stem","upperstem":"block\/attached_pumpkin_stem"}},"azure_bluet":{"parent":"block\/cross","textures":{"cross":"block\/azure_bluet"}},"bamboo1_age0":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[0,0,2,16],"texture":"#all"},"south":{"uv":[0,0,2,16],"texture":"#all"},"west":{"uv":[0,0,2,16],"texture":"#all"},"east":{"uv":[0,0,2,16],"texture":"#all"}}}]},"bamboo1_age1":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[0,0,3,16],"texture":"#all"},"south":{"uv":[0,0,3,16],"texture":"#all"},"west":{"uv":[0,0,3,16],"texture":"#all"},"east":{"uv":[0,0,3,16],"texture":"#all"}}}]},"bamboo2_age0":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[3,0,5,16],"texture":"#all"},"south":{"uv":[3,0,5,16],"texture":"#all"},"west":{"uv":[3,0,5,16],"texture":"#all"},"east":{"uv":[3,0,5,16],"texture":"#all"}}}]},"bamboo2_age1":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[3,0,6,16],"texture":"#all"},"south":{"uv":[3,0,6,16],"texture":"#all"},"west":{"uv":[3,0,6,16],"texture":"#all"},"east":{"uv":[3,0,6,16],"texture":"#all"}}}]},"bamboo3_age0":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[6,0,8,16],"texture":"#all"},"south":{"uv":[6,0,8,16],"texture":"#all"},"west":{"uv":[6,0,8,16],"texture":"#all"},"east":{"uv":[6,0,8,16],"texture":"#all"}}}]},"bamboo3_age1":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[6,0,9,16],"texture":"#all"},"south":{"uv":[6,0,9,16],"texture":"#all"},"west":{"uv":[6,0,9,16],"texture":"#all"},"east":{"uv":[6,0,9,16],"texture":"#all"}}}]},"bamboo4_age0":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[13,4,15,6],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,15,2],"texture":"#all","cullface":"up"},"north":{"uv":[9,0,11,16],"texture":"#all"},"south":{"uv":[9,0,11,16],"texture":"#all"},"west":{"uv":[9,0,11,16],"texture":"#all"},"east":{"uv":[9,0,11,16],"texture":"#all"}}}]},"bamboo4_age1":{"textures":{"all":"block\/bamboo_stalk","particle":"block\/bamboo_stalk"},"elements":[{"from":[6.5,0,6.5],"to":[9.5,16,9.5],"faces":{"down":{"uv":[13,4,16,7],"texture":"#all","cullface":"down"},"up":{"uv":[13,0,16,3],"texture":"#all","cullface":"up"},"north":{"uv":[9,0,12,16],"texture":"#all"},"south":{"uv":[9,0,12,16],"texture":"#all"},"west":{"uv":[9,0,12,16],"texture":"#all"},"east":{"uv":[9,0,12,16],"texture":"#all"}}}]},"bamboo_large_leaves":{"ambientocclusion":false,"textures":{"texture":"block\/bamboo_large_leaves","particle":"block\/bamboo_large_leaves"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}}]},"bamboo_sapling":{"parent":"block\/tinted_cross","textures":{"cross":"block\/bamboo_stage0"}},"bamboo_small_leaves":{"ambientocclusion":false,"textures":{"texture":"block\/bamboo_small_leaves","particle":"block\/bamboo_small_leaves"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}}]},"banner":{"textures":{"particle":"block\/oak_planks"}},"barrel":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/barrel_top","bottom":"block\/barrel_bottom","side":"block\/barrel_side"}},"barrel_open":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/barrel_top_open","bottom":"block\/barrel_bottom","side":"block\/barrel_side"}},"barrier":{"textures":{"particle":"item\/barrier"}},"basalt":{"parent":"block\/cube_column","textures":{"end":"block\/basalt_top","side":"block\/basalt_side"}},"beacon":{"parent":"block\/block","ambientocclusion":false,"textures":{"particle":"block\/glass","glass":"block\/glass","obsidian":"block\/obsidian","beacon":"block\/beacon"},"elements":[{"__comment":"Glass shell","from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#glass"},"up":{"uv":[0,0,16,16],"texture":"#glass"},"north":{"uv":[0,0,16,16],"texture":"#glass"},"south":{"uv":[0,0,16,16],"texture":"#glass"},"west":{"uv":[0,0,16,16],"texture":"#glass"},"east":{"uv":[0,0,16,16],"texture":"#glass"}}},{"__comment":"Obsidian base","from":[2,0.1,2],"to":[14,3,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#obsidian"},"up":{"uv":[2,2,14,14],"texture":"#obsidian"},"north":{"uv":[2,13,14,16],"texture":"#obsidian"},"south":{"uv":[2,13,14,16],"texture":"#obsidian"},"west":{"uv":[2,13,14,16],"texture":"#obsidian"},"east":{"uv":[2,13,14,16],"texture":"#obsidian"}}},{"__comment":"Inner beacon texture","from":[3,3,3],"to":[13,14,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#beacon"},"up":{"uv":[3,3,13,13],"texture":"#beacon"},"north":{"uv":[3,2,13,13],"texture":"#beacon"},"south":{"uv":[3,2,13,13],"texture":"#beacon"},"west":{"uv":[3,2,13,13],"texture":"#beacon"},"east":{"uv":[3,2,13,13],"texture":"#beacon"}}}]},"bed":{"textures":{"particle":"block\/oak_planks"}},"bedrock":{"parent":"block\/cube_all","textures":{"all":"block\/bedrock"}},"bedrock_mirrored":{"parent":"block\/cube_mirrored_all","textures":{"all":"block\/bedrock"}},"beehive":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/beehive_end","bottom":"block\/beehive_end","side":"block\/beehive_side","front":"block\/beehive_front","particle":"block\/beehive_side"}},"beehive_honey":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/beehive_end","bottom":"block\/beehive_end","side":"block\/beehive_side","front":"block\/beehive_front_honey","particle":"block\/beehive_side"}},"beetroots_stage0":{"parent":"block\/crop","textures":{"crop":"block\/beetroots_stage0"}},"beetroots_stage1":{"parent":"block\/crop","textures":{"crop":"block\/beetroots_stage1"}},"beetroots_stage2":{"parent":"block\/crop","textures":{"crop":"block\/beetroots_stage2"}},"beetroots_stage3":{"parent":"block\/crop","textures":{"crop":"block\/beetroots_stage3"}},"bee_nest":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/bee_nest_top","bottom":"block\/bee_nest_bottom","side":"block\/bee_nest_side","front":"block\/bee_nest_front","particle":"block\/bee_nest_side"}},"bee_nest_honey":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/bee_nest_top","bottom":"block\/bee_nest_bottom","side":"block\/bee_nest_side","front":"block\/bee_nest_front_honey","particle":"block\/bee_nest_side"}},"bell_between_walls":{"textures":{"particle":"block\/bell_bottom","bar":"block\/dark_oak_planks"},"elements":[{"from":[0,13,7],"to":[16,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"east":{"uv":[5,4,7,6],"texture":"#bar","cullface":"east"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"west":{"uv":[5,4,7,6],"texture":"#bar","cullface":"west"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}}]},"bell_ceiling":{"textures":{"particle":"block\/bell_bottom","bar":"block\/dark_oak_planks"},"elements":[{"from":[7,13,7],"to":[9,16,9],"faces":{"north":{"uv":[7,2,9,5],"texture":"#bar"},"east":{"uv":[1,2,3,5],"texture":"#bar"},"south":{"uv":[6,2,8,5],"texture":"#bar"},"west":{"uv":[4,2,6,5],"texture":"#bar"},"up":{"uv":[1,3,3,5],"texture":"#bar","cullface":"up"}}}]},"bell_floor":{"textures":{"particle":"block\/bell_bottom","bar":"block\/dark_oak_planks","post":"block\/stone"},"elements":[{"from":[2,13,7],"to":[14,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}},{"from":[14,0,6],"to":[16,16,10],"faces":{"north":{"uv":[0,1,2,16],"texture":"#post"},"east":{"uv":[0,1,4,16],"texture":"#post"},"south":{"uv":[0,1,2,16],"texture":"#post"},"west":{"uv":[0,1,4,16],"texture":"#post"},"up":{"uv":[0,0,2,4],"texture":"#post","cullface":"up"},"down":{"uv":[0,0,2,4],"texture":"#post","cullface":"down"}}},{"from":[0,0,6],"to":[2,16,10],"faces":{"north":{"uv":[0,1,2,16],"texture":"#post"},"east":{"uv":[0,1,4,16],"texture":"#post"},"south":{"uv":[0,1,2,16],"texture":"#post"},"west":{"uv":[0,1,4,16],"texture":"#post"},"up":{"uv":[0,0,2,4],"texture":"#post","cullface":"up"},"down":{"uv":[0,0,2,4],"texture":"#post","cullface":"down"}}}]},"bell_wall":{"textures":{"particle":"block\/bell_bottom","bar":"block\/dark_oak_planks"},"elements":[{"from":[3,13,7],"to":[16,15,9],"faces":{"north":{"uv":[2,2,14,4],"texture":"#bar"},"east":{"uv":[5,4,7,6],"texture":"#bar","cullface":"east"},"south":{"uv":[2,3,14,5],"texture":"#bar"},"west":{"uv":[5,4,7,6],"texture":"#bar"},"up":{"uv":[2,3,14,5],"texture":"#bar"},"down":{"uv":[2,3,14,5],"texture":"#bar"}}}]},"birch_button":{"parent":"block\/button","textures":{"texture":"block\/birch_planks"}},"birch_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/birch_planks"}},"birch_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/birch_planks"}},"birch_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/birch_door_top","bottom":"block\/birch_door_bottom"}},"birch_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/birch_door_top","bottom":"block\/birch_door_bottom"}},"birch_door_top":{"parent":"block\/door_top","textures":{"top":"block\/birch_door_top","bottom":"block\/birch_door_bottom"}},"birch_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/birch_door_top","bottom":"block\/birch_door_bottom"}},"birch_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/birch_planks"}},"birch_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/birch_planks"}},"birch_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/birch_planks"}},"birch_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/birch_planks"}},"birch_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/birch_planks"}},"birch_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/birch_planks"}},"birch_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/birch_planks"}},"birch_leaves":{"parent":"block\/leaves","textures":{"all":"block\/birch_leaves"}},"birch_log":{"parent":"block\/cube_column","textures":{"end":"block\/birch_log_top","side":"block\/birch_log"}},"birch_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/birch_log_top","side":"block\/birch_log"}},"birch_planks":{"parent":"block\/cube_all","textures":{"all":"block\/birch_planks"}},"birch_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/birch_planks"}},"birch_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/birch_planks"}},"birch_sapling":{"parent":"block\/cross","textures":{"cross":"block\/birch_sapling"}},"birch_sign":{"textures":{"particle":"block\/birch_planks"}},"birch_slab":{"parent":"block\/slab","textures":{"bottom":"block\/birch_planks","top":"block\/birch_planks","side":"block\/birch_planks"}},"birch_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/birch_planks","top":"block\/birch_planks","side":"block\/birch_planks"}},"birch_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/birch_planks","top":"block\/birch_planks","side":"block\/birch_planks"}},"birch_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/birch_planks","top":"block\/birch_planks","side":"block\/birch_planks"}},"birch_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/birch_planks","top":"block\/birch_planks","side":"block\/birch_planks"}},"birch_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/birch_trapdoor"}},"birch_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/birch_trapdoor"}},"birch_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/birch_trapdoor"}},"birch_wood":{"parent":"block\/cube_column","textures":{"end":"block\/birch_log","side":"block\/birch_log"}},"blackstone":{"parent":"block\/cube_column","textures":{"end":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/blackstone_top","top":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/blackstone_top","top":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/blackstone_top","top":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/blackstone_top","top":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/blackstone_top","top":"block\/blackstone_top","side":"block\/blackstone"}},"blackstone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/blackstone"}},"blackstone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/blackstone"}},"blackstone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/blackstone"}},"blackstone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/blackstone"}},"black_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/black_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"black_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/black_candle","particle":"block\/black_candle"}},"black_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/black_candle","particle":"block\/black_candle"}},"black_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/black_candle","particle":"block\/black_candle"}},"black_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/black_candle","particle":"block\/black_candle"}},"black_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/black_wool"}},"black_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/black_concrete"}},"black_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/black_concrete_powder"}},"black_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/black_glazed_terracotta"}},"black_shulker_box":{"textures":{"particle":"block\/black_shulker_box"}},"black_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/black_stained_glass"}},"black_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/black_stained_glass"}},"black_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/black_stained_glass"}},"black_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/black_stained_glass","edge":"block\/black_stained_glass_pane_top"}},"black_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/black_stained_glass","edge":"block\/black_stained_glass_pane_top"}},"black_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/black_stained_glass","edge":"block\/black_stained_glass_pane_top"}},"black_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/black_terracotta"}},"black_wool":{"parent":"block\/cube_all","textures":{"all":"block\/black_wool"}},"blast_furnace":{"parent":"block\/orientable","textures":{"top":"block\/blast_furnace_top","front":"block\/blast_furnace_front","side":"block\/blast_furnace_side"}},"blast_furnace_on":{"parent":"block\/orientable","textures":{"top":"block\/blast_furnace_top","front":"block\/blast_furnace_front_on","side":"block\/blast_furnace_side"}},"block":{"gui_light":"side","display":{"gui":{"rotation":[30,225,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"ground":{"rotation":[0,0,0],"translation":[0,3,0],"scale":[0.25,0.25,0.25]},"fixed":{"rotation":[0,0,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]},"thirdperson_righthand":{"rotation":[75,45,0],"translation":[0,2.5,0],"scale":[0.375,0.375,0.375]},"firstperson_righthand":{"rotation":[0,45,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]},"firstperson_lefthand":{"rotation":[0,225,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}}},"blue_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/blue_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"blue_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/blue_candle","particle":"block\/blue_candle"}},"blue_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/blue_candle","particle":"block\/blue_candle"}},"blue_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/blue_candle","particle":"block\/blue_candle"}},"blue_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/blue_candle","particle":"block\/blue_candle"}},"blue_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/blue_wool"}},"blue_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/blue_concrete"}},"blue_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/blue_concrete_powder"}},"blue_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/blue_glazed_terracotta"}},"blue_ice":{"parent":"block\/cube_all","textures":{"all":"block\/blue_ice"}},"blue_orchid":{"parent":"block\/cross","textures":{"cross":"block\/blue_orchid"}},"blue_shulker_box":{"textures":{"particle":"block\/blue_shulker_box"}},"blue_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/blue_stained_glass"}},"blue_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/blue_stained_glass"}},"blue_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/blue_stained_glass"}},"blue_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/blue_stained_glass","edge":"block\/blue_stained_glass_pane_top"}},"blue_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/blue_stained_glass","edge":"block\/blue_stained_glass_pane_top"}},"blue_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/blue_stained_glass","edge":"block\/blue_stained_glass_pane_top"}},"blue_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/blue_terracotta"}},"blue_wool":{"parent":"block\/cube_all","textures":{"all":"block\/blue_wool"}},"bone_block":{"parent":"block\/cube_column","textures":{"end":"block\/bone_block_top","side":"block\/bone_block_side"}},"bookshelf":{"parent":"block\/cube_column","textures":{"end":"block\/oak_planks","side":"block\/bookshelf"}},"brain_coral":{"parent":"block\/cross","textures":{"cross":"block\/brain_coral"}},"brain_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/brain_coral_block"}},"brain_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/brain_coral_fan"}},"brain_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/brain_coral_fan"}},"brewing_stand":{"textures":{"particle":"block\/brewing_stand","base":"block\/brewing_stand_base","stand":"block\/brewing_stand"},"elements":[{"from":[7,0,7],"to":[9,14,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#stand"},"up":{"uv":[7,7,9,9],"texture":"#stand"},"north":{"uv":[7,2,9,16],"texture":"#stand"},"south":{"uv":[7,2,9,16],"texture":"#stand"},"west":{"uv":[7,2,9,16],"texture":"#stand"},"east":{"uv":[7,2,9,16],"texture":"#stand"}}},{"from":[9,0,5],"to":[15,2,11],"faces":{"down":{"uv":[9,5,15,11],"texture":"#base","cullface":"down"},"up":{"uv":[9,5,15,11],"texture":"#base"},"north":{"uv":[9,14,15,16],"texture":"#base"},"south":{"uv":[9,14,15,16],"texture":"#base"},"west":{"uv":[5,14,11,16],"texture":"#base"},"east":{"uv":[5,14,11,16],"texture":"#base"}}},{"from":[2,0,1],"to":[8,2,7],"faces":{"down":{"uv":[2,1,8,7],"texture":"#base","cullface":"down"},"up":{"uv":[2,1,8,7],"texture":"#base"},"north":{"uv":[2,14,8,16],"texture":"#base"},"south":{"uv":[2,14,8,16],"texture":"#base"},"west":{"uv":[1,14,7,16],"texture":"#base"},"east":{"uv":[1,14,7,16],"texture":"#base"}}},{"from":[2,0,9],"to":[8,2,15],"faces":{"down":{"uv":[2,9,8,15],"texture":"#base","cullface":"down"},"up":{"uv":[2,9,8,15],"texture":"#base"},"north":{"uv":[2,14,8,16],"texture":"#base"},"south":{"uv":[2,14,8,16],"texture":"#base"},"west":{"uv":[9,14,15,16],"texture":"#base"},"east":{"uv":[9,14,15,16],"texture":"#base"}}}]},"brewing_stand_bottle0":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[8,0,8],"to":[16,16,8],"faces":{"north":{"uv":[0,0,8,16],"texture":"#stand"},"south":{"uv":[8,0,0,16],"texture":"#stand"}}}]},"brewing_stand_bottle1":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[-0.41,0,8],"to":[7.59,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":-45},"faces":{"north":{"uv":[8,0,0,16],"texture":"#stand"},"south":{"uv":[0,0,8,16],"texture":"#stand"}}}]},"brewing_stand_bottle2":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[-0.41,0,8],"to":[7.59,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"faces":{"north":{"uv":[8,0,0,16],"texture":"#stand"},"south":{"uv":[0,0,8,16],"texture":"#stand"}}}]},"brewing_stand_empty0":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[8,0,8],"to":[16,16,8],"faces":{"north":{"uv":[16,0,8,16],"texture":"#stand"},"south":{"uv":[8,0,16,16],"texture":"#stand"}}}]},"brewing_stand_empty1":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[0,0,8],"to":[8,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":-45},"faces":{"north":{"uv":[8,0,16,16],"texture":"#stand"},"south":{"uv":[16,0,8,16],"texture":"#stand"}}}]},"brewing_stand_empty2":{"textures":{"particle":"block\/brewing_stand","stand":"block\/brewing_stand"},"elements":[{"from":[0,0,8],"to":[8,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"faces":{"north":{"uv":[8,0,16,16],"texture":"#stand"},"south":{"uv":[16,0,8,16],"texture":"#stand"}}}]},"bricks":{"parent":"block\/cube_all","textures":{"all":"block\/bricks"}},"brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/bricks","top":"block\/bricks","side":"block\/bricks"}},"brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/bricks","top":"block\/bricks","side":"block\/bricks"}},"brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/bricks","top":"block\/bricks","side":"block\/bricks"}},"brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/bricks","top":"block\/bricks","side":"block\/bricks"}},"brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/bricks","top":"block\/bricks","side":"block\/bricks"}},"brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/bricks"}},"brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/bricks"}},"brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/bricks"}},"brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/bricks"}},"brown_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/brown_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"brown_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/brown_candle","particle":"block\/brown_candle"}},"brown_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/brown_candle","particle":"block\/brown_candle"}},"brown_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/brown_candle","particle":"block\/brown_candle"}},"brown_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/brown_candle","particle":"block\/brown_candle"}},"brown_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/brown_wool"}},"brown_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/brown_concrete"}},"brown_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/brown_concrete_powder"}},"brown_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/brown_glazed_terracotta"}},"brown_mushroom":{"parent":"block\/cross","textures":{"cross":"block\/brown_mushroom"}},"brown_mushroom_block":{"parent":"block\/template_single_face","textures":{"texture":"block\/brown_mushroom_block"}},"brown_mushroom_block_inventory":{"parent":"block\/cube_all","textures":{"all":"block\/brown_mushroom_block"}},"brown_shulker_box":{"textures":{"particle":"block\/brown_shulker_box"}},"brown_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/brown_stained_glass"}},"brown_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/brown_stained_glass"}},"brown_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/brown_stained_glass"}},"brown_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/brown_stained_glass","edge":"block\/brown_stained_glass_pane_top"}},"brown_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/brown_stained_glass","edge":"block\/brown_stained_glass_pane_top"}},"brown_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/brown_stained_glass","edge":"block\/brown_stained_glass_pane_top"}},"brown_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/brown_terracotta"}},"brown_wool":{"parent":"block\/cube_all","textures":{"all":"block\/brown_wool"}},"bubble_coral":{"parent":"block\/cross","textures":{"cross":"block\/bubble_coral"}},"bubble_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/bubble_coral_block"}},"bubble_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/bubble_coral_fan"}},"bubble_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/bubble_coral_fan"}},"budding_amethyst":{"parent":"block\/cube_all","textures":{"all":"block\/budding_amethyst"}},"button":{"textures":{"particle":"#texture"},"elements":[{"from":[5,0,6],"to":[11,2,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture","cullface":"down"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,14,11,16],"texture":"#texture"},"south":{"uv":[5,14,11,16],"texture":"#texture"},"west":{"uv":[6,14,10,16],"texture":"#texture"},"east":{"uv":[6,14,10,16],"texture":"#texture"}}}]},"button_inventory":{"parent":"block\/block","textures":{"particle":"#texture"},"elements":[{"from":[5,6,6],"to":[11,10,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,12,11,16],"texture":"#texture"},"south":{"uv":[5,12,11,16],"texture":"#texture"},"west":{"uv":[6,12,10,16],"texture":"#texture"},"east":{"uv":[6,12,10,16],"texture":"#texture"}}}]},"button_pressed":{"textures":{"particle":"#texture"},"elements":[{"from":[5,0,6],"to":[11,1,10],"faces":{"down":{"uv":[5,6,11,10],"texture":"#texture","cullface":"down"},"up":{"uv":[5,10,11,6],"texture":"#texture"},"north":{"uv":[5,14,11,15],"texture":"#texture"},"south":{"uv":[5,14,11,15],"texture":"#texture"},"west":{"uv":[6,14,10,15],"texture":"#texture"},"east":{"uv":[6,14,10,15],"texture":"#texture"}}}]},"cactus":{"parent":"block\/block","ambientocclusion":false,"textures":{"particle":"block\/cactus_side","bottom":"block\/cactus_bottom","top":"block\/cactus_top","side":"block\/cactus_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up"}}},{"from":[0,0,1],"to":[16,16,15],"faces":{"north":{"uv":[0,0,16,16],"texture":"#side"},"south":{"uv":[0,0,16,16],"texture":"#side"}}},{"from":[1,0,0],"to":[15,16,16],"faces":{"west":{"uv":[0,0,16,16],"texture":"#side"},"east":{"uv":[0,0,16,16],"texture":"#side"}}}]},"cake":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side"},"elements":[{"from":[1,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"cake_slice1":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[3,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice2":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[5,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice3":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[7,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice4":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[9,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice5":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[11,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"cake_slice6":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side","inside":"block\/cake_inner"},"elements":[{"from":[13,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#inside"},"east":{"texture":"#side"}}}]},"calcite":{"parent":"block\/cube_all","textures":{"all":"block\/calcite"}},"campfire":{"parent":"block\/template_campfire","textures":{"fire":"block\/campfire_fire","lit_log":"block\/campfire_log_lit"}},"campfire_off":{"parent":"block\/block","display":{"head":{"rotation":[0,0,0],"translation":[0,10.5,0],"scale":[1,1,1]}},"textures":{"particle":"block\/campfire_log","log":"block\/campfire_log"},"elements":[{"from":[1,0,0],"to":[5,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,1,16,5],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,0,0,4],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,11],"to":[16,7,15],"faces":{"north":{"uv":[16,0,0,4],"texture":"#log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[0,0,16,4],"texture":"#log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,0,16,4],"texture":"#log"}}},{"from":[11,0,0],"to":[15,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,0,16,4],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,1,0,5],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,1],"to":[16,7,5],"faces":{"north":{"uv":[0,0,16,4],"texture":"#log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[16,0,0,4],"texture":"#log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,0,16,4],"texture":"#log"}}},{"from":[5,0,0],"to":[11,1,16],"faces":{"north":{"uv":[0,15,6,16],"texture":"#log","cullface":"north"},"south":{"uv":[10,15,16,16],"texture":"#log","cullface":"south"},"up":{"uv":[0,8,16,14],"rotation":90,"texture":"#log"},"down":{"uv":[0,8,16,14],"rotation":90,"texture":"#log","cullface":"down"}}}]},"candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/candle","particle":"block\/candle"}},"candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/candle","particle":"block\/candle"}},"candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/candle","particle":"block\/candle"}},"candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/candle","particle":"block\/candle"}},"carpet":{"parent":"block\/thin_block","textures":{"particle":"#wool"},"elements":[{"from":[0,0,0],"to":[16,1,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#wool","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#wool"},"north":{"uv":[0,15,16,16],"texture":"#wool","cullface":"north"},"south":{"uv":[0,15,16,16],"texture":"#wool","cullface":"south"},"west":{"uv":[0,15,16,16],"texture":"#wool","cullface":"west"},"east":{"uv":[0,15,16,16],"texture":"#wool","cullface":"east"}}}]},"carrots_stage0":{"parent":"block\/crop","textures":{"crop":"block\/carrots_stage0"}},"carrots_stage1":{"parent":"block\/crop","textures":{"crop":"block\/carrots_stage1"}},"carrots_stage2":{"parent":"block\/crop","textures":{"crop":"block\/carrots_stage2"}},"carrots_stage3":{"parent":"block\/crop","textures":{"crop":"block\/carrots_stage3"}},"cartography_table":{"parent":"block\/cube","textures":{"particle":"block\/cartography_table_side3","north":"block\/cartography_table_side3","south":"block\/cartography_table_side1","east":"block\/cartography_table_side3","west":"block\/cartography_table_side2","up":"block\/cartography_table_top","down":"block\/dark_oak_planks"}},"carved_pumpkin":{"parent":"block\/orientable","textures":{"top":"block\/pumpkin_top","front":"block\/carved_pumpkin","side":"block\/pumpkin_side"}},"cauldron":{"ambientocclusion":false,"textures":{"particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side","inside":"block\/cauldron_inner"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}}]},"chain":{"parent":"block\/block","textures":{"particle":"block\/chain","all":"block\/chain"},"elements":[{"from":[6.5,0,8],"to":[9.5,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"north":{"uv":[0,0,3,16],"texture":"#all"},"south":{"uv":[0,0,3,16],"texture":"#all"}}},{"from":[8,0,6.5],"to":[8,16,9.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"west":{"uv":[3,0,6,16],"texture":"#all"},"east":{"uv":[3,0,6,16],"texture":"#all"}}}]},"chain_command_block":{"parent":"block\/template_command_block","textures":{"front":"block\/chain_command_block_front","back":"block\/chain_command_block_back","side":"block\/chain_command_block_side"}},"chain_command_block_conditional":{"parent":"block\/template_command_block","textures":{"front":"block\/chain_command_block_front","back":"block\/chain_command_block_back","side":"block\/chain_command_block_conditional"}},"chest":{"textures":{"particle":"block\/oak_planks"}},"chipped_anvil":{"parent":"block\/template_anvil","textures":{"top":"block\/chipped_anvil_top"}},"chiseled_nether_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/chiseled_nether_bricks"}},"chiseled_polished_blackstone":{"parent":"block\/cube_all","textures":{"all":"block\/chiseled_polished_blackstone"}},"chiseled_quartz_block":{"parent":"block\/cube_column","textures":{"end":"block\/chiseled_quartz_block_top","side":"block\/chiseled_quartz_block"}},"chiseled_red_sandstone":{"parent":"block\/cube_column","textures":{"end":"block\/red_sandstone_top","side":"block\/chiseled_red_sandstone"}},"chiseled_sandstone":{"parent":"block\/cube_column","textures":{"end":"block\/sandstone_top","side":"block\/chiseled_sandstone"}},"chiseled_stone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/chiseled_stone_bricks"}},"chorus_flower":{"parent":"block\/template_chorus_flower","textures":{"texture":"block\/chorus_flower"}},"chorus_flower_dead":{"parent":"block\/template_chorus_flower","textures":{"texture":"block\/chorus_flower_dead"}},"chorus_plant":{"parent":"block\/block","ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[2,14,2],"to":[14,16,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#texture","cullface":"up"},"north":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"south":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"west":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"},"east":{"uv":[2,0,14,2],"texture":"#texture","cullface":"up"}}},{"from":[0,2,2],"to":[2,14,14],"faces":{"down":{"uv":[16,14,14,2],"texture":"#texture","cullface":"west"},"up":{"uv":[0,2,2,14],"texture":"#texture","cullface":"west"},"north":{"uv":[14,2,16,14],"texture":"#texture","cullface":"west"},"south":{"uv":[0,2,2,14],"texture":"#texture","cullface":"west"},"west":{"uv":[2,2,14,14],"texture":"#texture","cullface":"west"}}},{"from":[2,2,0],"to":[14,14,2],"faces":{"down":{"uv":[14,2,2,0],"texture":"#texture","cullface":"north"},"up":{"uv":[2,0,14,2],"texture":"#texture","cullface":"north"},"north":{"uv":[2,2,14,14],"texture":"#texture","cullface":"north"},"west":{"uv":[0,2,2,14],"texture":"#texture","cullface":"north"},"east":{"uv":[14,2,16,14],"texture":"#texture","cullface":"north"}}},{"from":[2,2,14],"to":[14,14,16],"faces":{"down":{"uv":[14,16,2,14],"texture":"#texture","cullface":"south"},"up":{"uv":[2,14,14,16],"texture":"#texture","cullface":"south"},"south":{"uv":[2,2,14,14],"texture":"#texture","cullface":"south"},"west":{"uv":[14,2,16,14],"texture":"#texture","cullface":"south"},"east":{"uv":[0,2,2,14],"texture":"#texture","cullface":"south"}}},{"from":[14,2,2],"to":[16,14,14],"faces":{"down":{"uv":[2,14,0,2],"texture":"#texture","cullface":"east"},"up":{"uv":[14,2,16,14],"texture":"#texture","cullface":"east"},"north":{"uv":[0,2,2,14],"texture":"#texture","cullface":"east"},"south":{"uv":[14,2,16,14],"texture":"#texture","cullface":"east"},"east":{"uv":[2,2,14,14],"texture":"#texture","cullface":"east"}}},{"from":[2,0,2],"to":[14,2,14],"faces":{"down":{"uv":[14,14,2,2],"texture":"#texture","cullface":"down"},"north":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"south":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"west":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"},"east":{"uv":[2,14,14,16],"texture":"#texture","cullface":"down"}}},{"from":[2,2,2],"to":[14,14,14],"faces":{"down":{"uv":[14,14,2,2],"texture":"#inside"},"up":{"uv":[2,2,14,14],"texture":"#inside"},"north":{"uv":[2,2,14,14],"texture":"#inside"},"south":{"uv":[2,2,14,14],"texture":"#inside"},"west":{"uv":[2,2,14,14],"texture":"#inside"},"east":{"uv":[2,2,14,14],"texture":"#inside"}}}]},"chorus_plant_noside":{"ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}}]},"chorus_plant_noside1":{"ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[4,4,3],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_noside2":{"ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[5,5,2],"to":[11,11,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_noside3":{"ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[4,4,4],"to":[12,12,12],"faces":{"north":{"texture":"#inside"}}},{"from":[4,4,3],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"chorus_plant_side":{"ambientocclusion":false,"textures":{"texture":"block\/chorus_plant","inside":"block\/chorus_plant","particle":"block\/chorus_plant"},"elements":[{"from":[4,4,0],"to":[12,12,4],"faces":{"down":{"texture":"#texture"},"up":{"texture":"#texture"},"north":{"texture":"#texture","cullface":"north"},"west":{"texture":"#texture"},"east":{"texture":"#texture"}}}]},"clay":{"parent":"block\/cube_all","textures":{"all":"block\/clay"}},"coal_block":{"parent":"block\/cube_all","textures":{"all":"block\/coal_block"}},"coal_ore":{"parent":"block\/cube_all","textures":{"all":"block\/coal_ore"}},"coarse_dirt":{"parent":"block\/cube_all","textures":{"all":"block\/coarse_dirt"}},"cobblestone":{"parent":"block\/cube_all","textures":{"all":"block\/cobblestone"}},"cobblestone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/cobblestone","top":"block\/cobblestone","side":"block\/cobblestone"}},"cobblestone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/cobblestone","top":"block\/cobblestone","side":"block\/cobblestone"}},"cobblestone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/cobblestone","top":"block\/cobblestone","side":"block\/cobblestone"}},"cobblestone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/cobblestone","top":"block\/cobblestone","side":"block\/cobblestone"}},"cobblestone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/cobblestone","top":"block\/cobblestone","side":"block\/cobblestone"}},"cobblestone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/cobblestone"}},"cobblestone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/cobblestone"}},"cobblestone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/cobblestone"}},"cobblestone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/cobblestone"}},"cobweb":{"parent":"block\/cross","textures":{"cross":"block\/cobweb"}},"cocoa_stage0":{"ambientocclusion":false,"textures":{"particle":"block\/cocoa_stage0","cocoa":"block\/cocoa_stage0"},"elements":[{"from":[6,7,11],"to":[10,12,15],"faces":{"down":{"uv":[0,0,4,4],"texture":"#cocoa"},"up":{"uv":[0,0,4,4],"texture":"#cocoa"},"north":{"uv":[11,4,15,9],"texture":"#cocoa"},"south":{"uv":[11,4,15,9],"texture":"#cocoa"},"west":{"uv":[11,4,15,9],"texture":"#cocoa"},"east":{"uv":[11,4,15,9],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"cocoa_stage1":{"ambientocclusion":false,"textures":{"particle":"block\/cocoa_stage1","cocoa":"block\/cocoa_stage1"},"elements":[{"from":[5,5,9],"to":[11,12,15],"faces":{"down":{"uv":[0,0,6,6],"texture":"#cocoa"},"up":{"uv":[0,0,6,6],"texture":"#cocoa"},"north":{"uv":[9,4,15,11],"texture":"#cocoa"},"south":{"uv":[9,4,15,11],"texture":"#cocoa"},"west":{"uv":[9,4,15,11],"texture":"#cocoa"},"east":{"uv":[9,4,15,11],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"cocoa_stage2":{"ambientocclusion":false,"textures":{"particle":"block\/cocoa_stage2","cocoa":"block\/cocoa_stage2"},"elements":[{"from":[4,3,7],"to":[12,12,15],"faces":{"down":{"uv":[0,0,7,7],"texture":"#cocoa"},"up":{"uv":[0,0,7,7],"texture":"#cocoa"},"north":{"uv":[7,4,15,13],"texture":"#cocoa"},"south":{"uv":[7,4,15,13],"texture":"#cocoa"},"west":{"uv":[7,4,15,13],"texture":"#cocoa"},"east":{"uv":[7,4,15,13],"texture":"#cocoa"}}},{"from":[8,12,12],"to":[8,16,16],"faces":{"west":{"uv":[12,0,16,4],"texture":"#cocoa"},"east":{"uv":[16,0,12,4],"texture":"#cocoa"}}}]},"command_block":{"parent":"block\/template_command_block","textures":{"front":"block\/command_block_front","back":"block\/command_block_back","side":"block\/command_block_side"}},"command_block_conditional":{"parent":"block\/template_command_block","textures":{"front":"block\/command_block_front","back":"block\/command_block_back","side":"block\/command_block_conditional"}},"comparator":{"ambientocclusion":false,"textures":{"particle":"block\/comparator","slab":"block\/smooth_stone","top":"block\/comparator","unlit":"block\/redstone_torch_off","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,2,11],"to":[6,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[10,2,11],"to":[12,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,4,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,8],"texture":"#unlit"},"south":{"uv":[7,6,9,8],"texture":"#unlit"},"west":{"uv":[7,6,9,8],"texture":"#unlit"},"east":{"uv":[7,6,9,8],"texture":"#unlit"}}}]},"comparator_on":{"ambientocclusion":false,"textures":{"particle":"block\/comparator_on","slab":"block\/smooth_stone","top":"block\/comparator_on","unlit":"block\/redstone_torch_off","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,7,11],"to":[6,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[4,2,10],"to":[6,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[3,2,11],"to":[7,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[10,7,11],"to":[12,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[10,2,10],"to":[12,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[9,2,11],"to":[13,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,2,2],"to":[9,4,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,8],"texture":"#unlit"},"south":{"uv":[7,6,9,8],"texture":"#unlit"},"west":{"uv":[7,6,9,8],"texture":"#unlit"},"east":{"uv":[7,6,9,8],"texture":"#unlit"}}}]},"comparator_on_subtract":{"ambientocclusion":false,"textures":{"particle":"block\/comparator_on","slab":"block\/smooth_stone","top":"block\/comparator_on","unlit":"block\/redstone_torch_off","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,7,11],"to":[6,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[4,2,10],"to":[6,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[3,2,11],"to":[7,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[10,7,11],"to":[12,7,13],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[10,2,10],"to":[12,8,14],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[9,2,11],"to":[13,8,13],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,5,2],"to":[9,5,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,6,5],"faces":{"west":{"uv":[6,5,10,9],"texture":"#lit"},"east":{"uv":[6,5,10,9],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,6,4],"faces":{"north":{"uv":[6,5,10,9],"texture":"#lit"},"south":{"uv":[6,5,10,9],"texture":"#lit"}}}]},"comparator_subtract":{"ambientocclusion":false,"textures":{"particle":"block\/comparator","slab":"block\/smooth_stone","top":"block\/comparator","unlit":"block\/redstone_torch_off","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[4,2,11],"to":[6,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[10,2,11],"to":[12,7,13],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,5,2],"to":[9,5,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,6,5],"faces":{"west":{"uv":[6,5,10,9],"texture":"#lit"},"east":{"uv":[6,5,10,9],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,6,4],"faces":{"north":{"uv":[6,5,10,9],"texture":"#lit"},"south":{"uv":[6,5,10,9],"texture":"#lit"}}}]},"composter":{"parent":"block\/block","textures":{"particle":"block\/composter_side","top":"block\/composter_top","bottom":"block\/composter_bottom","side":"block\/composter_side","inside":"block\/composter_bottom"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,0,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,0,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,0,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}}]},"composter_contents1":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,3,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents2":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,5,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents3":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,7,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents4":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,9,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents5":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,11,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents6":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,13,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents7":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_compost"},"elements":[{"from":[2,0,2],"to":[14,15,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"composter_contents_ready":{"textures":{"particle":"block\/composter_compost","inside":"block\/composter_ready"},"elements":[{"from":[2,0,2],"to":[14,15,14],"faces":{"up":{"texture":"#inside","cullface":"up"}}}]},"conduit":{"textures":{"particle":"block\/conduit"}},"copper_block":{"parent":"block\/cube_all","textures":{"all":"block\/copper_block"}},"copper_ore":{"parent":"block\/cube_all","textures":{"all":"block\/copper_ore"}},"coral_fan":{"ambientocclusion":false,"textures":{"particle":"#fan"},"elements":[{"from":[8,0,0],"to":[24,0,16],"rotation":{"origin":[8,0,0],"axis":"z","angle":22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan","rotation":90},"down":{"uv":[0,16,16,0],"texture":"#fan","rotation":270}}},{"from":[-8,0,0],"to":[8,0,16],"rotation":{"origin":[8,0,0],"axis":"z","angle":-22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan","rotation":270},"down":{"uv":[0,16,16,0],"texture":"#fan","rotation":90}}},{"from":[0,0,8],"to":[16,0,24],"rotation":{"origin":[0,0,8],"axis":"x","angle":-22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[16,16,0,0],"texture":"#fan"},"down":{"uv":[16,0,0,16],"texture":"#fan"}}},{"from":[0,0,-8],"to":[16,0,8],"rotation":{"origin":[0,0,8],"axis":"x","angle":22.5,"rescale":false},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[0,16,16,0],"texture":"#fan"}}}]},"coral_wall_fan":{"ambientocclusion":false,"textures":{"particle":"#fan"},"elements":[{"from":[0,8,0],"to":[16,8,16],"rotation":{"origin":[8,8,14],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[16,16,0,0],"texture":"#fan"}}},{"from":[0,8,0],"to":[16,8,16],"rotation":{"origin":[8,8,14],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#fan"},"down":{"uv":[16,16,0,0],"texture":"#fan"}}}]},"cornflower":{"parent":"block\/cross","textures":{"cross":"block\/cornflower"}},"cracked_nether_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/cracked_nether_bricks"}},"cracked_polished_blackstone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/cracked_polished_blackstone_bricks"}},"cracked_stone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/cracked_stone_bricks"}},"crafting_table":{"parent":"block\/cube","textures":{"particle":"block\/crafting_table_front","north":"block\/crafting_table_front","south":"block\/crafting_table_side","east":"block\/crafting_table_side","west":"block\/crafting_table_front","up":"block\/crafting_table_top","down":"block\/oak_planks"}},"crimson_button":{"parent":"block\/button","textures":{"texture":"block\/crimson_planks"}},"crimson_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/crimson_planks"}},"crimson_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/crimson_planks"}},"crimson_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/crimson_door_top","bottom":"block\/crimson_door_bottom"}},"crimson_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/crimson_door_top","bottom":"block\/crimson_door_bottom"}},"crimson_door_top":{"parent":"block\/door_top","textures":{"top":"block\/crimson_door_top","bottom":"block\/crimson_door_bottom"}},"crimson_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/crimson_door_top","bottom":"block\/crimson_door_bottom"}},"crimson_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/crimson_planks"}},"crimson_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/crimson_planks"}},"crimson_fungus":{"parent":"block\/cross","textures":{"cross":"block\/crimson_fungus"}},"crimson_hyphae":{"parent":"block\/cube_column","textures":{"end":"block\/crimson_stem","side":"block\/crimson_stem"}},"crimson_nylium":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/crimson_nylium","bottom":"block\/netherrack","side":"block\/crimson_nylium_side"}},"crimson_planks":{"parent":"block\/cube_all","textures":{"all":"block\/crimson_planks"}},"crimson_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/crimson_planks"}},"crimson_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/crimson_planks"}},"crimson_roots":{"parent":"block\/cross","textures":{"cross":"block\/crimson_roots"}},"crimson_sign":{"textures":{"particle":"block\/crimson_planks"}},"crimson_slab":{"parent":"block\/slab","textures":{"bottom":"block\/crimson_planks","top":"block\/crimson_planks","side":"block\/crimson_planks"}},"crimson_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/crimson_planks","top":"block\/crimson_planks","side":"block\/crimson_planks"}},"crimson_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/crimson_planks","top":"block\/crimson_planks","side":"block\/crimson_planks"}},"crimson_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/crimson_planks","top":"block\/crimson_planks","side":"block\/crimson_planks"}},"crimson_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/crimson_planks","top":"block\/crimson_planks","side":"block\/crimson_planks"}},"crimson_stem":{"parent":"block\/cube_column","textures":{"end":"block\/crimson_stem_top","side":"block\/crimson_stem"}},"crimson_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/crimson_trapdoor"}},"crimson_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/crimson_trapdoor"}},"crimson_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/crimson_trapdoor"}},"crop":{"ambientocclusion":false,"textures":{"particle":"#crop"},"elements":[{"from":[4,-1,0],"to":[4,15,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#crop"},"east":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[12,-1,0],"to":[12,15,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#crop"},"east":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[0,-1,4],"to":[16,15,4],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#crop"},"south":{"uv":[0,0,16,16],"texture":"#crop"}}},{"from":[0,-1,12],"to":[16,15,12],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#crop"},"south":{"uv":[0,0,16,16],"texture":"#crop"}}}]},"cross":{"ambientocclusion":false,"textures":{"particle":"#cross"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#cross"},"south":{"uv":[0,0,16,16],"texture":"#cross"}}},{"from":[8,0,0.8],"to":[8,16,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#cross"},"east":{"uv":[0,0,16,16],"texture":"#cross"}}}]},"crying_obsidian":{"parent":"block\/cube_all","textures":{"all":"block\/crying_obsidian"}},"cube":{"parent":"block\/block","elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west"},"east":{"texture":"#east","cullface":"east"}}}]},"cube_all":{"parent":"block\/cube","textures":{"particle":"#all","down":"#all","up":"#all","north":"#all","east":"#all","south":"#all","west":"#all"}},"cube_bottom_top":{"parent":"block\/cube","textures":{"particle":"#side","down":"#bottom","up":"#top","north":"#side","east":"#side","south":"#side","west":"#side"}},"cube_column":{"parent":"block\/cube","textures":{"particle":"#side","down":"#end","up":"#end","north":"#side","east":"#side","south":"#side","west":"#side"}},"cube_column_horizontal":{"parent":"block\/block","elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#up","rotation":180,"cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west"},"east":{"texture":"#east","cullface":"east"}}}],"textures":{"particle":"#side","down":"#end","up":"#end","north":"#side","east":"#side","south":"#side","west":"#side"}},"cube_directional":{"parent":"block\/block","elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down","rotation":180},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west","rotation":270},"east":{"texture":"#east","cullface":"east","rotation":90}}}]},"cube_mirrored":{"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[16,0,0,16],"texture":"#down","cullface":"down"},"up":{"uv":[16,0,0,16],"texture":"#up","cullface":"up"},"north":{"uv":[16,0,0,16],"texture":"#north","cullface":"north"},"south":{"uv":[16,0,0,16],"texture":"#south","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#west","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#east","cullface":"east"}}}]},"cube_mirrored_all":{"parent":"block\/cube_mirrored","textures":{"particle":"#all","down":"#all","up":"#all","north":"#all","east":"#all","south":"#all","west":"#all"}},"cube_top":{"parent":"block\/cube","textures":{"particle":"#side","down":"#side","up":"#top","north":"#side","east":"#side","south":"#side","west":"#side"}},"cut_copper":{"parent":"block\/cube_all","textures":{"all":"block\/cut_copper"}},"cut_copper_slab":{"parent":"block\/slab","textures":{"bottom":"block\/cut_copper","top":"block\/cut_copper","side":"block\/cut_copper"}},"cut_copper_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/cut_copper","top":"block\/cut_copper","side":"block\/cut_copper"}},"cut_copper_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/cut_copper","top":"block\/cut_copper","side":"block\/cut_copper"}},"cut_copper_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/cut_copper","top":"block\/cut_copper","side":"block\/cut_copper"}},"cut_copper_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/cut_copper","top":"block\/cut_copper","side":"block\/cut_copper"}},"cut_red_sandstone":{"parent":"block\/cube_column","textures":{"end":"block\/red_sandstone_top","side":"block\/cut_red_sandstone"}},"cut_red_sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/cut_red_sandstone"}},"cut_red_sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/cut_red_sandstone"}},"cut_sandstone":{"parent":"block\/cube_column","textures":{"end":"block\/sandstone_top","side":"block\/cut_sandstone"}},"cut_sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/cut_sandstone"}},"cut_sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/cut_sandstone"}},"cyan_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/cyan_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"cyan_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/cyan_candle","particle":"block\/cyan_candle"}},"cyan_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/cyan_candle","particle":"block\/cyan_candle"}},"cyan_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/cyan_candle","particle":"block\/cyan_candle"}},"cyan_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/cyan_candle","particle":"block\/cyan_candle"}},"cyan_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/cyan_wool"}},"cyan_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/cyan_concrete"}},"cyan_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/cyan_concrete_powder"}},"cyan_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/cyan_glazed_terracotta"}},"cyan_shulker_box":{"textures":{"particle":"block\/cyan_shulker_box"}},"cyan_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/cyan_stained_glass"}},"cyan_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/cyan_stained_glass"}},"cyan_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/cyan_stained_glass"}},"cyan_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/cyan_stained_glass","edge":"block\/cyan_stained_glass_pane_top"}},"cyan_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/cyan_stained_glass","edge":"block\/cyan_stained_glass_pane_top"}},"cyan_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/cyan_stained_glass","edge":"block\/cyan_stained_glass_pane_top"}},"cyan_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/cyan_terracotta"}},"cyan_wool":{"parent":"block\/cube_all","textures":{"all":"block\/cyan_wool"}},"damaged_anvil":{"parent":"block\/template_anvil","textures":{"top":"block\/damaged_anvil_top"}},"dandelion":{"parent":"block\/cross","textures":{"cross":"block\/dandelion"}},"dark_oak_button":{"parent":"block\/button","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/dark_oak_door_top","bottom":"block\/dark_oak_door_bottom"}},"dark_oak_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/dark_oak_door_top","bottom":"block\/dark_oak_door_bottom"}},"dark_oak_door_top":{"parent":"block\/door_top","textures":{"top":"block\/dark_oak_door_top","bottom":"block\/dark_oak_door_bottom"}},"dark_oak_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/dark_oak_door_top","bottom":"block\/dark_oak_door_bottom"}},"dark_oak_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_leaves":{"parent":"block\/leaves","textures":{"all":"block\/dark_oak_leaves"}},"dark_oak_log":{"parent":"block\/cube_column","textures":{"end":"block\/dark_oak_log_top","side":"block\/dark_oak_log"}},"dark_oak_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/dark_oak_log_top","side":"block\/dark_oak_log"}},"dark_oak_planks":{"parent":"block\/cube_all","textures":{"all":"block\/dark_oak_planks"}},"dark_oak_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/dark_oak_planks"}},"dark_oak_sapling":{"parent":"block\/cross","textures":{"cross":"block\/dark_oak_sapling"}},"dark_oak_sign":{"textures":{"particle":"block\/dark_oak_planks"}},"dark_oak_slab":{"parent":"block\/slab","textures":{"bottom":"block\/dark_oak_planks","top":"block\/dark_oak_planks","side":"block\/dark_oak_planks"}},"dark_oak_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/dark_oak_planks","top":"block\/dark_oak_planks","side":"block\/dark_oak_planks"}},"dark_oak_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/dark_oak_planks","top":"block\/dark_oak_planks","side":"block\/dark_oak_planks"}},"dark_oak_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/dark_oak_planks","top":"block\/dark_oak_planks","side":"block\/dark_oak_planks"}},"dark_oak_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/dark_oak_planks","top":"block\/dark_oak_planks","side":"block\/dark_oak_planks"}},"dark_oak_trapdoor_bottom":{"parent":"block\/template_trapdoor_bottom","textures":{"texture":"block\/dark_oak_trapdoor"}},"dark_oak_trapdoor_open":{"parent":"block\/template_trapdoor_open","textures":{"texture":"block\/dark_oak_trapdoor"}},"dark_oak_trapdoor_top":{"parent":"block\/template_trapdoor_top","textures":{"texture":"block\/dark_oak_trapdoor"}},"dark_oak_wood":{"parent":"block\/cube_column","textures":{"end":"block\/dark_oak_log","side":"block\/dark_oak_log"}},"dark_prismarine":{"parent":"block\/cube_all","textures":{"all":"block\/dark_prismarine"}},"dark_prismarine_slab":{"parent":"block\/slab","textures":{"bottom":"block\/dark_prismarine","top":"block\/dark_prismarine","side":"block\/dark_prismarine"}},"dark_prismarine_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/dark_prismarine","top":"block\/dark_prismarine","side":"block\/dark_prismarine"}},"dark_prismarine_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/dark_prismarine","top":"block\/dark_prismarine","side":"block\/dark_prismarine"}},"dark_prismarine_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/dark_prismarine","top":"block\/dark_prismarine","side":"block\/dark_prismarine"}},"dark_prismarine_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/dark_prismarine","top":"block\/dark_prismarine","side":"block\/dark_prismarine"}},"daylight_detector":{"parent":"block\/template_daylight_detector","textures":{"top":"block\/daylight_detector_top","side":"block\/daylight_detector_side"}},"daylight_detector_inverted":{"parent":"block\/template_daylight_detector","textures":{"top":"block\/daylight_detector_inverted_top","side":"block\/daylight_detector_side"}},"dead_brain_coral":{"parent":"block\/cross","textures":{"cross":"block\/dead_brain_coral"}},"dead_brain_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/dead_brain_coral_block"}},"dead_brain_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/dead_brain_coral_fan"}},"dead_brain_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/dead_brain_coral_fan"}},"dead_bubble_coral":{"parent":"block\/cross","textures":{"cross":"block\/dead_bubble_coral"}},"dead_bubble_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/dead_bubble_coral_block"}},"dead_bubble_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/dead_bubble_coral_fan"}},"dead_bubble_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/dead_bubble_coral_fan"}},"dead_bush":{"parent":"block\/cross","textures":{"cross":"block\/dead_bush"}},"dead_fire_coral":{"parent":"block\/cross","textures":{"cross":"block\/dead_fire_coral"}},"dead_fire_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/dead_fire_coral_block"}},"dead_fire_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/dead_fire_coral_fan"}},"dead_fire_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/dead_fire_coral_fan"}},"dead_horn_coral":{"parent":"block\/cross","textures":{"cross":"block\/dead_horn_coral"}},"dead_horn_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/dead_horn_coral_block"}},"dead_horn_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/dead_horn_coral_fan"}},"dead_horn_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/dead_horn_coral_fan"}},"dead_sea_pickle":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[6,0,6],"to":[10,6,10],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,6],"to":[10,5.95,10],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"dead_tube_coral":{"parent":"block\/cross","textures":{"cross":"block\/dead_tube_coral"}},"dead_tube_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/dead_tube_coral_block"}},"dead_tube_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/dead_tube_coral_fan"}},"dead_tube_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/dead_tube_coral_fan"}},"detector_rail":{"parent":"block\/rail_flat","textures":{"rail":"block\/detector_rail"}},"detector_rail_on":{"parent":"block\/rail_flat","textures":{"rail":"block\/detector_rail_on"}},"detector_rail_on_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/detector_rail_on"}},"detector_rail_on_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/detector_rail_on"}},"detector_rail_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/detector_rail"}},"detector_rail_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/detector_rail"}},"diamond_block":{"parent":"block\/cube_all","textures":{"all":"block\/diamond_block"}},"diamond_ore":{"parent":"block\/cube_all","textures":{"all":"block\/diamond_ore"}},"diorite":{"parent":"block\/cube_all","textures":{"all":"block\/diorite"}},"diorite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/diorite","top":"block\/diorite","side":"block\/diorite"}},"diorite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/diorite","top":"block\/diorite","side":"block\/diorite"}},"diorite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/diorite","top":"block\/diorite","side":"block\/diorite"}},"diorite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/diorite","top":"block\/diorite","side":"block\/diorite"}},"diorite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/diorite","top":"block\/diorite","side":"block\/diorite"}},"diorite_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/diorite"}},"diorite_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/diorite"}},"diorite_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/diorite"}},"diorite_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/diorite"}},"dirt":{"parent":"block\/cube_all","textures":{"all":"block\/dirt"}},"dirt_path":{"parent":"block\/block","textures":{"particle":"block\/dirt","top":"block\/dirt_path_top","side":"block\/dirt_path_side","bottom":"block\/dirt"},"elements":[{"from":[0,0,0],"to":[16,15,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,1,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,1,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,1,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,1,16,16],"texture":"#side","cullface":"east"}}}]},"dispenser":{"parent":"block\/orientable","textures":{"top":"block\/furnace_top","front":"block\/dispenser_front","side":"block\/furnace_side"}},"dispenser_vertical":{"parent":"block\/orientable_vertical","textures":{"front":"block\/dispenser_front_vertical","side":"block\/furnace_top"}},"door_bottom":{"ambientocclusion":false,"textures":{"particle":"#bottom"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"down":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"down"},"north":{"uv":[3,0,0,16],"texture":"#bottom","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#bottom"}}}]},"door_bottom_rh":{"ambientocclusion":false,"textures":{"particle":"#bottom"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"down":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"down"},"north":{"uv":[3,0,0,16],"texture":"#bottom","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#bottom","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#bottom"}}}]},"door_top":{"ambientocclusion":false,"textures":{"particle":"#top"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"up":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"up"},"north":{"uv":[3,0,0,16],"texture":"#top","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#top","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#top","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#top"}}}]},"door_top_rh":{"ambientocclusion":false,"textures":{"particle":"#top"},"elements":[{"from":[0,0,0],"to":[3,16,16],"faces":{"up":{"uv":[13,0,16,16],"texture":"#bottom","cullface":"up"},"north":{"uv":[3,0,0,16],"texture":"#top","cullface":"north"},"south":{"uv":[0,0,3,16],"texture":"#top","cullface":"south"},"west":{"uv":[16,0,0,16],"texture":"#top","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#top"}}}]},"dragon_egg":{"parent":"block\/block","ambientocclusion":false,"textures":{"particle":"block\/dragon_egg","all":"block\/dragon_egg"},"elements":[{"from":[6,15,6],"to":[10,16,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#all"},"up":{"uv":[6,6,10,10],"texture":"#all"},"north":{"uv":[6,15,10,16],"texture":"#all"},"south":{"uv":[6,15,10,16],"texture":"#all"},"west":{"uv":[6,15,10,16],"texture":"#all"},"east":{"uv":[6,15,10,16],"texture":"#all"}}},{"from":[5,14,5],"to":[11,15,11],"faces":{"down":{"uv":[5,5,11,11],"texture":"#all"},"up":{"uv":[5,5,11,11],"texture":"#all"},"north":{"uv":[5,14,11,15],"texture":"#all"},"south":{"uv":[5,14,11,15],"texture":"#all"},"west":{"uv":[5,14,11,15],"texture":"#all"},"east":{"uv":[5,14,11,15],"texture":"#all"}}},{"from":[5,13,5],"to":[11,14,11],"faces":{"down":{"uv":[4,4,12,12],"texture":"#all"},"up":{"uv":[4,4,12,12],"texture":"#all"},"north":{"uv":[4,13,12,14],"texture":"#all"},"south":{"uv":[4,13,12,14],"texture":"#all"},"west":{"uv":[4,13,12,14],"texture":"#all"},"east":{"uv":[4,13,12,14],"texture":"#all"}}},{"from":[3,11,3],"to":[13,13,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#all"},"up":{"uv":[3,3,13,13],"texture":"#all"},"north":{"uv":[3,11,13,13],"texture":"#all"},"south":{"uv":[3,11,13,13],"texture":"#all"},"west":{"uv":[3,11,13,13],"texture":"#all"},"east":{"uv":[3,11,13,13],"texture":"#all"}}},{"from":[2,8,2],"to":[14,11,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#all"},"up":{"uv":[2,2,14,14],"texture":"#all"},"north":{"uv":[2,8,14,11],"texture":"#all"},"south":{"uv":[2,8,14,11],"texture":"#all"},"west":{"uv":[2,8,14,11],"texture":"#all"},"east":{"uv":[2,8,14,11],"texture":"#all"}}},{"from":[1,3,1],"to":[15,8,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#all"},"up":{"uv":[1,1,15,15],"texture":"#all"},"north":{"uv":[1,3,15,8],"texture":"#all"},"south":{"uv":[1,3,15,8],"texture":"#all"},"west":{"uv":[1,3,15,8],"texture":"#all"},"east":{"uv":[1,3,15,8],"texture":"#all"}}},{"from":[2,1,2],"to":[14,3,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#all"},"up":{"uv":[2,2,14,14],"texture":"#all"},"north":{"uv":[2,1,14,3],"texture":"#all"},"south":{"uv":[2,1,14,3],"texture":"#all"},"west":{"uv":[2,1,14,3],"texture":"#all"},"east":{"uv":[2,1,14,3],"texture":"#all"}}},{"from":[3,0,3],"to":[13,1,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#all"},"up":{"uv":[3,3,13,13],"texture":"#all"},"north":{"uv":[3,0,13,1],"texture":"#all"},"south":{"uv":[3,0,13,1],"texture":"#all"},"west":{"uv":[3,0,13,1],"texture":"#all"},"east":{"uv":[3,0,13,1],"texture":"#all"}}}]},"dried_kelp_block":{"parent":"block\/block","textures":{"particle":"block\/dried_kelp_side","down":"block\/dried_kelp_bottom","up":"block\/dried_kelp_top","north":"block\/dried_kelp_side","east":"block\/dried_kelp_side","south":"block\/dried_kelp_side","west":"block\/dried_kelp_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#up","cullface":"up"},"north":{"texture":"#north","cullface":"north"},"south":{"uv":[16,0,0,16],"texture":"#south","cullface":"south"},"west":{"texture":"#west","cullface":"west"},"east":{"uv":[16,0,0,16],"texture":"#east","cullface":"east"}}}]},"dropper":{"parent":"block\/orientable","textures":{"top":"block\/furnace_top","front":"block\/dropper_front","side":"block\/furnace_side"}},"dropper_vertical":{"parent":"block\/orientable_vertical","textures":{"front":"block\/dropper_front_vertical","side":"block\/furnace_top"}},"emerald_block":{"parent":"block\/cube_all","textures":{"all":"block\/emerald_block"}},"emerald_ore":{"parent":"block\/cube_all","textures":{"all":"block\/emerald_ore"}},"enchanting_table":{"parent":"block\/block","textures":{"particle":"block\/enchanting_table_bottom","bottom":"block\/enchanting_table_bottom","top":"block\/enchanting_table_top","side":"block\/enchanting_table_side"},"elements":[{"from":[0,0,0],"to":[16,12,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,4,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,4,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,4,16,16],"texture":"#side","cullface":"east"}}}]},"ender_chest":{"textures":{"particle":"block\/obsidian"}},"end_portal":{"textures":{"particle":"block\/obsidian"}},"end_portal_frame":{"parent":"block\/block","textures":{"particle":"block\/end_portal_frame_side","bottom":"block\/end_stone","top":"block\/end_portal_frame_top","side":"block\/end_portal_frame_side"},"elements":[{"from":[0,0,0],"to":[16,13,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,3,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,3,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,3,16,16],"texture":"#side","cullface":"east"}}}]},"end_portal_frame_filled":{"textures":{"particle":"block\/end_portal_frame_side","bottom":"block\/end_stone","top":"block\/end_portal_frame_top","side":"block\/end_portal_frame_side","eye":"block\/end_portal_frame_eye"},"elements":[{"from":[0,0,0],"to":[16,13,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,3,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,3,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,3,16,16],"texture":"#side","cullface":"east"}}},{"from":[4,13,4],"to":[12,16,12],"faces":{"up":{"uv":[4,4,12,12],"texture":"#eye","cullface":"up"},"north":{"uv":[4,0,12,3],"texture":"#eye"},"south":{"uv":[4,0,12,3],"texture":"#eye"},"west":{"uv":[4,0,12,3],"texture":"#eye"},"east":{"uv":[4,0,12,3],"texture":"#eye"}}}]},"end_rod":{"parent":"block\/block","display":{"head":{"rotation":[-60,0,0],"translation":[0,5,-9],"scale":[1,1,1]},"thirdperson_righthand":{"rotation":[0,0,0],"translation":[0,0,0],"scale":[0.375,0.375,0.375]}},"ambientocclusion":false,"textures":{"end_rod":"block\/end_rod","particle":"block\/end_rod"},"elements":[{"from":[6,0,6],"to":[10,1,10],"faces":{"down":{"uv":[6,6,2,2],"texture":"#end_rod","cullface":"down"},"up":{"uv":[2,2,6,6],"texture":"#end_rod"},"north":{"uv":[2,6,6,7],"texture":"#end_rod"},"south":{"uv":[2,6,6,7],"texture":"#end_rod"},"west":{"uv":[2,6,6,7],"texture":"#end_rod"},"east":{"uv":[2,6,6,7],"texture":"#end_rod"}}},{"from":[7,1,7],"to":[9,16,9],"faces":{"up":{"uv":[2,0,4,2],"texture":"#end_rod","cullface":"up"},"north":{"uv":[0,0,2,15],"texture":"#end_rod"},"south":{"uv":[0,0,2,15],"texture":"#end_rod"},"west":{"uv":[0,0,2,15],"texture":"#end_rod"},"east":{"uv":[0,0,2,15],"texture":"#end_rod"}}}]},"end_stone":{"parent":"block\/cube_all","textures":{"all":"block\/end_stone"}},"end_stone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/end_stone_bricks"}},"end_stone_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/end_stone_bricks","top":"block\/end_stone_bricks","side":"block\/end_stone_bricks"}},"end_stone_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/end_stone_bricks","top":"block\/end_stone_bricks","side":"block\/end_stone_bricks"}},"end_stone_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/end_stone_bricks","top":"block\/end_stone_bricks","side":"block\/end_stone_bricks"}},"end_stone_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/end_stone_bricks","top":"block\/end_stone_bricks","side":"block\/end_stone_bricks"}},"end_stone_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/end_stone_bricks","top":"block\/end_stone_bricks","side":"block\/end_stone_bricks"}},"end_stone_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/end_stone_bricks"}},"end_stone_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/end_stone_bricks"}},"end_stone_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/end_stone_bricks"}},"end_stone_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/end_stone_bricks"}},"farmland":{"parent":"block\/template_farmland","textures":{"dirt":"block\/dirt","top":"block\/farmland"}},"farmland_moist":{"parent":"block\/template_farmland","textures":{"dirt":"block\/dirt","top":"block\/farmland_moist"}},"fence_inventory":{"parent":"block\/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"from":[6,0,0],"to":[10,16,4],"faces":{"down":{"uv":[6,0,10,4],"texture":"#texture","cullface":"down"},"up":{"uv":[6,0,10,4],"texture":"#texture"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[0,0,4,16],"texture":"#texture"},"east":{"uv":[0,0,4,16],"texture":"#texture"}},"__comment":"Left post"},{"from":[6,0,12],"to":[10,16,16],"faces":{"down":{"uv":[6,12,10,16],"texture":"#texture","cullface":"down"},"up":{"uv":[6,12,10,16],"texture":"#texture"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[12,0,16,16],"texture":"#texture"},"east":{"uv":[12,0,16,16],"texture":"#texture"}},"__comment":"Right post"},{"from":[7,13,-2],"to":[9,15,18],"faces":{"down":{"uv":[7,0,9,16],"texture":"#texture"},"up":{"uv":[7,0,9,16],"texture":"#texture"},"north":{"uv":[7,1,9,3],"texture":"#texture"},"south":{"uv":[7,1,9,3],"texture":"#texture"},"west":{"uv":[0,1,16,3],"texture":"#texture"},"east":{"uv":[0,1,16,3],"texture":"#texture"}},"__comment":"Top bar"},{"from":[7,5,-2],"to":[9,7,18],"faces":{"down":{"uv":[7,0,9,16],"texture":"#texture"},"up":{"uv":[7,0,9,16],"texture":"#texture"},"north":{"uv":[7,9,9,11],"texture":"#texture"},"south":{"uv":[7,9,9,11],"texture":"#texture"},"west":{"uv":[0,9,16,11],"texture":"#texture"},"east":{"uv":[0,9,16,11],"texture":"#texture"}},"__comment":"Lower bar"}]},"fence_post":{"textures":{"particle":"#texture"},"elements":[{"from":[6,0,6],"to":[10,16,10],"faces":{"down":{"uv":[6,6,10,10],"texture":"#texture","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#texture","cullface":"up"},"north":{"uv":[6,0,10,16],"texture":"#texture"},"south":{"uv":[6,0,10,16],"texture":"#texture"},"west":{"uv":[6,0,10,16],"texture":"#texture"},"east":{"uv":[6,0,10,16],"texture":"#texture"}},"__comment":"Center post"}]},"fence_side":{"textures":{"particle":"#texture"},"elements":[{"from":[7,12,0],"to":[9,15,9],"faces":{"down":{"uv":[7,0,9,9],"texture":"#texture"},"up":{"uv":[7,0,9,9],"texture":"#texture"},"north":{"uv":[7,1,9,4],"texture":"#texture","cullface":"north"},"west":{"uv":[0,1,9,4],"texture":"#texture"},"east":{"uv":[0,1,9,4],"texture":"#texture"}},"__comment":"top bar"},{"from":[7,6,0],"to":[9,9,9],"faces":{"down":{"uv":[7,0,9,9],"texture":"#texture"},"up":{"uv":[7,0,9,9],"texture":"#texture"},"north":{"uv":[7,7,9,10],"texture":"#texture","cullface":"north"},"west":{"uv":[0,7,9,10],"texture":"#texture"},"east":{"uv":[0,7,9,10],"texture":"#texture"}},"__comment":"lower bar"}]},"fern":{"parent":"block\/tinted_cross","textures":{"cross":"block\/fern"}},"fire_coral":{"parent":"block\/cross","textures":{"cross":"block\/fire_coral"}},"fire_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/fire_coral_block"}},"fire_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/fire_coral_fan"}},"fire_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/fire_coral_fan"}},"fire_floor0":{"parent":"block\/template_fire_floor","textures":{"fire":"block\/fire_0"}},"fire_floor1":{"parent":"block\/template_fire_floor","textures":{"fire":"block\/fire_1"}},"fire_side0":{"parent":"block\/template_fire_side","textures":{"fire":"block\/fire_0"}},"fire_side1":{"parent":"block\/template_fire_side","textures":{"fire":"block\/fire_1"}},"fire_side_alt0":{"parent":"block\/template_fire_side_alt","textures":{"fire":"block\/fire_0"}},"fire_side_alt1":{"parent":"block\/template_fire_side_alt","textures":{"fire":"block\/fire_1"}},"fire_up0":{"parent":"block\/template_fire_up","textures":{"fire":"block\/fire_0"}},"fire_up1":{"parent":"block\/template_fire_up","textures":{"fire":"block\/fire_1"}},"fire_up_alt0":{"parent":"block\/template_fire_up_alt","textures":{"fire":"block\/fire_0"}},"fire_up_alt1":{"parent":"block\/template_fire_up_alt","textures":{"fire":"block\/fire_1"}},"fletching_table":{"parent":"block\/cube","textures":{"particle":"block\/fletching_table_front","north":"block\/fletching_table_front","south":"block\/fletching_table_front","east":"block\/fletching_table_side","west":"block\/fletching_table_side","up":"block\/fletching_table_top","down":"block\/birch_planks"}},"flower_pot":{"ambientocclusion":false,"textures":{"particle":"block\/flower_pot","flowerpot":"block\/flower_pot","dirt":"block\/dirt"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,12,10,16],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}}]},"flower_pot_cross":{"ambientocclusion":false,"textures":{"particle":"block\/flower_pot","flowerpot":"block\/flower_pot","dirt":"block\/dirt"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,12,10,16],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[2.6,4,8],"to":[13.4,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#plant"},"south":{"uv":[0,0,16,16],"texture":"#plant"}}},{"from":[8,4,2.6],"to":[8,16,13.4],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#plant"},"east":{"uv":[0,0,16,16],"texture":"#plant"}}}]},"four_dead_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[2,0,2],"to":[6,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[2,5.95,2],"to":[6,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,10],"to":[13,4,14],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[9,3.95,10],"to":[13,3.95,14],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,2],"to":[13,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[9,5.95,2],"to":[13,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,8],"to":[6,7,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,12],"texture":"#all"},"south":{"uv":[0,5,4,12],"texture":"#all"},"west":{"uv":[8,5,12,12],"texture":"#all"},"east":{"uv":[12,5,16,12],"texture":"#all"}}},{"from":[2,6.95,8],"to":[6,6.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"four_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[2,0,2],"to":[6,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[2,5.95,2],"to":[6,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,10],"to":[13,4,14],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[9,3.95,10],"to":[13,3.95,14],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[9,0,2],"to":[13,6,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[9,5.95,2],"to":[13,5.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,8],"to":[6,7,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,12],"texture":"#all"},"south":{"uv":[0,5,4,12],"texture":"#all"},"west":{"uv":[8,5,12,12],"texture":"#all"},"east":{"uv":[12,5,16,12],"texture":"#all"}}},{"from":[2,6.95,8],"to":[6,6.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[3.5,5.2,4],"to":[4.5,8.7,4],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,5.2,3.5],"to":[4,8.7,4.5],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10.5,3.2,12],"to":[11.5,6.7,12],"rotation":{"origin":[11,8,12],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[11,3.2,11.5],"to":[11,6.7,12.5],"rotation":{"origin":[11,8,12],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10.5,5.2,4],"to":[11.5,8.7,4],"rotation":{"origin":[11,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[11,5.2,3.5],"to":[11,8.7,4.5],"rotation":{"origin":[11,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[3.5,6.2,10],"to":[4.5,9.7,10],"rotation":{"origin":[4,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,6.2,9.5],"to":[4,9.7,10.5],"rotation":{"origin":[4,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"four_slightly_cracked_turtle_eggs":{"parent":"block\/template_four_turtle_eggs","textures":{"all":"block\/turtle_egg_slightly_cracked"}},"four_turtle_eggs":{"parent":"block\/template_four_turtle_eggs","textures":{"all":"block\/turtle_egg"}},"four_very_cracked_turtle_eggs":{"parent":"block\/template_four_turtle_eggs","textures":{"all":"block\/turtle_egg_very_cracked"}},"frosted_ice_0":{"parent":"block\/cube_all","textures":{"all":"block\/frosted_ice_0"}},"frosted_ice_1":{"parent":"block\/cube_all","textures":{"all":"block\/frosted_ice_1"}},"frosted_ice_2":{"parent":"block\/cube_all","textures":{"all":"block\/frosted_ice_2"}},"frosted_ice_3":{"parent":"block\/cube_all","textures":{"all":"block\/frosted_ice_3"}},"furnace":{"parent":"block\/orientable","textures":{"top":"block\/furnace_top","front":"block\/furnace_front","side":"block\/furnace_side"}},"furnace_on":{"parent":"block\/orientable","textures":{"top":"block\/furnace_top","front":"block\/furnace_front_on","side":"block\/furnace_side"}},"gilded_blackstone":{"parent":"block\/cube_all","textures":{"all":"block\/gilded_blackstone"}},"glass":{"parent":"block\/cube_all","textures":{"all":"block\/glass"}},"glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/glass"}},"glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/glass"}},"glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/glass","edge":"block\/glass_pane_top"}},"glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/glass","edge":"block\/glass_pane_top"}},"glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/glass","edge":"block\/glass_pane_top"}},"glowstone":{"parent":"block\/cube_all","textures":{"all":"block\/glowstone"}},"gold_block":{"parent":"block\/cube_all","textures":{"all":"block\/gold_block"}},"gold_ore":{"parent":"block\/cube_all","textures":{"all":"block\/gold_ore"}},"granite":{"parent":"block\/cube_all","textures":{"all":"block\/granite"}},"granite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/granite","top":"block\/granite","side":"block\/granite"}},"granite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/granite","top":"block\/granite","side":"block\/granite"}},"granite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/granite","top":"block\/granite","side":"block\/granite"}},"granite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/granite","top":"block\/granite","side":"block\/granite"}},"granite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/granite","top":"block\/granite","side":"block\/granite"}},"granite_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/granite"}},"granite_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/granite"}},"granite_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/granite"}},"granite_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/granite"}},"grass":{"parent":"block\/tinted_cross","textures":{"cross":"block\/grass"}},"grass_block":{"parent":"block\/block","textures":{"particle":"block\/dirt","bottom":"block\/dirt","top":"block\/grass_block_top","side":"block\/grass_block_side","overlay":"block\/grass_block_side_overlay"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up","tintindex":0},"north":{"uv":[0,0,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","cullface":"east"}}},{"from":[0,0,0],"to":[16,16,16],"faces":{"north":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#overlay","tintindex":0,"cullface":"east"}}}]},"grass_block_snow":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/grass_block_top","bottom":"block\/dirt","side":"block\/grass_block_snow","particle":"block\/dirt"}},"gravel":{"parent":"block\/cube_all","textures":{"all":"block\/gravel"}},"gray_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/gray_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"gray_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/gray_candle","particle":"block\/gray_candle"}},"gray_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/gray_candle","particle":"block\/gray_candle"}},"gray_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/gray_candle","particle":"block\/gray_candle"}},"gray_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/gray_candle","particle":"block\/gray_candle"}},"gray_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/gray_wool"}},"gray_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/gray_concrete"}},"gray_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/gray_concrete_powder"}},"gray_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/gray_glazed_terracotta"}},"gray_shulker_box":{"textures":{"particle":"block\/gray_shulker_box"}},"gray_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/gray_stained_glass"}},"gray_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/gray_stained_glass"}},"gray_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/gray_stained_glass"}},"gray_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/gray_stained_glass","edge":"block\/gray_stained_glass_pane_top"}},"gray_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/gray_stained_glass","edge":"block\/gray_stained_glass_pane_top"}},"gray_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/gray_stained_glass","edge":"block\/gray_stained_glass_pane_top"}},"gray_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/gray_terracotta"}},"gray_wool":{"parent":"block\/cube_all","textures":{"all":"block\/gray_wool"}},"green_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/green_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"green_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/green_candle","particle":"block\/green_candle"}},"green_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/green_candle","particle":"block\/green_candle"}},"green_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/green_candle","particle":"block\/green_candle"}},"green_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/green_candle","particle":"block\/green_candle"}},"green_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/green_wool"}},"green_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/green_concrete"}},"green_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/green_concrete_powder"}},"green_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/green_glazed_terracotta"}},"green_shulker_box":{"textures":{"particle":"block\/green_shulker_box"}},"green_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/green_stained_glass"}},"green_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/green_stained_glass"}},"green_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/green_stained_glass"}},"green_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/green_stained_glass","edge":"block\/green_stained_glass_pane_top"}},"green_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/green_stained_glass","edge":"block\/green_stained_glass_pane_top"}},"green_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/green_stained_glass","edge":"block\/green_stained_glass_pane_top"}},"green_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/green_terracotta"}},"green_wool":{"parent":"block\/cube_all","textures":{"all":"block\/green_wool"}},"grindstone":{"parent":"block\/block","textures":{"pivot":"block\/grindstone_pivot","round":"block\/grindstone_round","side":"block\/grindstone_side","particle":"block\/grindstone_side","leg":"block\/dark_oak_log"},"elements":[{"from":[12,0,6],"to":[14,7,10],"faces":{"north":{"uv":[2,9,4,16],"texture":"#leg"},"east":{"uv":[10,16,6,9],"texture":"#leg"},"south":{"uv":[12,9,14,16],"texture":"#leg"},"west":{"uv":[6,9,10,16],"texture":"#leg"},"down":{"uv":[12,6,14,10],"texture":"#leg","cullface":"down"}}},{"from":[2,0,6],"to":[4,7,10],"faces":{"north":{"uv":[12,9,14,16],"texture":"#leg"},"east":{"uv":[10,16,6,9],"texture":"#leg"},"south":{"uv":[2,9,4,16],"texture":"#leg"},"west":{"uv":[6,9,10,16],"texture":"#leg"},"down":{"uv":[2,6,4,10],"texture":"#leg","cullface":"down"}}},{"from":[12,7,5],"to":[14,13,11],"faces":{"north":{"uv":[6,0,8,6],"texture":"#pivot"},"east":{"uv":[0,0,6,6],"texture":"#pivot"},"south":{"uv":[6,0,8,6],"texture":"#pivot"},"up":{"uv":[8,0,10,6],"texture":"#pivot"},"down":{"uv":[8,0,10,6],"texture":"#pivot"}}},{"from":[2,7,5],"to":[4,13,11],"faces":{"north":{"uv":[6,0,8,6],"texture":"#pivot"},"south":{"uv":[6,0,8,6],"texture":"#pivot"},"west":{"uv":[0,0,6,6],"texture":"#pivot"},"up":{"uv":[8,0,10,6],"texture":"#pivot"},"down":{"uv":[8,0,10,6],"texture":"#pivot"}}},{"from":[4,4,2],"to":[12,16,14],"faces":{"north":{"uv":[0,0,8,12],"texture":"#round"},"east":{"uv":[0,0,12,12],"texture":"#side"},"south":{"uv":[0,0,8,12],"texture":"#round"},"west":{"uv":[0,0,12,12],"texture":"#side"},"up":{"uv":[0,0,8,12],"texture":"#round","cullface":"up"},"down":{"uv":[0,0,8,12],"texture":"#round"}}}]},"hay_block":{"parent":"block\/cube_column","textures":{"end":"block\/hay_block_top","side":"block\/hay_block_side"}},"hay_block_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/hay_block_top","side":"block\/hay_block_side"}},"heavy_weighted_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/iron_block"}},"heavy_weighted_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/iron_block"}},"honeycomb_block":{"parent":"block\/cube_all","textures":{"all":"block\/honeycomb_block"}},"honey_block":{"parent":"block\/block","textures":{"particle":"block\/honey_block_top","down":"block\/honey_block_bottom","up":"block\/honey_block_top","side":"block\/honey_block_side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"texture":"#down","cullface":"down"},"up":{"texture":"#down","cullface":"up"},"north":{"texture":"#down","cullface":"north"},"south":{"texture":"#down","cullface":"south"},"west":{"texture":"#down","cullface":"west"},"east":{"texture":"#down","cullface":"east"}}},{"from":[1,1,1],"to":[15,15,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#down"},"up":{"uv":[1,1,15,15],"texture":"#up"},"north":{"uv":[1,1,15,15],"texture":"#side"},"south":{"uv":[1,1,15,15],"texture":"#side"},"west":{"uv":[1,1,15,15],"texture":"#side"},"east":{"uv":[1,1,15,15],"texture":"#side"}}}]},"hopper":{"ambientocclusion":false,"textures":{"particle":"block\/hopper_outside","top":"block\/hopper_top","side":"block\/hopper_outside","inside":"block\/hopper_inside"},"elements":[{"from":[0,10,0],"to":[16,11,16],"faces":{"down":{"texture":"#side"},"up":{"texture":"#inside","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"east"}}},{"from":[0,11,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,11,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,11,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,11,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}},{"from":[4,4,4],"to":[12,10,12],"faces":{"down":{"texture":"#side"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"texture":"#side","cullface":"down"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"hopper_side":{"ambientocclusion":false,"textures":{"particle":"block\/hopper_outside","top":"block\/hopper_top","side":"block\/hopper_outside","inside":"block\/hopper_inside"},"elements":[{"from":[0,10,0],"to":[16,11,16],"faces":{"down":{"texture":"#side"},"up":{"texture":"#inside","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"east"}}},{"from":[0,11,0],"to":[2,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"east":{"texture":"#side","cullface":"up"}}},{"from":[14,11,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"east":{"texture":"#side","cullface":"east"}}},{"from":[2,11,0],"to":[14,16,2],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"}}},{"from":[2,11,14],"to":[14,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"}}},{"from":[4,4,4],"to":[12,10,12],"faces":{"down":{"texture":"#side"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}},{"from":[6,4,0],"to":[10,8,4],"faces":{"down":{"texture":"#side"},"up":{"texture":"#side"},"north":{"texture":"#side","cullface":"north"},"west":{"texture":"#side"},"east":{"texture":"#side"}}}]},"horn_coral":{"parent":"block\/cross","textures":{"cross":"block\/horn_coral"}},"horn_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/horn_coral_block"}},"horn_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/horn_coral_fan"}},"horn_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/horn_coral_fan"}},"ice":{"parent":"block\/cube_all","textures":{"all":"block\/ice"}},"inner_stairs":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,0],"to":[16,16,16],"faces":{"up":{"uv":[8,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side","cullface":"north"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}},{"from":[0,8,8],"to":[8,16,16],"faces":{"up":{"uv":[0,8,8,16],"texture":"#top","cullface":"up"},"north":{"uv":[8,0,16,8],"texture":"#side"},"south":{"uv":[0,0,8,8],"texture":"#side","cullface":"south"},"west":{"uv":[8,0,16,8],"texture":"#side","cullface":"west"}}}]},"iron_bars_cap":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","bars":"block\/iron_bars","edge":"block\/iron_bars"},"elements":[{"from":[8,0,8],"to":[8,16,9],"faces":{"west":{"uv":[8,0,7,16],"texture":"#bars"},"east":{"uv":[7,0,8,16],"texture":"#bars"}}},{"from":[7,0,9],"to":[9,16,9],"faces":{"north":{"uv":[9,0,7,16],"texture":"#bars"},"south":{"uv":[7,0,9,16],"texture":"#bars"}}}]},"iron_bars_cap_alt":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","bars":"block\/iron_bars","edge":"block\/iron_bars"},"elements":[{"from":[8,0,7],"to":[8,16,8],"faces":{"west":{"uv":[8,0,9,16],"texture":"#bars"},"east":{"uv":[9,0,8,16],"texture":"#bars"}}},{"from":[7,0,7],"to":[9,16,7],"faces":{"north":{"uv":[7,0,9,16],"texture":"#bars"},"south":{"uv":[9,0,7,16],"texture":"#bars"}}}]},"iron_bars_post":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","bars":"block\/iron_bars"},"elements":[{"from":[8,0,7],"to":[8,16,9],"faces":{"west":{"uv":[7,0,9,16],"texture":"#bars"},"east":{"uv":[9,0,7,16],"texture":"#bars"}}},{"from":[7,0,8],"to":[9,16,8],"faces":{"north":{"uv":[7,0,9,16],"texture":"#bars"},"south":{"uv":[9,0,7,16],"texture":"#bars"}}}]},"iron_bars_post_ends":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","edge":"block\/iron_bars"},"elements":[{"from":[7,0.001,7],"to":[9,0.001,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}},{"from":[7,15.999,7],"to":[9,15.999,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}}]},"iron_bars_side":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","bars":"block\/iron_bars","edge":"block\/iron_bars"},"elements":[{"from":[8,0,0],"to":[8,16,8],"faces":{"west":{"uv":[16,0,8,16],"texture":"#bars"},"east":{"uv":[8,0,16,16],"texture":"#bars"}}},{"from":[7,0,0],"to":[9,16,7],"faces":{"north":{"uv":[7,0,9,16],"texture":"#edge","cullface":"north"}}},{"from":[7,0.001,0],"to":[9,0.001,7],"faces":{"down":{"uv":[9,0,7,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"}}},{"from":[7,15.999,0],"to":[9,15.999,7],"faces":{"down":{"uv":[9,0,7,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"}}}]},"iron_bars_side_alt":{"ambientocclusion":false,"textures":{"particle":"block\/iron_bars","bars":"block\/iron_bars","edge":"block\/iron_bars"},"elements":[{"from":[8,0,8],"to":[8,16,16],"faces":{"west":{"uv":[8,0,0,16],"texture":"#bars"},"east":{"uv":[0,0,8,16],"texture":"#bars"}}},{"from":[7,0,9],"to":[9,16,16],"faces":{"south":{"uv":[7,0,9,16],"texture":"#edge","cullface":"south"},"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}},{"from":[7,0.001,9],"to":[9,0.001,16],"faces":{"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}},{"from":[7,15.999,9],"to":[9,15.999,16],"faces":{"down":{"uv":[9,9,7,16],"texture":"#edge"},"up":{"uv":[7,9,9,16],"texture":"#edge"}}}]},"iron_block":{"parent":"block\/cube_all","textures":{"all":"block\/iron_block"}},"iron_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/iron_door_top","bottom":"block\/iron_door_bottom"}},"iron_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/iron_door_top","bottom":"block\/iron_door_bottom"}},"iron_door_top":{"parent":"block\/door_top","textures":{"top":"block\/iron_door_top","bottom":"block\/iron_door_bottom"}},"iron_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/iron_door_top","bottom":"block\/iron_door_bottom"}},"iron_ore":{"parent":"block\/cube_all","textures":{"all":"block\/iron_ore"}},"iron_trapdoor_bottom":{"parent":"block\/template_trapdoor_bottom","textures":{"texture":"block\/iron_trapdoor"}},"iron_trapdoor_open":{"parent":"block\/template_trapdoor_open","textures":{"texture":"block\/iron_trapdoor"}},"iron_trapdoor_top":{"parent":"block\/template_trapdoor_top","textures":{"texture":"block\/iron_trapdoor"}},"item_frame":{"textures":{"particle":"block\/birch_planks","wood":"block\/birch_planks","back":"block\/item_frame"},"elements":[{"from":[3,3,15.5],"to":[13,13,16],"faces":{"north":{"uv":[3,3,13,13],"texture":"#back"},"south":{"uv":[3,3,13,13],"texture":"#back"}}},{"from":[2,2,15],"to":[14,3,16],"faces":{"down":{"uv":[2,0,14,1],"texture":"#wood"},"up":{"uv":[2,15,14,16],"texture":"#wood"},"north":{"uv":[2,13,14,14],"texture":"#wood"},"south":{"uv":[2,13,14,14],"texture":"#wood"},"west":{"uv":[15,13,16,14],"texture":"#wood"},"east":{"uv":[0,13,1,14],"texture":"#wood"}}},{"from":[2,13,15],"to":[14,14,16],"faces":{"down":{"uv":[2,0,14,1],"texture":"#wood"},"up":{"uv":[2,15,14,16],"texture":"#wood"},"north":{"uv":[2,2,14,3],"texture":"#wood"},"south":{"uv":[2,2,14,3],"texture":"#wood"},"west":{"uv":[15,2,16,3],"texture":"#wood"},"east":{"uv":[0,2,1,3],"texture":"#wood"}}},{"from":[2,3,15],"to":[3,13,16],"faces":{"north":{"uv":[13,3,14,13],"texture":"#wood"},"south":{"uv":[2,3,3,13],"texture":"#wood"},"west":{"uv":[15,3,16,13],"texture":"#wood"},"east":{"uv":[0,3,1,13],"texture":"#wood"}}},{"from":[13,3,15],"to":[14,13,16],"faces":{"north":{"uv":[2,3,3,13],"texture":"#wood"},"south":{"uv":[13,3,14,13],"texture":"#wood"},"west":{"uv":[15,3,16,13],"texture":"#wood"},"east":{"uv":[0,3,1,13],"texture":"#wood"}}}]},"item_frame_map":{"textures":{"particle":"block\/birch_planks","wood":"block\/birch_planks","back":"block\/item_frame"},"elements":[{"from":[1,1,15.001],"to":[15,15,16],"faces":{"north":{"uv":[1,1,15,15],"texture":"#back"},"south":{"uv":[1,1,15,15],"texture":"#back"}}},{"from":[0,0,15.001],"to":[16,1,16],"faces":{"down":{"uv":[0,0,16,1],"texture":"#wood"},"up":{"uv":[0,15,16,16],"texture":"#wood"},"north":{"uv":[0,15,16,16],"texture":"#wood"},"south":{"uv":[0,15,16,16],"texture":"#wood"},"west":{"uv":[15,15,16,16],"texture":"#wood"},"east":{"uv":[0,15,1,16],"texture":"#wood"}}},{"from":[0,15,15.001],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,1],"texture":"#wood"},"up":{"uv":[0,15,16,16],"texture":"#wood"},"north":{"uv":[0,0,16,1],"texture":"#wood"},"south":{"uv":[0,0,16,1],"texture":"#wood"},"west":{"uv":[15,0,16,1],"texture":"#wood"},"east":{"uv":[0,0,1,1],"texture":"#wood"}}},{"from":[0,1,15.001],"to":[1,15,16],"faces":{"north":{"uv":[15,1,16,15],"texture":"#wood"},"south":{"uv":[0,1,1,15],"texture":"#wood"},"west":{"uv":[15,1,16,15],"texture":"#wood"},"east":{"uv":[0,1,1,15],"texture":"#wood"}}},{"from":[15,1,15.001],"to":[16,15,16],"faces":{"north":{"uv":[0,1,1,15],"texture":"#wood"},"south":{"uv":[15,1,16,15],"texture":"#wood"},"west":{"uv":[15,1,16,15],"texture":"#wood"},"east":{"uv":[0,1,1,15],"texture":"#wood"}}}]},"jack_o_lantern":{"parent":"block\/orientable","textures":{"top":"block\/pumpkin_top","front":"block\/jack_o_lantern","side":"block\/pumpkin_side"}},"jigsaw":{"parent":"block\/cube_directional","textures":{"particle":"block\/jigsaw_top","north":"block\/jigsaw_top","south":"block\/jigsaw_bottom","east":"block\/jigsaw_side","west":"block\/jigsaw_side","up":"block\/jigsaw_lock","down":"block\/jigsaw_side"}},"jukebox":{"parent":"block\/cube_top","textures":{"top":"block\/jukebox_top","side":"block\/jukebox_side"}},"jungle_button":{"parent":"block\/button","textures":{"texture":"block\/jungle_planks"}},"jungle_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/jungle_planks"}},"jungle_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/jungle_planks"}},"jungle_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/jungle_door_top","bottom":"block\/jungle_door_bottom"}},"jungle_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/jungle_door_top","bottom":"block\/jungle_door_bottom"}},"jungle_door_top":{"parent":"block\/door_top","textures":{"top":"block\/jungle_door_top","bottom":"block\/jungle_door_bottom"}},"jungle_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/jungle_door_top","bottom":"block\/jungle_door_bottom"}},"jungle_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/jungle_planks"}},"jungle_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/jungle_planks"}},"jungle_leaves":{"parent":"block\/leaves","textures":{"all":"block\/jungle_leaves"}},"jungle_log":{"parent":"block\/cube_column","textures":{"end":"block\/jungle_log_top","side":"block\/jungle_log"}},"jungle_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/jungle_log_top","side":"block\/jungle_log"}},"jungle_planks":{"parent":"block\/cube_all","textures":{"all":"block\/jungle_planks"}},"jungle_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/jungle_planks"}},"jungle_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/jungle_planks"}},"jungle_sapling":{"parent":"block\/cross","textures":{"cross":"block\/jungle_sapling"}},"jungle_sign":{"textures":{"particle":"block\/jungle_planks"}},"jungle_slab":{"parent":"block\/slab","textures":{"bottom":"block\/jungle_planks","top":"block\/jungle_planks","side":"block\/jungle_planks"}},"jungle_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/jungle_planks","top":"block\/jungle_planks","side":"block\/jungle_planks"}},"jungle_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/jungle_planks","top":"block\/jungle_planks","side":"block\/jungle_planks"}},"jungle_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/jungle_planks","top":"block\/jungle_planks","side":"block\/jungle_planks"}},"jungle_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/jungle_planks","top":"block\/jungle_planks","side":"block\/jungle_planks"}},"jungle_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/jungle_trapdoor"}},"jungle_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/jungle_trapdoor"}},"jungle_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/jungle_trapdoor"}},"jungle_wood":{"parent":"block\/cube_column","textures":{"end":"block\/jungle_log","side":"block\/jungle_log"}},"kelp":{"parent":"block\/tinted_cross","textures":{"cross":"block\/kelp"}},"kelp_plant":{"parent":"block\/tinted_cross","textures":{"cross":"block\/kelp_plant"}},"ladder":{"ambientocclusion":false,"textures":{"particle":"block\/ladder","texture":"block\/ladder"},"elements":[{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture"},"south":{"uv":[0,0,16,16],"texture":"#texture"}}}]},"lantern":{"parent":"block\/template_lantern","textures":{"lantern":"block\/lantern"}},"lantern_hanging":{"parent":"block\/template_hanging_lantern","textures":{"lantern":"block\/lantern"}},"lapis_block":{"parent":"block\/cube_all","textures":{"all":"block\/lapis_block"}},"lapis_ore":{"parent":"block\/cube_all","textures":{"all":"block\/lapis_ore"}},"large_amethyst_bud":{"parent":"block\/cross","textures":{"cross":"block\/large_amethyst_bud"}},"large_fern_bottom":{"parent":"block\/tinted_cross","textures":{"cross":"block\/large_fern_bottom"}},"large_fern_top":{"parent":"block\/tinted_cross","textures":{"cross":"block\/large_fern_top"}},"lava":{"textures":{"particle":"block\/lava_still"}},"lava_cauldron":{"parent":"block\/template_cauldron_full","textures":{"content":"block\/lava_still","inside":"block\/cauldron_inner","particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side"}},"leaves":{"parent":"block\/block","textures":{"particle":"#all"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#all","tintindex":0,"cullface":"east"}}}]},"lectern":{"parent":"block\/block","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"particle":"block\/lectern_sides","bottom":"block\/oak_planks","base":"block\/lectern_base","front":"block\/lectern_front","sides":"block\/lectern_sides","top":"block\/lectern_top"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"north":{"uv":[0,14,16,16],"texture":"#base","cullface":"north"},"east":{"uv":[0,6,16,8],"texture":"#base","cullface":"east"},"south":{"uv":[0,6,16,8],"texture":"#base","cullface":"south"},"west":{"uv":[0,6,16,8],"texture":"#base","cullface":"west"},"up":{"uv":[0,0,16,16],"rotation":180,"texture":"#base"},"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"}}},{"from":[4,2,4],"to":[12,15,12],"faces":{"north":{"uv":[0,0,8,13],"texture":"#front"},"east":{"uv":[2,16,15,8],"rotation":90,"texture":"#sides"},"south":{"uv":[8,3,16,16],"texture":"#front"},"west":{"uv":[2,8,15,16],"rotation":90,"texture":"#sides"}}},{"from":[0.01,12,3],"to":[15.99,16,16],"rotation":{"angle":-22.5,"axis":"x","origin":[8,8,8]},"faces":{"north":{"uv":[0,0,16,4],"texture":"#sides"},"east":{"uv":[0,4,13,8],"texture":"#sides"},"south":{"uv":[0,4,16,8],"texture":"#sides"},"west":{"uv":[0,4,13,8],"texture":"#sides"},"up":{"uv":[0,1,16,14],"rotation":180,"texture":"#top"},"down":{"uv":[0,0,16,13],"texture":"#bottom"}}}]},"lever":{"ambientocclusion":false,"textures":{"particle":"block\/cobblestone","base":"block\/cobblestone","lever":"block\/lever"},"elements":[{"from":[5,0,4],"to":[11,3,12],"faces":{"down":{"uv":[5,4,11,12],"texture":"#base","cullface":"down"},"up":{"uv":[5,4,11,12],"texture":"#base"},"north":{"uv":[5,0,11,3],"texture":"#base"},"south":{"uv":[5,0,11,3],"texture":"#base"},"west":{"uv":[4,0,12,3],"texture":"#base"},"east":{"uv":[4,0,12,3],"texture":"#base"}}},{"from":[7,1,7],"to":[9,11,9],"rotation":{"origin":[8,1,8],"axis":"x","angle":-45},"faces":{"up":{"uv":[7,6,9,8],"texture":"#lever"},"north":{"uv":[7,6,9,16],"texture":"#lever"},"south":{"uv":[7,6,9,16],"texture":"#lever"},"west":{"uv":[7,6,9,16],"texture":"#lever"},"east":{"uv":[7,6,9,16],"texture":"#lever"}}}]},"lever_on":{"ambientocclusion":false,"textures":{"particle":"block\/cobblestone","base":"block\/cobblestone","lever":"block\/lever"},"elements":[{"from":[5,0,4],"to":[11,3,12],"faces":{"down":{"uv":[5,4,11,12],"texture":"#base","cullface":"down"},"up":{"uv":[5,4,11,12],"texture":"#base"},"north":{"uv":[5,0,11,3],"texture":"#base"},"south":{"uv":[5,0,11,3],"texture":"#base"},"west":{"uv":[4,0,12,3],"texture":"#base"},"east":{"uv":[4,0,12,3],"texture":"#base"}}},{"from":[7,1,7],"to":[9,11,9],"rotation":{"origin":[8,1,8],"axis":"x","angle":45},"faces":{"up":{"uv":[7,6,9,8],"texture":"#lever"},"north":{"uv":[7,6,9,16],"texture":"#lever"},"south":{"uv":[7,6,9,16],"texture":"#lever"},"west":{"uv":[7,6,9,16],"texture":"#lever"},"east":{"uv":[7,6,9,16],"texture":"#lever"}}}]},"lightly_weathered_copper_block":{"parent":"block\/cube_all","textures":{"all":"block\/lightly_weathered_copper_block"}},"lightly_weathered_cut_copper":{"parent":"block\/cube_all","textures":{"all":"block\/lightly_weathered_cut_copper"}},"lightly_weathered_cut_copper_slab":{"parent":"block\/slab","textures":{"bottom":"block\/lightly_weathered_cut_copper","top":"block\/lightly_weathered_cut_copper","side":"block\/lightly_weathered_cut_copper"}},"lightly_weathered_cut_copper_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/lightly_weathered_cut_copper","top":"block\/lightly_weathered_cut_copper","side":"block\/lightly_weathered_cut_copper"}},"lightly_weathered_cut_copper_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/lightly_weathered_cut_copper","top":"block\/lightly_weathered_cut_copper","side":"block\/lightly_weathered_cut_copper"}},"lightly_weathered_cut_copper_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/lightly_weathered_cut_copper","top":"block\/lightly_weathered_cut_copper","side":"block\/lightly_weathered_cut_copper"}},"lightly_weathered_cut_copper_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/lightly_weathered_cut_copper","top":"block\/lightly_weathered_cut_copper","side":"block\/lightly_weathered_cut_copper"}},"lightning_rod":{"parent":"block\/block","ambientocclusion":false,"textures":{"texture":"block\/lightning_rod","particle":"block\/lightning_rod"},"elements":[{"from":[6,12,6],"to":[10,16,10],"shade":false,"faces":{"north":{"uv":[0,0,4,4],"texture":"#texture"},"south":{"uv":[0,0,4,4],"texture":"#texture"},"west":{"uv":[0,0,4,4],"texture":"#texture"},"east":{"uv":[0,0,4,4],"texture":"#texture"},"down":{"uv":[0,0,4,4],"texture":"#texture"},"up":{"uv":[4,4,0,0],"texture":"#texture"}}},{"from":[7,0,7],"to":[9,12,9],"shade":false,"faces":{"north":{"uv":[0,4,2,16],"texture":"#texture"},"south":{"uv":[0,4,2,16],"texture":"#texture"},"west":{"uv":[0,4,2,16],"texture":"#texture"},"east":{"uv":[0,4,2,16],"texture":"#texture"},"down":{"uv":[0,4,2,16],"texture":"#texture"}}}]},"light_blue_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/light_blue_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"light_blue_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/light_blue_candle","particle":"block\/light_blue_candle"}},"light_blue_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/light_blue_candle","particle":"block\/light_blue_candle"}},"light_blue_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/light_blue_candle","particle":"block\/light_blue_candle"}},"light_blue_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/light_blue_candle","particle":"block\/light_blue_candle"}},"light_blue_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/light_blue_wool"}},"light_blue_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/light_blue_concrete"}},"light_blue_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/light_blue_concrete_powder"}},"light_blue_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/light_blue_glazed_terracotta"}},"light_blue_shulker_box":{"textures":{"particle":"block\/light_blue_shulker_box"}},"light_blue_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/light_blue_stained_glass"}},"light_blue_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/light_blue_stained_glass"}},"light_blue_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/light_blue_stained_glass"}},"light_blue_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/light_blue_stained_glass","edge":"block\/light_blue_stained_glass_pane_top"}},"light_blue_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/light_blue_stained_glass","edge":"block\/light_blue_stained_glass_pane_top"}},"light_blue_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/light_blue_stained_glass","edge":"block\/light_blue_stained_glass_pane_top"}},"light_blue_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/light_blue_terracotta"}},"light_blue_wool":{"parent":"block\/cube_all","textures":{"all":"block\/light_blue_wool"}},"light_gray_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/light_gray_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"light_gray_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/light_gray_candle","particle":"block\/light_gray_candle"}},"light_gray_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/light_gray_candle","particle":"block\/light_gray_candle"}},"light_gray_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/light_gray_candle","particle":"block\/light_gray_candle"}},"light_gray_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/light_gray_candle","particle":"block\/light_gray_candle"}},"light_gray_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/light_gray_wool"}},"light_gray_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/light_gray_concrete"}},"light_gray_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/light_gray_concrete_powder"}},"light_gray_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/light_gray_glazed_terracotta"}},"light_gray_shulker_box":{"textures":{"particle":"block\/light_gray_shulker_box"}},"light_gray_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/light_gray_stained_glass"}},"light_gray_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/light_gray_stained_glass"}},"light_gray_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/light_gray_stained_glass"}},"light_gray_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/light_gray_stained_glass","edge":"block\/light_gray_stained_glass_pane_top"}},"light_gray_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/light_gray_stained_glass","edge":"block\/light_gray_stained_glass_pane_top"}},"light_gray_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/light_gray_stained_glass","edge":"block\/light_gray_stained_glass_pane_top"}},"light_gray_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/light_gray_terracotta"}},"light_gray_wool":{"parent":"block\/cube_all","textures":{"all":"block\/light_gray_wool"}},"light_weighted_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/gold_block"}},"light_weighted_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/gold_block"}},"lilac_bottom":{"parent":"block\/cross","textures":{"cross":"block\/lilac_bottom"}},"lilac_top":{"parent":"block\/cross","textures":{"cross":"block\/lilac_top"}},"lily_of_the_valley":{"parent":"block\/cross","textures":{"cross":"block\/lily_of_the_valley"}},"lily_pad":{"ambientocclusion":false,"textures":{"particle":"block\/lily_pad","texture":"block\/lily_pad"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,16],"faces":{"down":{"uv":[16,16,0,0],"texture":"#texture","tintindex":0},"up":{"uv":[16,0,0,16],"texture":"#texture","tintindex":0}}}]},"lime_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/lime_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"lime_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/lime_candle","particle":"block\/lime_candle"}},"lime_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/lime_candle","particle":"block\/lime_candle"}},"lime_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/lime_candle","particle":"block\/lime_candle"}},"lime_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/lime_candle","particle":"block\/lime_candle"}},"lime_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/lime_wool"}},"lime_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/lime_concrete"}},"lime_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/lime_concrete_powder"}},"lime_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/lime_glazed_terracotta"}},"lime_shulker_box":{"textures":{"particle":"block\/lime_shulker_box"}},"lime_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/lime_stained_glass"}},"lime_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/lime_stained_glass"}},"lime_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/lime_stained_glass"}},"lime_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/lime_stained_glass","edge":"block\/lime_stained_glass_pane_top"}},"lime_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/lime_stained_glass","edge":"block\/lime_stained_glass_pane_top"}},"lime_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/lime_stained_glass","edge":"block\/lime_stained_glass_pane_top"}},"lime_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/lime_terracotta"}},"lime_wool":{"parent":"block\/cube_all","textures":{"all":"block\/lime_wool"}},"lodestone":{"parent":"block\/cube_column","textures":{"end":"block\/lodestone_top","side":"block\/lodestone_side"}},"loom":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/loom_top","bottom":"block\/loom_bottom","side":"block\/loom_side","front":"block\/loom_front"}},"magenta_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/magenta_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"magenta_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/magenta_candle","particle":"block\/magenta_candle"}},"magenta_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/magenta_candle","particle":"block\/magenta_candle"}},"magenta_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/magenta_candle","particle":"block\/magenta_candle"}},"magenta_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/magenta_candle","particle":"block\/magenta_candle"}},"magenta_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/magenta_wool"}},"magenta_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/magenta_concrete"}},"magenta_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/magenta_concrete_powder"}},"magenta_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/magenta_glazed_terracotta"}},"magenta_shulker_box":{"textures":{"particle":"block\/magenta_shulker_box"}},"magenta_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/magenta_stained_glass"}},"magenta_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/magenta_stained_glass"}},"magenta_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/magenta_stained_glass"}},"magenta_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/magenta_stained_glass","edge":"block\/magenta_stained_glass_pane_top"}},"magenta_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/magenta_stained_glass","edge":"block\/magenta_stained_glass_pane_top"}},"magenta_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/magenta_stained_glass","edge":"block\/magenta_stained_glass_pane_top"}},"magenta_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/magenta_terracotta"}},"magenta_wool":{"parent":"block\/cube_all","textures":{"all":"block\/magenta_wool"}},"magma_block":{"parent":"block\/cube_all","textures":{"all":"block\/magma"}},"medium_amethyst_bud":{"parent":"block\/cross","textures":{"cross":"block\/medium_amethyst_bud"}},"melon":{"parent":"block\/cube_column","textures":{"end":"block\/melon_top","side":"block\/melon_side"}},"melon_stem_stage0":{"parent":"block\/stem_growth0","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage1":{"parent":"block\/stem_growth1","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage2":{"parent":"block\/stem_growth2","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage3":{"parent":"block\/stem_growth3","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage4":{"parent":"block\/stem_growth4","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage5":{"parent":"block\/stem_growth5","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage6":{"parent":"block\/stem_growth6","textures":{"stem":"block\/melon_stem"}},"melon_stem_stage7":{"parent":"block\/stem_growth7","textures":{"stem":"block\/melon_stem"}},"mossy_cobblestone":{"parent":"block\/cube_all","textures":{"all":"block\/mossy_cobblestone"}},"mossy_cobblestone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/mossy_cobblestone","top":"block\/mossy_cobblestone","side":"block\/mossy_cobblestone"}},"mossy_cobblestone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/mossy_cobblestone","top":"block\/mossy_cobblestone","side":"block\/mossy_cobblestone"}},"mossy_cobblestone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/mossy_cobblestone","top":"block\/mossy_cobblestone","side":"block\/mossy_cobblestone"}},"mossy_cobblestone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/mossy_cobblestone","top":"block\/mossy_cobblestone","side":"block\/mossy_cobblestone"}},"mossy_cobblestone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/mossy_cobblestone","top":"block\/mossy_cobblestone","side":"block\/mossy_cobblestone"}},"mossy_cobblestone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/mossy_cobblestone"}},"mossy_cobblestone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/mossy_cobblestone"}},"mossy_cobblestone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/mossy_cobblestone"}},"mossy_cobblestone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/mossy_cobblestone"}},"mossy_stone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/mossy_stone_bricks"}},"mossy_stone_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/mossy_stone_bricks","top":"block\/mossy_stone_bricks","side":"block\/mossy_stone_bricks"}},"mossy_stone_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/mossy_stone_bricks","top":"block\/mossy_stone_bricks","side":"block\/mossy_stone_bricks"}},"mossy_stone_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/mossy_stone_bricks","top":"block\/mossy_stone_bricks","side":"block\/mossy_stone_bricks"}},"mossy_stone_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/mossy_stone_bricks","top":"block\/mossy_stone_bricks","side":"block\/mossy_stone_bricks"}},"mossy_stone_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/mossy_stone_bricks","top":"block\/mossy_stone_bricks","side":"block\/mossy_stone_bricks"}},"mossy_stone_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/mossy_stone_bricks"}},"mossy_stone_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/mossy_stone_bricks"}},"mossy_stone_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/mossy_stone_bricks"}},"mossy_stone_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/mossy_stone_bricks"}},"moving_piston":{"textures":{"particle":"block\/piston_side"}},"mushroom_block_inside":{"parent":"block\/template_single_face","ambientocclusion":false,"textures":{"texture":"block\/mushroom_block_inside"}},"mushroom_stem":{"parent":"block\/template_single_face","textures":{"texture":"block\/mushroom_stem"}},"mushroom_stem_inventory":{"parent":"block\/cube_all","textures":{"all":"block\/mushroom_stem"}},"mycelium":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/mycelium_top","bottom":"block\/dirt","side":"block\/mycelium_side"}},"netherite_block":{"parent":"block\/cube_all","textures":{"all":"block\/netherite_block"}},"netherrack":{"parent":"block\/cube_all","textures":{"all":"block\/netherrack"}},"nether_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/nether_bricks"}},"nether_brick_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/nether_bricks"}},"nether_brick_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/nether_bricks"}},"nether_brick_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/nether_bricks"}},"nether_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/nether_bricks","top":"block\/nether_bricks","side":"block\/nether_bricks"}},"nether_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/nether_bricks","top":"block\/nether_bricks","side":"block\/nether_bricks"}},"nether_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/nether_bricks","top":"block\/nether_bricks","side":"block\/nether_bricks"}},"nether_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/nether_bricks","top":"block\/nether_bricks","side":"block\/nether_bricks"}},"nether_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/nether_bricks","top":"block\/nether_bricks","side":"block\/nether_bricks"}},"nether_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/nether_bricks"}},"nether_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/nether_bricks"}},"nether_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/nether_bricks"}},"nether_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/nether_bricks"}},"nether_gold_ore":{"parent":"block\/cube_all","textures":{"all":"block\/nether_gold_ore"}},"nether_portal_ew":{"textures":{"particle":"block\/nether_portal","portal":"block\/nether_portal"},"elements":[{"from":[6,0,0],"to":[10,16,16],"faces":{"east":{"uv":[0,0,16,16],"texture":"#portal"},"west":{"uv":[0,0,16,16],"texture":"#portal"}}}]},"nether_portal_ns":{"textures":{"particle":"block\/nether_portal","portal":"block\/nether_portal"},"elements":[{"from":[0,0,6],"to":[16,16,10],"faces":{"north":{"uv":[0,0,16,16],"texture":"#portal"},"south":{"uv":[0,0,16,16],"texture":"#portal"}}}]},"nether_quartz_ore":{"parent":"block\/cube_all","textures":{"all":"block\/nether_quartz_ore"}},"nether_sprouts":{"parent":"block\/cross","textures":{"cross":"block\/nether_sprouts"}},"nether_wart_block":{"parent":"block\/cube_all","textures":{"all":"block\/nether_wart_block"}},"nether_wart_stage0":{"parent":"block\/crop","textures":{"crop":"block\/nether_wart_stage0"}},"nether_wart_stage1":{"parent":"block\/crop","textures":{"crop":"block\/nether_wart_stage1"}},"nether_wart_stage2":{"parent":"block\/crop","textures":{"crop":"block\/nether_wart_stage2"}},"note_block":{"parent":"block\/cube_all","textures":{"all":"block\/note_block"}},"oak_button":{"parent":"block\/button","textures":{"texture":"block\/oak_planks"}},"oak_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/oak_planks"}},"oak_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/oak_planks"}},"oak_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/oak_door_top","bottom":"block\/oak_door_bottom"}},"oak_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/oak_door_top","bottom":"block\/oak_door_bottom"}},"oak_door_top":{"parent":"block\/door_top","textures":{"top":"block\/oak_door_top","bottom":"block\/oak_door_bottom"}},"oak_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/oak_door_top","bottom":"block\/oak_door_bottom"}},"oak_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/oak_planks"}},"oak_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/oak_planks"}},"oak_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/oak_planks"}},"oak_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/oak_planks"}},"oak_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/oak_planks"}},"oak_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/oak_planks"}},"oak_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/oak_planks"}},"oak_leaves":{"parent":"block\/leaves","textures":{"all":"block\/oak_leaves"}},"oak_log":{"parent":"block\/cube_column","textures":{"end":"block\/oak_log_top","side":"block\/oak_log"}},"oak_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/oak_log_top","side":"block\/oak_log"}},"oak_planks":{"parent":"block\/cube_all","textures":{"all":"block\/oak_planks"}},"oak_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/oak_planks"}},"oak_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/oak_planks"}},"oak_sapling":{"parent":"block\/cross","textures":{"cross":"block\/oak_sapling"}},"oak_sign":{"textures":{"particle":"block\/oak_planks"}},"oak_slab":{"parent":"block\/slab","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"oak_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"oak_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"oak_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"oak_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"oak_trapdoor_bottom":{"parent":"block\/template_trapdoor_bottom","textures":{"texture":"block\/oak_trapdoor"}},"oak_trapdoor_open":{"parent":"block\/template_trapdoor_open","textures":{"texture":"block\/oak_trapdoor"}},"oak_trapdoor_top":{"parent":"block\/template_trapdoor_top","textures":{"texture":"block\/oak_trapdoor"}},"oak_wood":{"parent":"block\/cube_column","textures":{"end":"block\/oak_log","side":"block\/oak_log"}},"observer":{"parent":"block\/block","textures":{"bottom":"block\/observer_back","side":"block\/observer_side","top":"block\/observer_top","front":"block\/observer_front","particle":"block\/observer_front"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#top","cullface":"down"},"up":{"uv":[0,16,16,0],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#front","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","cullface":"east"}}}]},"observer_on":{"parent":"block\/observer","textures":{"bottom":"block\/observer_back_on"}},"obsidian":{"parent":"block\/cube_all","textures":{"all":"block\/obsidian"}},"orange_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/orange_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"orange_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/orange_candle","particle":"block\/orange_candle"}},"orange_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/orange_candle","particle":"block\/orange_candle"}},"orange_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/orange_candle","particle":"block\/orange_candle"}},"orange_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/orange_candle","particle":"block\/orange_candle"}},"orange_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/orange_wool"}},"orange_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/orange_concrete"}},"orange_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/orange_concrete_powder"}},"orange_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/orange_glazed_terracotta"}},"orange_shulker_box":{"textures":{"particle":"block\/orange_shulker_box"}},"orange_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/orange_stained_glass"}},"orange_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/orange_stained_glass"}},"orange_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/orange_stained_glass"}},"orange_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/orange_stained_glass","edge":"block\/orange_stained_glass_pane_top"}},"orange_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/orange_stained_glass","edge":"block\/orange_stained_glass_pane_top"}},"orange_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/orange_stained_glass","edge":"block\/orange_stained_glass_pane_top"}},"orange_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/orange_terracotta"}},"orange_tulip":{"parent":"block\/cross","textures":{"cross":"block\/orange_tulip"}},"orange_wool":{"parent":"block\/cube_all","textures":{"all":"block\/orange_wool"}},"orientable":{"parent":"block\/orientable_with_bottom","textures":{"bottom":"#top"}},"orientable_vertical":{"parent":"block\/cube","textures":{"particle":"#side","down":"#side","up":"#front","north":"#side","east":"#side","south":"#side","west":"#side"}},"orientable_with_bottom":{"parent":"block\/cube","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"particle":"#front","down":"#bottom","up":"#top","north":"#front","east":"#side","south":"#side","west":"#side"}},"outer_stairs":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,8],"to":[16,16,16],"faces":{"up":{"uv":[8,8,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[8,0,16,8],"texture":"#side"},"east":{"uv":[0,0,8,8],"texture":"#side","cullface":"east"}}}]},"oxeye_daisy":{"parent":"block\/cross","textures":{"cross":"block\/oxeye_daisy"}},"packed_ice":{"parent":"block\/cube_all","textures":{"all":"block\/packed_ice"}},"peony_bottom":{"parent":"block\/cross","textures":{"cross":"block\/peony_bottom"}},"peony_top":{"parent":"block\/cross","textures":{"cross":"block\/peony_top"}},"petrified_oak_slab":{"parent":"block\/slab","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"petrified_oak_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/oak_planks","top":"block\/oak_planks","side":"block\/oak_planks"}},"pink_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/pink_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"pink_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/pink_candle","particle":"block\/pink_candle"}},"pink_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/pink_candle","particle":"block\/pink_candle"}},"pink_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/pink_candle","particle":"block\/pink_candle"}},"pink_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/pink_candle","particle":"block\/pink_candle"}},"pink_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/pink_wool"}},"pink_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/pink_concrete"}},"pink_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/pink_concrete_powder"}},"pink_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/pink_glazed_terracotta"}},"pink_shulker_box":{"textures":{"particle":"block\/pink_shulker_box"}},"pink_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/pink_stained_glass"}},"pink_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/pink_stained_glass"}},"pink_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/pink_stained_glass"}},"pink_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/pink_stained_glass","edge":"block\/pink_stained_glass_pane_top"}},"pink_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/pink_stained_glass","edge":"block\/pink_stained_glass_pane_top"}},"pink_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/pink_stained_glass","edge":"block\/pink_stained_glass_pane_top"}},"pink_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/pink_terracotta"}},"pink_tulip":{"parent":"block\/cross","textures":{"cross":"block\/pink_tulip"}},"pink_wool":{"parent":"block\/cube_all","textures":{"all":"block\/pink_wool"}},"piston":{"parent":"block\/template_piston","textures":{"platform":"block\/piston_top","bottom":"block\/piston_bottom","side":"block\/piston_side"}},"piston_base":{"parent":"block\/piston_extended","textures":{"bottom":"block\/piston_bottom","side":"block\/piston_side","inside":"block\/piston_inner"}},"piston_extended":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,4],"to":[16,16,16],"faces":{"down":{"uv":[0,4,16,16],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,4,16,16],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#inside"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#side","cullface":"west","rotation":270},"east":{"uv":[0,4,16,16],"texture":"#side","cullface":"east","rotation":90}}}]},"piston_head":{"parent":"block\/template_piston_head","textures":{"platform":"block\/piston_top","side":"block\/piston_side","unsticky":"block\/piston_top"}},"piston_head_short":{"parent":"block\/template_piston_head_short","textures":{"platform":"block\/piston_top","side":"block\/piston_side","unsticky":"block\/piston_top"}},"piston_head_short_sticky":{"parent":"block\/template_piston_head_short","textures":{"platform":"block\/piston_top_sticky","side":"block\/piston_side","unsticky":"block\/piston_top"}},"piston_head_sticky":{"parent":"block\/template_piston_head","textures":{"platform":"block\/piston_top_sticky","side":"block\/piston_side","unsticky":"block\/piston_top"}},"piston_inventory":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/piston_top","bottom":"block\/piston_bottom","side":"block\/piston_side"}},"podzol":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/podzol_top","bottom":"block\/dirt","side":"block\/podzol_side"}},"polished_andesite":{"parent":"block\/cube_all","textures":{"all":"block\/polished_andesite"}},"polished_andesite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/polished_andesite","top":"block\/polished_andesite","side":"block\/polished_andesite"}},"polished_andesite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/polished_andesite","top":"block\/polished_andesite","side":"block\/polished_andesite"}},"polished_andesite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/polished_andesite","top":"block\/polished_andesite","side":"block\/polished_andesite"}},"polished_andesite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/polished_andesite","top":"block\/polished_andesite","side":"block\/polished_andesite"}},"polished_andesite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/polished_andesite","top":"block\/polished_andesite","side":"block\/polished_andesite"}},"polished_basalt":{"parent":"block\/cube_column","textures":{"end":"block\/polished_basalt_top","side":"block\/polished_basalt_side"}},"polished_blackstone":{"parent":"block\/cube_all","textures":{"all":"block\/polished_blackstone"}},"polished_blackstone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/polished_blackstone_bricks","top":"block\/polished_blackstone_bricks","side":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/polished_blackstone_bricks","top":"block\/polished_blackstone_bricks","side":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/polished_blackstone_bricks","top":"block\/polished_blackstone_bricks","side":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/polished_blackstone_bricks","top":"block\/polished_blackstone_bricks","side":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/polished_blackstone_bricks","top":"block\/polished_blackstone_bricks","side":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/polished_blackstone_bricks"}},"polished_blackstone_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/polished_blackstone_bricks"}},"polished_blackstone_button":{"parent":"block\/button","textures":{"texture":"block\/polished_blackstone"}},"polished_blackstone_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/polished_blackstone"}},"polished_blackstone_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/polished_blackstone"}},"polished_blackstone_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/polished_blackstone"}},"polished_blackstone_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/polished_blackstone"}},"polished_blackstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/polished_blackstone","top":"block\/polished_blackstone","side":"block\/polished_blackstone"}},"polished_blackstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/polished_blackstone","top":"block\/polished_blackstone","side":"block\/polished_blackstone"}},"polished_blackstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/polished_blackstone","top":"block\/polished_blackstone","side":"block\/polished_blackstone"}},"polished_blackstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/polished_blackstone","top":"block\/polished_blackstone","side":"block\/polished_blackstone"}},"polished_blackstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/polished_blackstone","top":"block\/polished_blackstone","side":"block\/polished_blackstone"}},"polished_blackstone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/polished_blackstone"}},"polished_blackstone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/polished_blackstone"}},"polished_blackstone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/polished_blackstone"}},"polished_blackstone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/polished_blackstone"}},"polished_diorite":{"parent":"block\/cube_all","textures":{"all":"block\/polished_diorite"}},"polished_diorite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/polished_diorite","top":"block\/polished_diorite","side":"block\/polished_diorite"}},"polished_diorite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/polished_diorite","top":"block\/polished_diorite","side":"block\/polished_diorite"}},"polished_diorite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/polished_diorite","top":"block\/polished_diorite","side":"block\/polished_diorite"}},"polished_diorite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/polished_diorite","top":"block\/polished_diorite","side":"block\/polished_diorite"}},"polished_diorite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/polished_diorite","top":"block\/polished_diorite","side":"block\/polished_diorite"}},"polished_granite":{"parent":"block\/cube_all","textures":{"all":"block\/polished_granite"}},"polished_granite_slab":{"parent":"block\/slab","textures":{"bottom":"block\/polished_granite","top":"block\/polished_granite","side":"block\/polished_granite"}},"polished_granite_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/polished_granite","top":"block\/polished_granite","side":"block\/polished_granite"}},"polished_granite_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/polished_granite","top":"block\/polished_granite","side":"block\/polished_granite"}},"polished_granite_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/polished_granite","top":"block\/polished_granite","side":"block\/polished_granite"}},"polished_granite_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/polished_granite","top":"block\/polished_granite","side":"block\/polished_granite"}},"poppy":{"parent":"block\/cross","textures":{"cross":"block\/poppy"}},"potatoes_stage0":{"parent":"block\/crop","textures":{"crop":"block\/potatoes_stage0"}},"potatoes_stage1":{"parent":"block\/crop","textures":{"crop":"block\/potatoes_stage1"}},"potatoes_stage2":{"parent":"block\/crop","textures":{"crop":"block\/potatoes_stage2"}},"potatoes_stage3":{"parent":"block\/crop","textures":{"crop":"block\/potatoes_stage3"}},"potted_acacia_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/acacia_sapling"}},"potted_allium":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/allium"}},"potted_azure_bluet":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/azure_bluet"}},"potted_bamboo":{"ambientocclusion":false,"textures":{"particle":"block\/flower_pot","flowerpot":"block\/flower_pot","dirt":"block\/dirt","bamboo":"block\/bamboo_stalk","leaf":"block\/bamboo_singleleaf"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,12,10,16],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[7,0,7],"to":[9,16,9],"faces":{"up":{"uv":[13,0,15,2],"texture":"#bamboo","cullface":"up"},"north":{"uv":[6,0,8,16],"texture":"#bamboo"},"south":{"uv":[6,0,8,16],"texture":"#bamboo"},"west":{"uv":[6,0,8,16],"texture":"#bamboo"},"east":{"uv":[6,0,8,16],"texture":"#bamboo"}}},{"from":[0,2,8],"to":[16,18,8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#leaf"},"south":{"uv":[16,0,0,16],"texture":"#leaf"}}}]},"potted_birch_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/birch_sapling"}},"potted_blue_orchid":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/blue_orchid"}},"potted_brown_mushroom":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/brown_mushroom"}},"potted_cactus":{"ambientocclusion":false,"textures":{"particle":"block\/flower_pot","flowerpot":"block\/flower_pot","cactus_top":"block\/cactus_top","cactus":"block\/cactus_side"},"elements":[{"from":[5,0,5],"to":[11,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"texture":"#flowerpot"},"north":{"texture":"#flowerpot"},"south":{"texture":"#flowerpot"},"west":{"texture":"#flowerpot"},"east":{"texture":"#flowerpot"}}},{"from":[6,5,6],"to":[10,16,10],"faces":{"up":{"texture":"#cactus_top","cullface":"up"},"north":{"uv":[6,0,10,12],"texture":"#cactus"},"south":{"uv":[6,0,10,12],"texture":"#cactus"},"west":{"uv":[6,0,10,12],"texture":"#cactus"},"east":{"uv":[6,0,10,12],"texture":"#cactus"}}}]},"potted_cornflower":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/cornflower"}},"potted_crimson_fungus":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/crimson_fungus"}},"potted_crimson_roots":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/crimson_roots_pot"}},"potted_dandelion":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/dandelion"}},"potted_dark_oak_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/dark_oak_sapling"}},"potted_dead_bush":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/dead_bush"}},"potted_fern":{"parent":"block\/tinted_flower_pot_cross","textures":{"plant":"block\/fern"}},"potted_jungle_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/jungle_sapling"}},"potted_lily_of_the_valley":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/lily_of_the_valley"}},"potted_oak_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/oak_sapling"}},"potted_orange_tulip":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/orange_tulip"}},"potted_oxeye_daisy":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/oxeye_daisy"}},"potted_pink_tulip":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/pink_tulip"}},"potted_poppy":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/poppy"}},"potted_red_mushroom":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/red_mushroom"}},"potted_red_tulip":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/red_tulip"}},"potted_spruce_sapling":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/spruce_sapling"}},"potted_warped_fungus":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/warped_fungus"}},"potted_warped_roots":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/warped_roots_pot"}},"potted_white_tulip":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/white_tulip"}},"potted_wither_rose":{"parent":"block\/flower_pot_cross","textures":{"plant":"block\/wither_rose"}},"powered_rail":{"parent":"block\/rail_flat","textures":{"rail":"block\/powered_rail"}},"powered_rail_on":{"parent":"block\/rail_flat","textures":{"rail":"block\/powered_rail_on"}},"powered_rail_on_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/powered_rail_on"}},"powered_rail_on_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/powered_rail_on"}},"powered_rail_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/powered_rail"}},"powered_rail_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/powered_rail"}},"pressure_plate_down":{"textures":{"particle":"#texture"},"elements":[{"from":[1,0,1],"to":[15,0.5,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#texture","cullface":"down"},"up":{"uv":[1,1,15,15],"texture":"#texture"},"north":{"uv":[1,15,15,15.5],"texture":"#texture"},"south":{"uv":[1,15,15,15.5],"texture":"#texture"},"west":{"uv":[1,15,15,15.5],"texture":"#texture"},"east":{"uv":[1,15,15,15.5],"texture":"#texture"}}}]},"pressure_plate_up":{"parent":"block\/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[1,0,1],"to":[15,1,15],"faces":{"down":{"uv":[1,1,15,15],"texture":"#texture","cullface":"down"},"up":{"uv":[1,1,15,15],"texture":"#texture"},"north":{"uv":[1,15,15,16],"texture":"#texture"},"south":{"uv":[1,15,15,16],"texture":"#texture"},"west":{"uv":[1,15,15,16],"texture":"#texture"},"east":{"uv":[1,15,15,16],"texture":"#texture"}}}]},"prismarine":{"parent":"block\/cube_all","textures":{"all":"block\/prismarine"}},"prismarine_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/prismarine_bricks"}},"prismarine_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/prismarine_bricks","top":"block\/prismarine_bricks","side":"block\/prismarine_bricks"}},"prismarine_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/prismarine_bricks","top":"block\/prismarine_bricks","side":"block\/prismarine_bricks"}},"prismarine_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/prismarine_bricks","top":"block\/prismarine_bricks","side":"block\/prismarine_bricks"}},"prismarine_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/prismarine_bricks","top":"block\/prismarine_bricks","side":"block\/prismarine_bricks"}},"prismarine_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/prismarine_bricks","top":"block\/prismarine_bricks","side":"block\/prismarine_bricks"}},"prismarine_slab":{"parent":"block\/slab","textures":{"bottom":"block\/prismarine","top":"block\/prismarine","side":"block\/prismarine"}},"prismarine_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/prismarine","top":"block\/prismarine","side":"block\/prismarine"}},"prismarine_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/prismarine","top":"block\/prismarine","side":"block\/prismarine"}},"prismarine_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/prismarine","top":"block\/prismarine","side":"block\/prismarine"}},"prismarine_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/prismarine","top":"block\/prismarine","side":"block\/prismarine"}},"prismarine_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/prismarine"}},"prismarine_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/prismarine"}},"prismarine_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/prismarine"}},"prismarine_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/prismarine"}},"pumpkin":{"parent":"block\/cube_column","display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"textures":{"end":"block\/pumpkin_top","side":"block\/pumpkin_side"}},"pumpkin_stem_stage0":{"parent":"block\/stem_growth0","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage1":{"parent":"block\/stem_growth1","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage2":{"parent":"block\/stem_growth2","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage3":{"parent":"block\/stem_growth3","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage4":{"parent":"block\/stem_growth4","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage5":{"parent":"block\/stem_growth5","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage6":{"parent":"block\/stem_growth6","textures":{"stem":"block\/pumpkin_stem"}},"pumpkin_stem_stage7":{"parent":"block\/stem_growth7","textures":{"stem":"block\/pumpkin_stem"}},"purple_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/purple_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"purple_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/purple_candle","particle":"block\/purple_candle"}},"purple_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/purple_candle","particle":"block\/purple_candle"}},"purple_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/purple_candle","particle":"block\/purple_candle"}},"purple_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/purple_candle","particle":"block\/purple_candle"}},"purple_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/purple_wool"}},"purple_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/purple_concrete"}},"purple_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/purple_concrete_powder"}},"purple_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/purple_glazed_terracotta"}},"purple_shulker_box":{"textures":{"particle":"block\/purple_shulker_box"}},"purple_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/purple_stained_glass"}},"purple_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/purple_stained_glass"}},"purple_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/purple_stained_glass"}},"purple_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/purple_stained_glass","edge":"block\/purple_stained_glass_pane_top"}},"purple_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/purple_stained_glass","edge":"block\/purple_stained_glass_pane_top"}},"purple_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/purple_stained_glass","edge":"block\/purple_stained_glass_pane_top"}},"purple_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/purple_terracotta"}},"purple_wool":{"parent":"block\/cube_all","textures":{"all":"block\/purple_wool"}},"purpur_block":{"parent":"block\/cube_all","textures":{"all":"block\/purpur_block"}},"purpur_pillar":{"parent":"block\/cube_column","textures":{"end":"block\/purpur_pillar_top","side":"block\/purpur_pillar"}},"purpur_pillar_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/purpur_pillar_top","side":"block\/purpur_pillar"}},"purpur_slab":{"parent":"block\/slab","textures":{"bottom":"block\/purpur_block","top":"block\/purpur_block","side":"block\/purpur_block"}},"purpur_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/purpur_block","top":"block\/purpur_block","side":"block\/purpur_block"}},"purpur_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/purpur_block","top":"block\/purpur_block","side":"block\/purpur_block"}},"purpur_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/purpur_block","top":"block\/purpur_block","side":"block\/purpur_block"}},"purpur_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/purpur_block","top":"block\/purpur_block","side":"block\/purpur_block"}},"quartz_block":{"parent":"block\/cube_column","textures":{"end":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"quartz_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/quartz_bricks"}},"quartz_pillar":{"parent":"block\/cube_column","textures":{"end":"block\/quartz_pillar_top","side":"block\/quartz_pillar"}},"quartz_pillar_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/quartz_pillar_top","side":"block\/quartz_pillar"}},"quartz_slab":{"parent":"block\/slab","textures":{"bottom":"block\/quartz_block_top","top":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"quartz_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/quartz_block_top","top":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"quartz_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/quartz_block_top","top":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"quartz_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/quartz_block_top","top":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"quartz_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/quartz_block_top","top":"block\/quartz_block_top","side":"block\/quartz_block_side"}},"rail":{"parent":"block\/rail_flat","textures":{"rail":"block\/rail"}},"rail_corner":{"parent":"block\/rail_curved","textures":{"rail":"block\/rail_corner"}},"rail_curved":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,1,0],"to":[16,1,16],"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"rail_flat":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,1,0],"to":[16,1,16],"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"rail_raised_ne":{"parent":"block\/template_rail_raised_ne","textures":{"rail":"block\/rail"}},"rail_raised_sw":{"parent":"block\/template_rail_raised_sw","textures":{"rail":"block\/rail"}},"redstone_block":{"parent":"block\/cube_all","textures":{"all":"block\/redstone_block"}},"redstone_dust_dot":{"ambientocclusion":false,"textures":{"particle":"block\/redstone_dust_dot","line":"block\/redstone_dust_dot","overlay":"block\/redstone_dust_overlay"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#line","tintindex":0},"down":{"uv":[0,16,16,0],"texture":"#line","tintindex":0}}},{"from":[0,0.25,0],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,0,16,16],"texture":"#overlay"},"down":{"uv":[0,16,16,0],"texture":"#overlay"}}}]},"redstone_dust_side":{"ambientocclusion":false,"textures":{"particle":"block\/redstone_dust_dot","overlay":"block\/redstone_dust_overlay"},"elements":[{"from":[0,0.25,0],"to":[16,0.25,8],"shade":false,"faces":{"up":{"uv":[0,0,16,8],"texture":"#line","tintindex":0},"down":{"uv":[0,8,16,0],"texture":"#line","tintindex":0}}},{"from":[0,0.25,0],"to":[16,0.25,8],"shade":false,"faces":{"up":{"uv":[0,0,16,8],"texture":"#overlay"},"down":{"uv":[0,8,16,0],"texture":"#overlay"}}}]},"redstone_dust_side0":{"parent":"block\/redstone_dust_side","textures":{"line":"block\/redstone_dust_line0"}},"redstone_dust_side1":{"parent":"block\/redstone_dust_side","textures":{"line":"block\/redstone_dust_line1"}},"redstone_dust_side_alt":{"ambientocclusion":false,"textures":{"particle":"block\/redstone_dust_dot","overlay":"block\/redstone_dust_overlay"},"elements":[{"from":[0,0.25,8],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,8,16,16],"texture":"#line","tintindex":0},"down":{"uv":[0,16,16,8],"texture":"#line","tintindex":0}}},{"from":[0,0.25,8],"to":[16,0.25,16],"shade":false,"faces":{"up":{"uv":[0,8,16,16],"texture":"#overlay"},"down":{"uv":[0,16,16,8],"texture":"#overlay"}}}]},"redstone_dust_side_alt0":{"parent":"block\/redstone_dust_side_alt","textures":{"line":"block\/redstone_dust_line0"}},"redstone_dust_side_alt1":{"parent":"block\/redstone_dust_side_alt","textures":{"line":"block\/redstone_dust_line1"}},"redstone_dust_up":{"ambientocclusion":false,"textures":{"particle":"block\/redstone_dust_dot","line":"block\/redstone_dust_line0","overlay":"block\/redstone_dust_overlay"},"elements":[{"from":[0,0,0.25],"to":[16,16,0.25],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#line","tintindex":0},"north":{"uv":[16,0,0,16],"texture":"#line","tintindex":0}}},{"from":[0,0,0.25],"to":[16,16,0.25],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#overlay"},"north":{"uv":[16,0,0,16],"texture":"#overlay"}}}]},"redstone_lamp":{"parent":"block\/cube_all","textures":{"all":"block\/redstone_lamp"}},"redstone_lamp_on":{"parent":"block\/cube_all","textures":{"all":"block\/redstone_lamp_on"}},"redstone_ore":{"parent":"block\/cube_all","textures":{"all":"block\/redstone_ore"}},"redstone_torch":{"parent":"block\/template_torch","textures":{"torch":"block\/redstone_torch"}},"redstone_torch_off":{"parent":"block\/template_torch","textures":{"torch":"block\/redstone_torch_off"}},"redstone_wall_torch":{"parent":"block\/template_torch_wall","textures":{"torch":"block\/redstone_torch"}},"redstone_wall_torch_off":{"parent":"block\/template_torch_wall","textures":{"torch":"block\/redstone_torch_off"}},"red_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/red_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"red_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/red_candle","particle":"block\/red_candle"}},"red_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/red_candle","particle":"block\/red_candle"}},"red_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/red_candle","particle":"block\/red_candle"}},"red_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/red_candle","particle":"block\/red_candle"}},"red_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/red_wool"}},"red_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/red_concrete"}},"red_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/red_concrete_powder"}},"red_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/red_glazed_terracotta"}},"red_mushroom":{"parent":"block\/cross","textures":{"cross":"block\/red_mushroom"}},"red_mushroom_block":{"parent":"block\/template_single_face","textures":{"texture":"block\/red_mushroom_block"}},"red_mushroom_block_inventory":{"parent":"block\/cube_all","textures":{"all":"block\/red_mushroom_block"}},"red_nether_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/red_nether_bricks"}},"red_nether_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/red_nether_bricks","top":"block\/red_nether_bricks","side":"block\/red_nether_bricks"}},"red_nether_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/red_nether_bricks","top":"block\/red_nether_bricks","side":"block\/red_nether_bricks"}},"red_nether_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/red_nether_bricks","top":"block\/red_nether_bricks","side":"block\/red_nether_bricks"}},"red_nether_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/red_nether_bricks","top":"block\/red_nether_bricks","side":"block\/red_nether_bricks"}},"red_nether_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/red_nether_bricks","top":"block\/red_nether_bricks","side":"block\/red_nether_bricks"}},"red_nether_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/red_nether_bricks"}},"red_nether_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/red_nether_bricks"}},"red_nether_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/red_nether_bricks"}},"red_nether_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/red_nether_bricks"}},"red_sand":{"parent":"block\/cube_all","textures":{"all":"block\/red_sand"}},"red_sandstone":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/red_sandstone_top","bottom":"block\/red_sandstone_bottom","side":"block\/red_sandstone"}},"red_sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/red_sandstone_bottom","top":"block\/red_sandstone_top","side":"block\/red_sandstone"}},"red_sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/red_sandstone_bottom","top":"block\/red_sandstone_top","side":"block\/red_sandstone"}},"red_sandstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/red_sandstone_bottom","top":"block\/red_sandstone_top","side":"block\/red_sandstone"}},"red_sandstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/red_sandstone_bottom","top":"block\/red_sandstone_top","side":"block\/red_sandstone"}},"red_sandstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/red_sandstone_bottom","top":"block\/red_sandstone_top","side":"block\/red_sandstone"}},"red_sandstone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/red_sandstone"}},"red_sandstone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/red_sandstone"}},"red_sandstone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/red_sandstone"}},"red_sandstone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/red_sandstone"}},"red_shulker_box":{"textures":{"particle":"block\/red_shulker_box"}},"red_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/red_stained_glass"}},"red_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/red_stained_glass"}},"red_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/red_stained_glass"}},"red_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/red_stained_glass","edge":"block\/red_stained_glass_pane_top"}},"red_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/red_stained_glass","edge":"block\/red_stained_glass_pane_top"}},"red_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/red_stained_glass","edge":"block\/red_stained_glass_pane_top"}},"red_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/red_terracotta"}},"red_tulip":{"parent":"block\/cross","textures":{"cross":"block\/red_tulip"}},"red_wool":{"parent":"block\/cube_all","textures":{"all":"block\/red_wool"}},"repeater_1tick":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,6],"to":[9,7,8],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_1tick_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","lock":"block\/bedrock","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,6],"to":[14,4,8],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_1tick_on":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,6],"to":[9,7,8],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,5],"to":[9,8,9],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,6],"to":[10,8,8],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_1tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch","lock":"block\/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,6],"to":[14,4,8],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_2tick":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,8],"to":[9,7,10],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_2tick_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","lock":"block\/bedrock","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,8],"to":[14,4,10],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_2tick_on":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,8],"to":[9,7,10],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,7],"to":[9,8,11],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,8],"to":[10,8,10],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_2tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch","lock":"block\/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,8],"to":[14,4,10],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_3tick":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,10],"to":[9,7,12],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_3tick_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","lock":"block\/bedrock","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,10],"to":[14,4,12],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_3tick_on":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,10],"to":[9,7,12],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,9],"to":[9,8,13],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,10],"to":[10,8,12],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_3tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch","lock":"block\/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,10],"to":[14,4,12],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_4tick":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,2,12],"to":[9,7,14],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_4tick_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater","slab":"block\/smooth_stone","top":"block\/repeater","lock":"block\/bedrock","unlit":"block\/redstone_torch_off"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,12],"to":[14,4,14],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,2,2],"to":[9,7,4],"faces":{"down":{"uv":[7,13,9,15],"texture":"#unlit"},"up":{"uv":[7,6,9,8],"texture":"#unlit"},"north":{"uv":[7,6,9,11],"texture":"#unlit"},"south":{"uv":[7,6,9,11],"texture":"#unlit"},"west":{"uv":[7,6,9,11],"texture":"#unlit"},"east":{"uv":[7,6,9,11],"texture":"#unlit"}}}]},"repeater_4tick_on":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[7,7,12],"to":[9,7,14],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,11],"to":[9,8,15],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,12],"to":[10,8,14],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeater_4tick_on_locked":{"ambientocclusion":false,"textures":{"particle":"block\/repeater_on","slab":"block\/smooth_stone","top":"block\/repeater_on","lit":"block\/redstone_torch","lock":"block\/bedrock"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#slab","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,14,16,16],"texture":"#slab","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#slab","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#slab","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#slab","cullface":"east"}}},{"from":[2,2,12],"to":[14,4,14],"faces":{"down":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"up":{"uv":[7,2,9,14],"texture":"#lock","rotation":90},"north":{"uv":[2,7,14,9],"texture":"#lock"},"south":{"uv":[2,7,14,9],"texture":"#lock"},"west":{"uv":[6,7,8,9],"texture":"#lock"},"east":{"uv":[6,7,8,9],"texture":"#lock"}}},{"from":[7,7,2],"to":[9,7,4],"faces":{"up":{"uv":[7,6,9,8],"texture":"#lit"}}},{"from":[7,2,1],"to":[9,8,5],"faces":{"west":{"uv":[6,5,10,11],"texture":"#lit"},"east":{"uv":[6,5,10,11],"texture":"#lit"}}},{"from":[6,2,2],"to":[10,8,4],"faces":{"north":{"uv":[6,5,10,11],"texture":"#lit"},"south":{"uv":[6,5,10,11],"texture":"#lit"}}}]},"repeating_command_block":{"parent":"block\/template_command_block","textures":{"front":"block\/repeating_command_block_front","back":"block\/repeating_command_block_back","side":"block\/repeating_command_block_side"}},"repeating_command_block_conditional":{"parent":"block\/template_command_block","textures":{"front":"block\/repeating_command_block_front","back":"block\/repeating_command_block_back","side":"block\/repeating_command_block_conditional"}},"respawn_anchor_0":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/respawn_anchor_top_off","bottom":"block\/respawn_anchor_bottom","side":"block\/respawn_anchor_side0"}},"respawn_anchor_1":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/respawn_anchor_top","bottom":"block\/respawn_anchor_bottom","side":"block\/respawn_anchor_side1"}},"respawn_anchor_2":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/respawn_anchor_top","bottom":"block\/respawn_anchor_bottom","side":"block\/respawn_anchor_side2"}},"respawn_anchor_3":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/respawn_anchor_top","bottom":"block\/respawn_anchor_bottom","side":"block\/respawn_anchor_side3"}},"respawn_anchor_4":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/respawn_anchor_top","bottom":"block\/respawn_anchor_bottom","side":"block\/respawn_anchor_side4"}},"rose_bush_bottom":{"parent":"block\/cross","textures":{"cross":"block\/rose_bush_bottom"}},"rose_bush_top":{"parent":"block\/cross","textures":{"cross":"block\/rose_bush_top"}},"sand":{"parent":"block\/cube_all","textures":{"all":"block\/sand"}},"sandstone":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/sandstone_top","bottom":"block\/sandstone_bottom","side":"block\/sandstone"}},"sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/sandstone_bottom","top":"block\/sandstone_top","side":"block\/sandstone"}},"sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/sandstone_bottom","top":"block\/sandstone_top","side":"block\/sandstone"}},"sandstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/sandstone_bottom","top":"block\/sandstone_top","side":"block\/sandstone"}},"sandstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/sandstone_bottom","top":"block\/sandstone_top","side":"block\/sandstone"}},"sandstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/sandstone_bottom","top":"block\/sandstone_top","side":"block\/sandstone"}},"sandstone_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/sandstone"}},"sandstone_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/sandstone"}},"sandstone_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/sandstone"}},"sandstone_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/sandstone"}},"scaffolding_stable":{"parent":"block\/block","textures":{"particle":"block\/scaffolding_top","top":"block\/scaffolding_top","side":"block\/scaffolding_side","bottom":"block\/scaffolding_bottom"},"elements":[{"from":[0,15.99,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#top","uv":[0,16,16,0]}}},{"from":[0,0,0],"to":[2,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[2,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,14],"to":[16,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,0],"to":[16,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,14,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom"}}},{"from":[2,14,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","cullface":"south"},"down":{"texture":"#bottom"}}},{"from":[14,14,2],"to":[16,16,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom"}}},{"from":[0,14,2],"to":[2,16,14],"faces":{"east":{"texture":"#side"},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom"}}}]},"scaffolding_unstable":{"parent":"block\/block","textures":{"particle":"block\/scaffolding_top","top":"block\/scaffolding_top","side":"block\/scaffolding_side","bottom":"block\/scaffolding_bottom"},"elements":[{"from":[0,15.99,0],"to":[16,16,16],"faces":{"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#top","uv":[0,16,16,0]}}},{"from":[0,0,0],"to":[2,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[2,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,14],"to":[16,16,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,0],"to":[16,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,14,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom"}}},{"from":[2,14,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","cullface":"south"},"down":{"texture":"#bottom"}}},{"from":[14,14,2],"to":[16,16,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom"}}},{"from":[0,14,2],"to":[2,16,14],"faces":{"east":{"texture":"#side"},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom"}}},{"from":[0,1.99,0],"to":[16,2,16],"faces":{"up":{"texture":"#top"},"down":{"uv":[0,16,16,0],"texture":"#top"}}},{"from":[2,0,0],"to":[14,2,2],"faces":{"north":{"texture":"#side","uv":[2,0,14,2],"cullface":"north"},"south":{"texture":"#side","uv":[2,2,14,4]},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[2,0,14],"to":[14,2,16],"faces":{"north":{"texture":"#side","uv":[14,0,2,2]},"south":{"texture":"#side","uv":[2,0,14,2],"cullface":"south"},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[14,0,2],"to":[16,2,14],"faces":{"east":{"texture":"#side","uv":[14,0,2,2],"cullface":"east"},"west":{"texture":"#side","uv":[14,2,2,4]},"down":{"texture":"#bottom","cullface":"bottom"}}},{"from":[0,0,2],"to":[2,2,14],"faces":{"east":{"texture":"#side","uv":[2,0,14,2]},"west":{"texture":"#side","uv":[14,0,2,2],"cullface":"west"},"down":{"texture":"#bottom","cullface":"bottom"}}}]},"seagrass":{"parent":"block\/template_seagrass","textures":{"texture":"block\/seagrass"}},"sea_lantern":{"parent":"block\/cube_all","textures":{"all":"block\/sea_lantern"}},"sea_pickle":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[6,0,6],"to":[10,6,10],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,6],"to":[10,5.95,10],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[7.5,5.2,8],"to":[8.5,8.7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[8,5.2,7.5],"to":[8,8.7,8.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"semi_weathered_copper_block":{"parent":"block\/cube_all","textures":{"all":"block\/semi_weathered_copper_block"}},"semi_weathered_cut_copper":{"parent":"block\/cube_all","textures":{"all":"block\/semi_weathered_cut_copper"}},"semi_weathered_cut_copper_slab":{"parent":"block\/slab","textures":{"bottom":"block\/semi_weathered_cut_copper","top":"block\/semi_weathered_cut_copper","side":"block\/semi_weathered_cut_copper"}},"semi_weathered_cut_copper_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/semi_weathered_cut_copper","top":"block\/semi_weathered_cut_copper","side":"block\/semi_weathered_cut_copper"}},"semi_weathered_cut_copper_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/semi_weathered_cut_copper","top":"block\/semi_weathered_cut_copper","side":"block\/semi_weathered_cut_copper"}},"semi_weathered_cut_copper_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/semi_weathered_cut_copper","top":"block\/semi_weathered_cut_copper","side":"block\/semi_weathered_cut_copper"}},"semi_weathered_cut_copper_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/semi_weathered_cut_copper","top":"block\/semi_weathered_cut_copper","side":"block\/semi_weathered_cut_copper"}},"shroomlight":{"parent":"block\/cube_all","textures":{"all":"block\/shroomlight"}},"shulker_box":{"textures":{"particle":"block\/shulker_box"}},"skull":{"textures":{"particle":"block\/soul_sand"}},"slab":{"parent":"block\/block","textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}}]},"slab_top":{"textures":{"particle":"#side"},"elements":[{"from":[0,8,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom"},"up":{"uv":[0,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,16,8],"texture":"#side","cullface":"north"},"south":{"uv":[0,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side","cullface":"west"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}}]},"slightly_cracked_turtle_egg":{"parent":"block\/template_turtle_egg","textures":{"all":"block\/turtle_egg_slightly_cracked"}},"slime_block":{"parent":"block\/block","textures":{"particle":"block\/slime_block","texture":"block\/slime_block"},"elements":[{"from":[3,3,3],"to":[13,13,13],"faces":{"down":{"uv":[3,3,13,13],"texture":"#texture"},"up":{"uv":[3,3,13,13],"texture":"#texture"},"north":{"uv":[3,3,13,13],"texture":"#texture"},"south":{"uv":[3,3,13,13],"texture":"#texture"},"west":{"uv":[3,3,13,13],"texture":"#texture"},"east":{"uv":[3,3,13,13],"texture":"#texture"}}},{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#texture","cullface":"east"}}}]},"small_amethyst_bud":{"parent":"block\/cross","textures":{"cross":"block\/small_amethyst_bud"}},"smithing_table":{"parent":"block\/cube","textures":{"particle":"block\/smithing_table_front","north":"block\/smithing_table_front","south":"block\/smithing_table_front","east":"block\/smithing_table_side","west":"block\/smithing_table_side","up":"block\/smithing_table_top","down":"block\/smithing_table_bottom"}},"smoker":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/smoker_top","bottom":"block\/smoker_bottom","side":"block\/smoker_side","front":"block\/smoker_front"}},"smoker_on":{"parent":"block\/orientable_with_bottom","textures":{"top":"block\/smoker_top","bottom":"block\/smoker_bottom","side":"block\/smoker_side","front":"block\/smoker_front_on"}},"smooth_quartz":{"parent":"block\/cube_all","textures":{"all":"block\/quartz_block_bottom"}},"smooth_quartz_slab":{"parent":"block\/slab","textures":{"bottom":"block\/quartz_block_bottom","top":"block\/quartz_block_bottom","side":"block\/quartz_block_bottom"}},"smooth_quartz_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/quartz_block_bottom","top":"block\/quartz_block_bottom","side":"block\/quartz_block_bottom"}},"smooth_quartz_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/quartz_block_bottom","top":"block\/quartz_block_bottom","side":"block\/quartz_block_bottom"}},"smooth_quartz_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/quartz_block_bottom","top":"block\/quartz_block_bottom","side":"block\/quartz_block_bottom"}},"smooth_quartz_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/quartz_block_bottom","top":"block\/quartz_block_bottom","side":"block\/quartz_block_bottom"}},"smooth_red_sandstone":{"parent":"block\/cube_all","textures":{"all":"block\/red_sandstone_top"}},"smooth_red_sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/red_sandstone_top"}},"smooth_red_sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/red_sandstone_top"}},"smooth_red_sandstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/red_sandstone_top"}},"smooth_red_sandstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/red_sandstone_top"}},"smooth_red_sandstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/red_sandstone_top","top":"block\/red_sandstone_top","side":"block\/red_sandstone_top"}},"smooth_sandstone":{"parent":"block\/cube_all","textures":{"all":"block\/sandstone_top"}},"smooth_sandstone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/sandstone_top"}},"smooth_sandstone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/sandstone_top"}},"smooth_sandstone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/sandstone_top"}},"smooth_sandstone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/sandstone_top"}},"smooth_sandstone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/sandstone_top","top":"block\/sandstone_top","side":"block\/sandstone_top"}},"smooth_stone":{"parent":"block\/cube_all","textures":{"all":"block\/smooth_stone"}},"smooth_stone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/smooth_stone","top":"block\/smooth_stone","side":"block\/smooth_stone_slab_side"}},"smooth_stone_slab_double":{"parent":"block\/cube_column","textures":{"end":"block\/smooth_stone","side":"block\/smooth_stone_slab_side"}},"smooth_stone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/smooth_stone","top":"block\/smooth_stone","side":"block\/smooth_stone_slab_side"}},"snow_block":{"parent":"block\/cube_all","textures":{"all":"block\/snow"}},"snow_height10":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,10,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,6,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,6,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,6,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,6,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height12":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,12,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,4,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,4,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,4,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,4,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height14":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,14,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,2,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,2,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,2,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,2,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height2":{"parent":"block\/thin_block","textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,2,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,14,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,14,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,14,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,14,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height4":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,4,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,12,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,12,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,12,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,12,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height6":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,6,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,10,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,10,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,10,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,10,16,16],"texture":"#texture","cullface":"east"}}}]},"snow_height8":{"textures":{"particle":"block\/snow","texture":"block\/snow"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,8,16,16],"texture":"#texture","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#texture","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#texture","cullface":"east"}}}]},"soul_campfire":{"parent":"block\/template_campfire","textures":{"fire":"block\/soul_campfire_fire","lit_log":"block\/soul_campfire_log_lit"}},"soul_fire_floor0":{"parent":"block\/template_fire_floor","textures":{"fire":"block\/soul_fire_0"}},"soul_fire_floor1":{"parent":"block\/template_fire_floor","textures":{"fire":"block\/soul_fire_1"}},"soul_fire_side0":{"parent":"block\/template_fire_side","textures":{"fire":"block\/soul_fire_0"}},"soul_fire_side1":{"parent":"block\/template_fire_side","textures":{"fire":"block\/soul_fire_1"}},"soul_fire_side_alt0":{"parent":"block\/template_fire_side_alt","textures":{"fire":"block\/soul_fire_0"}},"soul_fire_side_alt1":{"parent":"block\/template_fire_side_alt","textures":{"fire":"block\/soul_fire_1"}},"soul_lantern":{"parent":"block\/template_lantern","textures":{"lantern":"block\/soul_lantern"}},"soul_lantern_hanging":{"parent":"block\/template_hanging_lantern","textures":{"lantern":"block\/soul_lantern"}},"soul_sand":{"parent":"block\/cube_all","textures":{"all":"block\/soul_sand"}},"soul_soil":{"parent":"block\/cube_all","textures":{"all":"block\/soul_soil"}},"soul_torch":{"parent":"block\/template_torch","textures":{"torch":"block\/soul_torch"}},"soul_wall_torch":{"parent":"block\/template_torch_wall","textures":{"torch":"block\/soul_torch"}},"spawner":{"parent":"block\/cube_all","textures":{"all":"block\/spawner"}},"sponge":{"parent":"block\/cube_all","textures":{"all":"block\/sponge"}},"spruce_button":{"parent":"block\/button","textures":{"texture":"block\/spruce_planks"}},"spruce_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/spruce_planks"}},"spruce_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/spruce_planks"}},"spruce_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/spruce_door_top","bottom":"block\/spruce_door_bottom"}},"spruce_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/spruce_door_top","bottom":"block\/spruce_door_bottom"}},"spruce_door_top":{"parent":"block\/door_top","textures":{"top":"block\/spruce_door_top","bottom":"block\/spruce_door_bottom"}},"spruce_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/spruce_door_top","bottom":"block\/spruce_door_bottom"}},"spruce_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/spruce_planks"}},"spruce_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/spruce_planks"}},"spruce_leaves":{"parent":"block\/leaves","textures":{"all":"block\/spruce_leaves"}},"spruce_log":{"parent":"block\/cube_column","textures":{"end":"block\/spruce_log_top","side":"block\/spruce_log"}},"spruce_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/spruce_log_top","side":"block\/spruce_log"}},"spruce_planks":{"parent":"block\/cube_all","textures":{"all":"block\/spruce_planks"}},"spruce_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/spruce_planks"}},"spruce_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/spruce_planks"}},"spruce_sapling":{"parent":"block\/cross","textures":{"cross":"block\/spruce_sapling"}},"spruce_sign":{"textures":{"particle":"block\/spruce_planks"}},"spruce_slab":{"parent":"block\/slab","textures":{"bottom":"block\/spruce_planks","top":"block\/spruce_planks","side":"block\/spruce_planks"}},"spruce_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/spruce_planks","top":"block\/spruce_planks","side":"block\/spruce_planks"}},"spruce_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/spruce_planks","top":"block\/spruce_planks","side":"block\/spruce_planks"}},"spruce_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/spruce_planks","top":"block\/spruce_planks","side":"block\/spruce_planks"}},"spruce_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/spruce_planks","top":"block\/spruce_planks","side":"block\/spruce_planks"}},"spruce_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/spruce_trapdoor"}},"spruce_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/spruce_trapdoor"}},"spruce_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/spruce_trapdoor"}},"spruce_wood":{"parent":"block\/cube_column","textures":{"end":"block\/spruce_log","side":"block\/spruce_log"}},"stairs":{"parent":"block\/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"head":{"rotation":[0,-90,0],"translation":[0,0,0],"scale":[1,1,1]},"thirdperson_lefthand":{"rotation":[75,-135,0],"translation":[0,2.5,0],"scale":[0.375,0.375,0.375]}},"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,8,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,8,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,8,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,8,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,8,16,16],"texture":"#side","cullface":"east"}}},{"from":[8,8,0],"to":[16,16,16],"faces":{"up":{"uv":[8,0,16,16],"texture":"#top","cullface":"up"},"north":{"uv":[0,0,8,8],"texture":"#side","cullface":"north"},"south":{"uv":[8,0,16,8],"texture":"#side","cullface":"south"},"west":{"uv":[0,0,16,8],"texture":"#side"},"east":{"uv":[0,0,16,8],"texture":"#side","cullface":"east"}}}]},"stem_fruit":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,7,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[0,0,8],"to":[9,16,8],"faces":{"north":{"uv":[9,0,0,16],"texture":"#upperstem","tintindex":0},"south":{"uv":[0,0,9,16],"texture":"#upperstem","tintindex":0}}}]},"stem_growth0":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,1,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,2],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,2],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,1,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,2],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,2],"texture":"#stem","tintindex":0}}}]},"stem_growth1":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,3,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,4],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,4],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,3,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,4],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,4],"texture":"#stem","tintindex":0}}}]},"stem_growth2":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,5,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,6],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,6],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,5,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,6],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,6],"texture":"#stem","tintindex":0}}}]},"stem_growth3":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,7,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,7,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,8],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,8],"texture":"#stem","tintindex":0}}}]},"stem_growth4":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,9,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,10],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,10],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,9,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,10],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,10],"texture":"#stem","tintindex":0}}}]},"stem_growth5":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,11,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,12],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,12],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,11,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,12],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,12],"texture":"#stem","tintindex":0}}}]},"stem_growth6":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,13,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,14],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,14],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,13,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,14],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,14],"texture":"#stem","tintindex":0}}}]},"stem_growth7":{"ambientocclusion":false,"textures":{"particle":"#stem"},"elements":[{"from":[0,-1,8],"to":[16,15,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#stem","tintindex":0},"south":{"uv":[16,0,0,16],"texture":"#stem","tintindex":0}}},{"from":[8,-1,0],"to":[8,15,16],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#stem","tintindex":0},"east":{"uv":[16,0,0,16],"texture":"#stem","tintindex":0}}}]},"sticky_piston":{"parent":"block\/template_piston","textures":{"platform":"block\/piston_top_sticky","bottom":"block\/piston_bottom","side":"block\/piston_side"}},"sticky_piston_inventory":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/piston_top_sticky","bottom":"block\/piston_bottom","side":"block\/piston_side"}},"stone":{"parent":"block\/cube_all","textures":{"all":"block\/stone"}},"stonecutter":{"parent":"block\/block","textures":{"particle":"block\/stonecutter_bottom","bottom":"block\/stonecutter_bottom","top":"block\/stonecutter_top","side":"block\/stonecutter_side","saw":"block\/stonecutter_saw"},"elements":[{"from":[0,0,0],"to":[16,9,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,7,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,7,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,7,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,7,16,16],"texture":"#side","cullface":"east"}}},{"from":[1,9,8],"to":[15,16,8],"faces":{"north":{"uv":[1,9,15,16],"texture":"#saw","tintindex":0},"south":{"uv":[1,9,15,16],"texture":"#saw","tintindex":0}}}]},"stone_bricks":{"parent":"block\/cube_all","textures":{"all":"block\/stone_bricks"}},"stone_brick_slab":{"parent":"block\/slab","textures":{"bottom":"block\/stone_bricks","top":"block\/stone_bricks","side":"block\/stone_bricks"}},"stone_brick_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/stone_bricks","top":"block\/stone_bricks","side":"block\/stone_bricks"}},"stone_brick_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/stone_bricks","top":"block\/stone_bricks","side":"block\/stone_bricks"}},"stone_brick_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/stone_bricks","top":"block\/stone_bricks","side":"block\/stone_bricks"}},"stone_brick_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/stone_bricks","top":"block\/stone_bricks","side":"block\/stone_bricks"}},"stone_brick_wall_inventory":{"parent":"block\/wall_inventory","textures":{"wall":"block\/stone_bricks"}},"stone_brick_wall_post":{"parent":"block\/template_wall_post","textures":{"wall":"block\/stone_bricks"}},"stone_brick_wall_side":{"parent":"block\/template_wall_side","textures":{"wall":"block\/stone_bricks"}},"stone_brick_wall_side_tall":{"parent":"block\/template_wall_side_tall","textures":{"wall":"block\/stone_bricks"}},"stone_button":{"parent":"block\/button","textures":{"texture":"block\/stone"}},"stone_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/stone"}},"stone_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/stone"}},"stone_mirrored":{"parent":"block\/cube_mirrored_all","textures":{"all":"block\/stone"}},"stone_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/stone"}},"stone_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/stone"}},"stone_slab":{"parent":"block\/slab","textures":{"bottom":"block\/stone","top":"block\/stone","side":"block\/stone"}},"stone_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/stone","top":"block\/stone","side":"block\/stone"}},"stone_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/stone","top":"block\/stone","side":"block\/stone"}},"stone_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/stone","top":"block\/stone","side":"block\/stone"}},"stone_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/stone","top":"block\/stone","side":"block\/stone"}},"stripped_acacia_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_acacia_log_top","side":"block\/stripped_acacia_log"}},"stripped_acacia_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_acacia_log_top","side":"block\/stripped_acacia_log"}},"stripped_acacia_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_acacia_log","side":"block\/stripped_acacia_log"}},"stripped_birch_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_birch_log_top","side":"block\/stripped_birch_log"}},"stripped_birch_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_birch_log_top","side":"block\/stripped_birch_log"}},"stripped_birch_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_birch_log","side":"block\/stripped_birch_log"}},"stripped_crimson_hyphae":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_crimson_stem","side":"block\/stripped_crimson_stem"}},"stripped_crimson_stem":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_crimson_stem_top","side":"block\/stripped_crimson_stem"}},"stripped_dark_oak_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_dark_oak_log_top","side":"block\/stripped_dark_oak_log"}},"stripped_dark_oak_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_dark_oak_log_top","side":"block\/stripped_dark_oak_log"}},"stripped_dark_oak_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_dark_oak_log","side":"block\/stripped_dark_oak_log"}},"stripped_jungle_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_jungle_log_top","side":"block\/stripped_jungle_log"}},"stripped_jungle_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_jungle_log_top","side":"block\/stripped_jungle_log"}},"stripped_jungle_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_jungle_log","side":"block\/stripped_jungle_log"}},"stripped_oak_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_oak_log_top","side":"block\/stripped_oak_log"}},"stripped_oak_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_oak_log_top","side":"block\/stripped_oak_log"}},"stripped_oak_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_oak_log","side":"block\/stripped_oak_log"}},"stripped_spruce_log":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_spruce_log_top","side":"block\/stripped_spruce_log"}},"stripped_spruce_log_horizontal":{"parent":"block\/cube_column_horizontal","textures":{"end":"block\/stripped_spruce_log_top","side":"block\/stripped_spruce_log"}},"stripped_spruce_wood":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_spruce_log","side":"block\/stripped_spruce_log"}},"stripped_warped_hyphae":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_warped_stem","side":"block\/stripped_warped_stem"}},"stripped_warped_stem":{"parent":"block\/cube_column","textures":{"end":"block\/stripped_warped_stem_top","side":"block\/stripped_warped_stem"}},"structure_block":{"parent":"block\/cube_all","textures":{"all":"block\/structure_block"}},"structure_block_corner":{"parent":"block\/cube_all","textures":{"all":"block\/structure_block_corner"}},"structure_block_data":{"parent":"block\/cube_all","textures":{"all":"block\/structure_block_data"}},"structure_block_load":{"parent":"block\/cube_all","textures":{"all":"block\/structure_block_load"}},"structure_block_save":{"parent":"block\/cube_all","textures":{"all":"block\/structure_block_save"}},"structure_void":{"textures":{"particle":"item\/structure_void"}},"sugar_cane":{"parent":"block\/tinted_cross","textures":{"cross":"block\/sugar_cane"}},"sunflower_bottom":{"parent":"block\/cross","textures":{"cross":"block\/sunflower_bottom"}},"sunflower_top":{"ambientocclusion":false,"textures":{"particle":"block\/sunflower_front","cross":"block\/sunflower_top","back":"block\/sunflower_back","front":"block\/sunflower_front"},"elements":[{"from":[0.8,0,8],"to":[15.2,8,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,8,16,16],"texture":"#cross"},"south":{"uv":[0,8,16,16],"texture":"#cross"}}},{"from":[8,0,0.8],"to":[8,8,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,8,16,16],"texture":"#cross"},"east":{"uv":[0,8,16,16],"texture":"#cross"}}},{"from":[9.6,-1,1],"to":[9.6,15,15],"rotation":{"origin":[8,8,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#back"},"east":{"uv":[0,0,16,16],"texture":"#front"}}}]},"sweet_berry_bush_stage0":{"parent":"block\/cross","textures":{"cross":"block\/sweet_berry_bush_stage0"}},"sweet_berry_bush_stage1":{"parent":"block\/cross","textures":{"cross":"block\/sweet_berry_bush_stage1"}},"sweet_berry_bush_stage2":{"parent":"block\/cross","textures":{"cross":"block\/sweet_berry_bush_stage2"}},"sweet_berry_bush_stage3":{"parent":"block\/cross","textures":{"cross":"block\/sweet_berry_bush_stage3"}},"tall_grass_bottom":{"parent":"block\/tinted_cross","textures":{"cross":"block\/tall_grass_bottom"}},"tall_grass_top":{"parent":"block\/tinted_cross","textures":{"cross":"block\/tall_grass_top"}},"tall_seagrass_bottom":{"parent":"block\/template_seagrass","textures":{"texture":"block\/tall_seagrass_bottom"}},"tall_seagrass_top":{"parent":"block\/template_seagrass","textures":{"texture":"block\/tall_seagrass_top"}},"target":{"parent":"block\/cube_column","textures":{"end":"block\/target_top","side":"block\/target_side"}},"template_anvil":{"parent":"block\/block","textures":{"particle":"block\/anvil","body":"block\/anvil"},"display":{"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"elements":[{"__comment":"Anvil base","from":[2,0,2],"to":[14,4,14],"faces":{"down":{"uv":[2,2,14,14],"texture":"#body","rotation":180,"cullface":"down"},"up":{"uv":[2,2,14,14],"texture":"#body","rotation":180},"north":{"uv":[2,12,14,16],"texture":"#body"},"south":{"uv":[2,12,14,16],"texture":"#body"},"west":{"uv":[0,2,4,14],"texture":"#body","rotation":90},"east":{"uv":[4,2,0,14],"texture":"#body","rotation":270}}},{"__comment":"Lower narrow portion","from":[4,4,3],"to":[12,5,13],"faces":{"up":{"uv":[4,3,12,13],"texture":"#body","rotation":180},"north":{"uv":[4,11,12,12],"texture":"#body"},"south":{"uv":[4,11,12,12],"texture":"#body"},"west":{"uv":[4,3,5,13],"texture":"#body","rotation":90},"east":{"uv":[5,3,4,13],"texture":"#body","rotation":270}}},{"__comment":"Wider section beneath top portion","from":[6,5,4],"to":[10,10,12],"faces":{"north":{"uv":[6,6,10,11],"texture":"#body"},"south":{"uv":[6,6,10,11],"texture":"#body"},"west":{"uv":[5,4,10,12],"texture":"#body","rotation":90},"east":{"uv":[10,4,5,12],"texture":"#body","rotation":270}}},{"__comment":"Anvil top","from":[3,10,0],"to":[13,16,16],"faces":{"down":{"uv":[3,0,13,16],"texture":"#body","rotation":180},"up":{"uv":[3,0,13,16],"texture":"#top","rotation":180},"north":{"uv":[3,0,13,6],"texture":"#body"},"south":{"uv":[3,0,13,6],"texture":"#body"},"west":{"uv":[10,0,16,16],"texture":"#body","rotation":90},"east":{"uv":[16,0,10,16],"texture":"#body","rotation":270}}}]},"template_cake_with_candle":{"textures":{"particle":"block\/cake_side","bottom":"block\/cake_bottom","top":"block\/cake_top","side":"block\/cake_side"},"elements":[{"from":[1,0,1],"to":[15,8,15],"faces":{"down":{"texture":"#bottom","cullface":"down"},"up":{"texture":"#top"},"north":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side"},"east":{"texture":"#side"}}},{"from":[7,8,7],"to":[9,14,9],"faces":{"north":{"uv":[0,8,2,14],"texture":"#candle"},"east":{"uv":[0,8,2,14],"texture":"#candle"},"south":{"uv":[0,8,2,14],"texture":"#candle"},"west":{"uv":[0,8,2,14],"texture":"#candle"},"up":{"uv":[0,6,2,8],"texture":"#candle"},"down":{"uv":[0,14,2,16],"texture":"#candle","cullface":"down"}}},{"from":[7.5,14,8],"to":[8.5,15,8],"rotation":{"angle":-45,"axis":"y","origin":[8,14,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#candle"},"south":{"uv":[0,5,1,6],"texture":"#candle"}}},{"from":[7.5,14,8],"to":[8.5,15,8],"rotation":{"angle":45,"axis":"y","origin":[8,14,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#candle"},"south":{"uv":[0,5,1,6],"texture":"#candle"}}}]},"template_campfire":{"parent":"block\/block","display":{"head":{"translation":[0,10.5,0]}},"textures":{"particle":"block\/campfire_log","log":"block\/campfire_log"},"elements":[{"from":[1,0,0],"to":[5,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,1,16,5],"texture":"#lit_log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,0,0,4],"texture":"#log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,11],"to":[16,7,15],"faces":{"north":{"uv":[16,0,0,4],"texture":"#lit_log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[0,0,16,4],"texture":"#lit_log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,4,16,8],"texture":"#lit_log"}}},{"from":[11,0,0],"to":[15,4,16],"faces":{"north":{"uv":[0,4,4,8],"texture":"#log","cullface":"north"},"east":{"uv":[0,0,16,4],"texture":"#log"},"south":{"uv":[0,4,4,8],"texture":"#log","cullface":"south"},"west":{"uv":[16,1,0,5],"texture":"#lit_log"},"up":{"uv":[0,0,16,4],"rotation":90,"texture":"#log"},"down":{"uv":[0,0,16,4],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0,3,1],"to":[16,7,5],"faces":{"north":{"uv":[0,0,16,4],"texture":"#lit_log"},"east":{"uv":[0,4,4,8],"texture":"#log","cullface":"east"},"south":{"uv":[16,0,0,4],"texture":"#lit_log"},"west":{"uv":[0,4,4,8],"texture":"#log","cullface":"west"},"up":{"uv":[0,0,16,4],"rotation":180,"texture":"#log"},"down":{"uv":[0,4,16,8],"texture":"#lit_log"}}},{"from":[5,0,0],"to":[11,1,16],"faces":{"north":{"uv":[0,15,6,16],"texture":"#log","cullface":"north"},"south":{"uv":[10,15,16,16],"texture":"#log","cullface":"south"},"up":{"uv":[0,8,16,14],"rotation":90,"texture":"#lit_log"},"down":{"uv":[0,8,16,14],"rotation":90,"texture":"#log","cullface":"down"}}},{"from":[0.8,1,8],"to":[15.2,17,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#fire"},"south":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[8,1,0.8],"to":[8,17,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#fire"},"east":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"template_candle":{"parent":"block\/block","elements":[{"from":[7,0,7],"to":[9,6,9],"faces":{"north":{"uv":[0,8,2,14],"texture":"#all"},"east":{"uv":[0,8,2,14],"texture":"#all"},"south":{"uv":[0,8,2,14],"texture":"#all"},"west":{"uv":[0,8,2,14],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[7.5,6,8],"to":[8.5,7,8],"rotation":{"angle":45,"axis":"y","origin":[8,6,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}},{"from":[7.5,6,8],"to":[8.5,7,8],"rotation":{"angle":-45,"axis":"y","origin":[8,6,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}}]},"template_cauldron_full":{"ambientocclusion":false,"textures":{"particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side","inside":"block\/cauldron_inner"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,15,14],"faces":{"up":{"texture":"#content","tintindex":0,"cullface":"up"}}}]},"template_chorus_flower":{"parent":"block\/block","textures":{"bottom":"block\/chorus_plant","particle":"#texture"},"elements":[{"from":[2,14,2],"to":[14,16,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#texture"},"north":{"uv":[2,0,14,2],"texture":"#bottom"},"south":{"uv":[2,0,14,2],"texture":"#bottom"},"west":{"uv":[2,0,14,2],"texture":"#bottom"},"east":{"uv":[2,0,14,2],"texture":"#bottom"}}},{"from":[0,2,2],"to":[2,14,14],"faces":{"down":{"uv":[16,14,14,2],"texture":"#bottom"},"up":{"uv":[0,2,2,14],"texture":"#bottom"},"north":{"uv":[14,2,16,14],"texture":"#bottom"},"south":{"uv":[0,2,2,14],"texture":"#bottom"},"west":{"uv":[2,2,14,14],"texture":"#texture"}}},{"from":[2,2,0],"to":[14,14,2],"faces":{"down":{"uv":[14,2,2,0],"texture":"#bottom"},"up":{"uv":[2,0,14,2],"texture":"#bottom"},"north":{"uv":[2,2,14,14],"texture":"#texture"},"west":{"uv":[0,2,2,14],"texture":"#bottom"},"east":{"uv":[14,2,16,14],"texture":"#bottom"}}},{"from":[2,2,14],"to":[14,14,16],"faces":{"down":{"uv":[14,16,2,14],"texture":"#bottom"},"up":{"uv":[2,14,14,16],"texture":"#bottom"},"south":{"uv":[2,2,14,14],"texture":"#texture"},"west":{"uv":[14,2,16,14],"texture":"#bottom"},"east":{"uv":[0,2,2,14],"texture":"#bottom"}}},{"from":[14,2,2],"to":[16,14,14],"faces":{"down":{"uv":[2,14,0,2],"texture":"#bottom"},"up":{"uv":[14,2,16,14],"texture":"#bottom"},"north":{"uv":[0,2,2,14],"texture":"#bottom"},"south":{"uv":[14,2,16,14],"texture":"#bottom"},"east":{"uv":[2,2,14,14],"texture":"#texture"}}},{"from":[2,0,2],"to":[14,14,14],"faces":{"up":{"uv":[2,2,14,14],"texture":"#bottom"},"down":{"uv":[14,14,2,2],"texture":"#bottom"},"north":{"uv":[2,2,14,16],"texture":"#bottom"},"south":{"uv":[2,2,14,16],"texture":"#bottom"},"west":{"uv":[2,2,14,16],"texture":"#bottom"},"east":{"uv":[2,2,14,16],"texture":"#bottom"}}}]},"template_command_block":{"parent":"block\/cube_directional","textures":{"particle":"#back","down":"#side","up":"#side","north":"#front","east":"#side","south":"#back","west":"#side"}},"template_daylight_detector":{"parent":"block\/thin_block","textures":{"particle":"#top"},"elements":[{"from":[0,0,0],"to":[16,6,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#side","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,10,16,16],"texture":"#side","cullface":"north"},"south":{"uv":[0,10,16,16],"texture":"#side","cullface":"south"},"west":{"uv":[0,10,16,16],"texture":"#side","cullface":"west"},"east":{"uv":[0,10,16,16],"texture":"#side","cullface":"east"}}}]},"template_farmland":{"parent":"block\/block","textures":{"particle":"#dirt"},"elements":[{"from":[0,0,0],"to":[16,15,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#dirt","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#top"},"north":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"north"},"south":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"south"},"west":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"west"},"east":{"uv":[0,1,16,16],"texture":"#dirt","cullface":"east"}}}]},"template_fence_gate":{"parent":"block\/block","display":{"gui":{"rotation":[30,45,0],"translation":[0,-1,0],"scale":[0.8,0.8,0.8]},"head":{"rotation":[0,0,0],"translation":[0,-3,-6],"scale":[1,1,1]}},"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,5,7],"to":[2,16,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,5,7],"to":[16,16,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[6,6,7],"to":[8,15,9],"faces":{"down":{"uv":[6,7,8,9],"texture":"#texture"},"up":{"uv":[6,7,8,9],"texture":"#texture"},"north":{"uv":[6,1,8,10],"texture":"#texture"},"south":{"uv":[6,1,8,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[8,6,7],"to":[10,15,9],"faces":{"down":{"uv":[8,7,10,9],"texture":"#texture"},"up":{"uv":[8,7,10,9],"texture":"#texture"},"north":{"uv":[8,1,10,10],"texture":"#texture"},"south":{"uv":[8,1,10,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[2,6,7],"to":[6,9,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,7,6,10],"texture":"#texture"},"south":{"uv":[2,7,6,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[2,12,7],"to":[6,15,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,1,6,4],"texture":"#texture"},"south":{"uv":[2,1,6,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of right-hand gate door","from":[10,6,7],"to":[14,9,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,7,14,10],"texture":"#texture"},"south":{"uv":[10,7,14,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of right-hand gate door","from":[10,12,7],"to":[14,15,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,1,14,4],"texture":"#texture"},"south":{"uv":[10,1,14,4],"texture":"#texture"}}}]},"template_fence_gate_open":{"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,5,7],"to":[2,16,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,5,7],"to":[16,16,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[0,6,13],"to":[2,15,15],"faces":{"down":{"uv":[0,13,2,15],"texture":"#texture"},"up":{"uv":[0,13,2,15],"texture":"#texture"},"north":{"uv":[0,1,2,10],"texture":"#texture"},"south":{"uv":[0,1,2,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[14,6,13],"to":[16,15,15],"faces":{"down":{"uv":[14,13,16,15],"texture":"#texture"},"up":{"uv":[14,13,16,15],"texture":"#texture"},"north":{"uv":[14,1,16,10],"texture":"#texture"},"south":{"uv":[14,1,16,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[0,6,9],"to":[2,9,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[0,12,9],"to":[2,15,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[14,6,9],"to":[16,9,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[14,12,9],"to":[16,15,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}}]},"template_fence_gate_wall":{"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,2,7],"to":[2,13,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,2,7],"to":[16,13,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[6,3,7],"to":[8,12,9],"faces":{"down":{"uv":[6,7,8,9],"texture":"#texture"},"up":{"uv":[6,7,8,9],"texture":"#texture"},"north":{"uv":[6,1,8,10],"texture":"#texture"},"south":{"uv":[6,1,8,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[8,3,7],"to":[10,12,9],"faces":{"down":{"uv":[8,7,10,9],"texture":"#texture"},"up":{"uv":[8,7,10,9],"texture":"#texture"},"north":{"uv":[8,1,10,10],"texture":"#texture"},"south":{"uv":[8,1,10,10],"texture":"#texture"},"west":{"uv":[7,1,9,10],"texture":"#texture"},"east":{"uv":[7,1,9,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[2,3,7],"to":[6,6,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,7,6,10],"texture":"#texture"},"south":{"uv":[2,7,6,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[2,9,7],"to":[6,12,9],"faces":{"down":{"uv":[2,7,6,9],"texture":"#texture"},"up":{"uv":[2,7,6,9],"texture":"#texture"},"north":{"uv":[2,1,6,4],"texture":"#texture"},"south":{"uv":[2,1,6,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of right-hand gate door","from":[10,3,7],"to":[14,6,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,7,14,10],"texture":"#texture"},"south":{"uv":[10,7,14,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of right-hand gate door","from":[10,9,7],"to":[14,12,9],"faces":{"down":{"uv":[10,7,14,9],"texture":"#texture"},"up":{"uv":[10,7,14,9],"texture":"#texture"},"north":{"uv":[10,1,14,4],"texture":"#texture"},"south":{"uv":[10,1,14,4],"texture":"#texture"}}}]},"template_fence_gate_wall_open":{"ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"__comment":"Left-hand post","from":[0,2,7],"to":[2,13,9],"faces":{"down":{"uv":[0,7,2,9],"texture":"#texture"},"up":{"uv":[0,7,2,9],"texture":"#texture"},"north":{"uv":[0,0,2,11],"texture":"#texture"},"south":{"uv":[0,0,2,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture","cullface":"west"},"east":{"uv":[7,0,9,11],"texture":"#texture"}}},{"__comment":"Right-hand post","from":[14,2,7],"to":[16,13,9],"faces":{"down":{"uv":[14,7,16,9],"texture":"#texture"},"up":{"uv":[14,7,16,9],"texture":"#texture"},"north":{"uv":[14,0,16,11],"texture":"#texture"},"south":{"uv":[14,0,16,11],"texture":"#texture"},"west":{"uv":[7,0,9,11],"texture":"#texture"},"east":{"uv":[7,0,9,11],"texture":"#texture","cullface":"east"}}},{"__comment":"Inner vertical post of left-hand gate door","from":[0,3,13],"to":[2,12,15],"faces":{"down":{"uv":[0,13,2,15],"texture":"#texture"},"up":{"uv":[0,13,2,15],"texture":"#texture"},"north":{"uv":[0,1,2,10],"texture":"#texture"},"south":{"uv":[0,1,2,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Inner vertical post of right-hand gate door","from":[14,3,13],"to":[16,12,15],"faces":{"down":{"uv":[14,13,16,15],"texture":"#texture"},"up":{"uv":[14,13,16,15],"texture":"#texture"},"north":{"uv":[14,1,16,10],"texture":"#texture"},"south":{"uv":[14,1,16,10],"texture":"#texture"},"west":{"uv":[13,1,15,10],"texture":"#texture"},"east":{"uv":[13,1,15,10],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[0,3,9],"to":[2,6,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[0,9,9],"to":[2,12,13],"faces":{"down":{"uv":[0,9,2,13],"texture":"#texture"},"up":{"uv":[0,9,2,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}},{"__comment":"Lower horizontal bar of left-hand gate door","from":[14,3,9],"to":[16,6,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,7,15,10],"texture":"#texture"},"east":{"uv":[13,7,15,10],"texture":"#texture"}}},{"__comment":"Upper horizontal bar of left-hand gate door","from":[14,9,9],"to":[16,12,13],"faces":{"down":{"uv":[14,9,16,13],"texture":"#texture"},"up":{"uv":[14,9,16,13],"texture":"#texture"},"west":{"uv":[13,1,15,4],"texture":"#texture"},"east":{"uv":[13,1,15,4],"texture":"#texture"}}}]},"template_fire_floor":{"textures":{"particle":"#fire"},"ambientocclusion":false,"elements":[{"from":[0,0,8.8],"to":[16,22.4,8.8],"rotation":{"origin":[8,8,8],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[0,0,7.2],"to":[16,22.4,7.2],"rotation":{"origin":[8,8,8],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[8.8,0,0],"to":[8.8,22.4,16],"rotation":{"origin":[8,8,8],"axis":"z","angle":-22.5,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#fire"}}},{"from":[7.2,0,0],"to":[7.2,22.4,16],"rotation":{"origin":[8,8,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"east":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"template_fire_side":{"textures":{"particle":"#fire"},"ambientocclusion":false,"elements":[{"from":[0,0,0.01],"to":[16,22.4,0.01],"shade":false,"faces":{"south":{"uv":[0,0,16,16],"texture":"#fire"},"north":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"template_fire_side_alt":{"textures":{"particle":"#fire"},"ambientocclusion":false,"elements":[{"from":[0,0,0.01],"to":[16,22.4,0.01],"shade":false,"faces":{"south":{"uv":[16,0,0,16],"texture":"#fire"},"north":{"uv":[16,0,0,16],"texture":"#fire"}}}]},"template_fire_up":{"textures":{"particle":"#fire"},"ambientocclusion":false,"elements":[{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[16,16,8],"axis":"z","angle":22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":270}}},{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[0,16,8],"axis":"z","angle":-22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":90}}}]},"template_fire_up_alt":{"textures":{"particle":"#fire"},"ambientocclusion":false,"elements":[{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[8,16,16],"axis":"x","angle":-22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire","rotation":180}}},{"from":[0,16,0],"to":[16,16,16],"rotation":{"origin":[8,16,0],"axis":"x","angle":22.5,"rescale":true},"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#fire"}}}]},"template_four_candles":{"parent":"block\/block","elements":[{"from":[6,0,8],"to":[8,3,10],"faces":{"north":{"uv":[0,8,2,11],"texture":"#all"},"east":{"uv":[0,8,2,11],"texture":"#all"},"south":{"uv":[0,8,2,11],"texture":"#all"},"west":{"uv":[0,8,2,11],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[6.5,3,9],"to":[7.5,4,9],"rotation":{"angle":45,"axis":"y","origin":[7,3,9]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[6.5,3,9],"to":[7.5,4,9],"rotation":{"angle":-45,"axis":"y","origin":[7,3,9]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[9,0,8],"to":[11,5,10],"faces":{"north":{"uv":[0,8,2,13],"texture":"#all"},"east":{"uv":[0,8,2,13],"texture":"#all"},"south":{"uv":[0,8,2,13],"texture":"#all"},"west":{"uv":[0,8,2,13],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[9.5,5,9],"to":[10.5,6,9],"rotation":{"angle":45,"axis":"y","origin":[10,5,9]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[9.5,5,9],"to":[10.5,6,9],"rotation":{"angle":-45,"axis":"y","origin":[10,5,9]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[5,0,5],"to":[7,5,7],"faces":{"north":{"uv":[0,8,2,13],"texture":"#all"},"east":{"uv":[0,8,2,13],"texture":"#all"},"south":{"uv":[0,8,2,13],"texture":"#all"},"west":{"uv":[0,8,2,13],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[5.5,5,6],"to":[6.5,6,6],"rotation":{"angle":45,"axis":"y","origin":[6,5,6]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[5.5,5,6],"to":[6.5,6,6],"rotation":{"angle":-45,"axis":"y","origin":[6,5,6]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[8,0,5],"to":[10,6,7],"faces":{"north":{"uv":[0,8,2,14],"texture":"#all"},"east":{"uv":[0,8,2,14],"texture":"#all"},"south":{"uv":[0,8,2,14],"texture":"#all"},"west":{"uv":[0,8,2,14],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[8.5,6,6],"to":[9.5,7,6],"rotation":{"angle":45,"axis":"y","origin":[9,6,6]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}},{"from":[8.5,6,6],"to":[9.5,7,6],"rotation":{"angle":-45,"axis":"y","origin":[9,6,6]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}}]},"template_four_turtle_eggs":{"parent":"block\/block","textures":{"all":"block\/turtle_egg","particle":"#all"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}},{"from":[11,0,7],"to":[14,4,10],"faces":{"down":{"uv":[5,0,8,3],"texture":"#all","cullface":"down"},"up":{"uv":[5,0,8,3],"texture":"#all"},"north":{"uv":[8,3,11,7],"texture":"#all"},"south":{"uv":[8,3,11,7],"texture":"#all"},"west":{"uv":[8,3,11,7],"texture":"#all"},"east":{"uv":[8,3,11,7],"texture":"#all"}}},{"from":[6,0,9],"to":[10,4,13],"faces":{"down":{"uv":[0,11,4,15],"texture":"#all"},"up":{"uv":[0,11,4,15],"texture":"#all"},"north":{"uv":[4,11,8,15],"texture":"#all"},"south":{"uv":[4,11,8,15],"texture":"#all"},"west":{"uv":[4,11,8,15],"texture":"#all"},"east":{"uv":[4,11,8,15],"texture":"#all"}}}]},"template_glass_pane_noside":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"north":{"uv":[9,0,7,16],"texture":"#pane"}}}]},"template_glass_pane_noside_alt":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"east":{"uv":[7,0,9,16],"texture":"#pane"}}}]},"template_glass_pane_post":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,7],"to":[9,16,9],"faces":{"down":{"uv":[7,7,9,9],"texture":"#edge"},"up":{"uv":[7,7,9,9],"texture":"#edge"}}}]},"template_glass_pane_side":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,0],"to":[9,16,7],"faces":{"down":{"uv":[7,0,9,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"},"north":{"uv":[7,0,9,16],"texture":"#edge","cullface":"north"},"west":{"uv":[16,0,9,16],"texture":"#pane"},"east":{"uv":[9,0,16,16],"texture":"#pane"}}}]},"template_glass_pane_side_alt":{"ambientocclusion":false,"textures":{"particle":"#pane"},"elements":[{"from":[7,0,9],"to":[9,16,16],"faces":{"down":{"uv":[7,0,9,7],"texture":"#edge"},"up":{"uv":[7,0,9,7],"texture":"#edge"},"south":{"uv":[7,0,9,16],"texture":"#edge","cullface":"south"},"west":{"uv":[7,0,0,16],"texture":"#pane"},"east":{"uv":[0,0,7,16],"texture":"#pane"}}}]},"template_glazed_terracotta":{"parent":"block\/cube","textures":{"particle":"#pattern"},"display":{"firstperson_righthand":{"rotation":[0,135,0],"translation":[0,0,0],"scale":[0.4,0.4,0.4]}},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"north","rotation":90},"south":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"south","rotation":270},"west":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"west","rotation":0},"east":{"uv":[0,0,16,16],"texture":"#pattern","cullface":"east","rotation":180}}}]},"template_hanging_lantern":{"parent":"block\/block","textures":{"particle":"#lantern"},"elements":[{"from":[5,1,5],"to":[11,8,11],"faces":{"down":{"uv":[0,9,6,15],"texture":"#lantern"},"up":{"uv":[0,9,6,15],"texture":"#lantern"},"north":{"uv":[0,2,6,9],"texture":"#lantern"},"south":{"uv":[0,2,6,9],"texture":"#lantern"},"west":{"uv":[0,2,6,9],"texture":"#lantern"},"east":{"uv":[0,2,6,9],"texture":"#lantern"}}},{"from":[6,8,6],"to":[10,10,10],"faces":{"down":{"uv":[1,10,5,14],"texture":"#lantern"},"up":{"uv":[1,10,5,14],"texture":"#lantern"},"north":{"uv":[1,0,5,2],"texture":"#lantern"},"south":{"uv":[1,0,5,2],"texture":"#lantern"},"west":{"uv":[1,0,5,2],"texture":"#lantern"},"east":{"uv":[1,0,5,2],"texture":"#lantern"}}},{"from":[6.5,11,8],"to":[9.5,15,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"north":{"uv":[11,1,14,5],"texture":"#lantern"},"south":{"uv":[11,1,14,5],"texture":"#lantern"}}},{"from":[8,10,6.5],"to":[8,16,9.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"west":{"uv":[11,6,14,12],"texture":"#lantern"},"east":{"uv":[11,6,14,12],"texture":"#lantern"}}}]},"template_lantern":{"parent":"block\/block","textures":{"particle":"#lantern"},"elements":[{"from":[5,0,5],"to":[11,7,11],"faces":{"down":{"uv":[0,9,6,15],"texture":"#lantern","cullface":"down"},"up":{"uv":[0,9,6,15],"texture":"#lantern"},"north":{"uv":[0,2,6,9],"texture":"#lantern"},"south":{"uv":[0,2,6,9],"texture":"#lantern"},"west":{"uv":[0,2,6,9],"texture":"#lantern"},"east":{"uv":[0,2,6,9],"texture":"#lantern"}}},{"from":[6,7,6],"to":[10,9,10],"faces":{"up":{"uv":[1,10,5,14],"texture":"#lantern"},"north":{"uv":[1,0,5,2],"texture":"#lantern"},"south":{"uv":[1,0,5,2],"texture":"#lantern"},"west":{"uv":[1,0,5,2],"texture":"#lantern"},"east":{"uv":[1,0,5,2],"texture":"#lantern"}}},{"from":[6.5,9,8],"to":[9.5,11,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"north":{"uv":[11,1,14,3],"texture":"#lantern"},"south":{"uv":[11,1,14,3],"texture":"#lantern"}}},{"from":[8,9,6.5],"to":[8,11,9.5],"rotation":{"origin":[8,8,8],"axis":"y","angle":45},"shade":false,"faces":{"west":{"uv":[11,10,14,12],"texture":"#lantern"},"east":{"uv":[11,10,14,12],"texture":"#lantern"}}}]},"template_orientable_trapdoor_bottom":{"parent":"block\/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[0,0,0],"to":[16,3,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,16,16,0],"texture":"#texture"},"north":{"uv":[0,0,16,3],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,3],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,3],"texture":"#texture","cullface":"east"}}}]},"template_orientable_trapdoor_open":{"textures":{"particle":"#texture"},"elements":[{"from":[0,0,13],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,3],"texture":"#texture","cullface":"down"},"up":{"uv":[0,3,16,0],"texture":"#texture","cullface":"up"},"north":{"uv":[0,16,16,0],"texture":"#texture"},"south":{"uv":[0,16,16,0],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"rotation":90,"texture":"#texture","cullface":"west"},"east":{"uv":[0,3,16,0],"rotation":90,"texture":"#texture","cullface":"east"}}}]},"template_orientable_trapdoor_top":{"textures":{"particle":"#texture"},"elements":[{"from":[0,13,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture"},"up":{"uv":[0,16,16,0],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,3],"texture":"#texture","cullface":"north"},"south":{"uv":[0,0,16,3],"texture":"#texture","cullface":"south"},"west":{"uv":[0,0,16,3],"texture":"#texture","cullface":"west"},"east":{"uv":[0,0,16,3],"texture":"#texture","cullface":"east"}}}]},"template_piston":{"textures":{"particle":"#side"},"elements":[{"from":[0,0,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#side","rotation":180,"cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#bottom","cullface":"south"},"west":{"uv":[0,0,16,16],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,16],"texture":"#side","rotation":90,"cullface":"east"}}}]},"template_piston_head":{"textures":{"particle":"#platform"},"elements":[{"from":[0,0,0],"to":[16,16,4],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,0,16,4],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#unsticky"},"west":{"uv":[0,0,16,4],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,4],"texture":"#side","rotation":90,"cullface":"east"}}},{"from":[6,6,4],"to":[10,10,20],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","rotation":90},"up":{"uv":[0,0,16,4],"texture":"#side","rotation":270},"west":{"uv":[16,4,0,0],"texture":"#side"},"east":{"uv":[0,0,16,4],"texture":"#side"}}}]},"template_piston_head_short":{"textures":{"particle":"#platform"},"elements":[{"from":[0,0,0],"to":[16,16,4],"faces":{"down":{"uv":[0,0,16,4],"texture":"#side","cullface":"down","rotation":180},"up":{"uv":[0,0,16,4],"texture":"#side","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#platform","cullface":"north"},"south":{"uv":[0,0,16,16],"texture":"#unsticky"},"west":{"uv":[0,0,16,4],"texture":"#side","rotation":270,"cullface":"west"},"east":{"uv":[0,0,16,4],"texture":"#side","rotation":90,"cullface":"east"}}},{"from":[6,6,4],"to":[10,10,16],"faces":{"down":{"uv":[4,0,16,4],"texture":"#side","rotation":90},"up":{"uv":[4,0,16,4],"texture":"#side","rotation":270},"west":{"uv":[16,4,4,0],"texture":"#side"},"east":{"uv":[4,0,16,4],"texture":"#side"}}}]},"template_rail_raised_ne":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,9,0],"to":[16,9,16],"rotation":{"origin":[8,9,8],"axis":"x","angle":45,"rescale":true},"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"template_rail_raised_sw":{"ambientocclusion":false,"textures":{"particle":"#rail"},"elements":[{"from":[0,9,0],"to":[16,9,16],"rotation":{"origin":[8,9,8],"axis":"x","angle":-45,"rescale":true},"faces":{"down":{"uv":[0,16,16,0],"texture":"#rail"},"up":{"uv":[0,0,16,16],"texture":"#rail"}}}]},"template_seagrass":{"parent":"block\/block","ambientocclusion":false,"textures":{"particle":"#texture"},"elements":[{"from":[0,0,4],"to":[16,16,4],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[12,0,0],"to":[12,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[4,0,0],"to":[4,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}},{"from":[0,0,12],"to":[16,16,12],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#texture","tintindex":0}}}]},"template_single_face":{"textures":{"particle":"#texture"},"elements":[{"from":[0,0,0],"to":[16,16,0],"faces":{"north":{"texture":"#texture","cullface":"north"}}}]},"template_three_candles":{"parent":"block\/block","elements":[{"from":[7,0,9],"to":[9,3,11],"faces":{"north":{"uv":[0,8,2,11],"texture":"#all"},"east":{"uv":[0,8,2,11],"texture":"#all"},"south":{"uv":[0,8,2,11],"texture":"#all"},"west":{"uv":[0,8,2,11],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[7.5,3,10],"to":[8.5,4,10],"rotation":{"angle":45,"axis":"y","origin":[8,3,10]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[7.5,3,10],"to":[8.5,4,10],"rotation":{"angle":-45,"axis":"y","origin":[8,3,10]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[5,0,7],"to":[7,5,9],"faces":{"north":{"uv":[0,8,2,13],"texture":"#all"},"east":{"uv":[0,8,2,13],"texture":"#all"},"south":{"uv":[0,8,2,13],"texture":"#all"},"west":{"uv":[0,8,2,13],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[5.5,5,8],"to":[6.5,6,8],"rotation":{"angle":45,"axis":"y","origin":[6,5,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[5.5,5,8],"to":[6.5,6,8],"rotation":{"angle":-45,"axis":"y","origin":[6,5,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[8,0,6],"to":[10,6,8],"faces":{"north":{"uv":[0,8,2,14],"texture":"#all"},"east":{"uv":[0,8,2,14],"texture":"#all"},"south":{"uv":[0,8,2,14],"texture":"#all"},"west":{"uv":[0,8,2,14],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[8.5,6,7],"to":[9.5,7,7],"rotation":{"angle":45,"axis":"y","origin":[9,6,7]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}},{"from":[8.5,6,7],"to":[9.5,7,7],"rotation":{"angle":-45,"axis":"y","origin":[9,6,7]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}}]},"template_three_turtle_eggs":{"parent":"block\/block","textures":{"particle":"#all"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}},{"from":[11,0,7],"to":[14,4,10],"faces":{"down":{"uv":[5,0,8,3],"texture":"#all","cullface":"down"},"up":{"uv":[5,0,8,3],"texture":"#all"},"north":{"uv":[8,3,11,7],"texture":"#all"},"south":{"uv":[8,3,11,7],"texture":"#all"},"west":{"uv":[8,3,11,7],"texture":"#all"},"east":{"uv":[8,3,11,7],"texture":"#all"}}}]},"template_torch":{"ambientocclusion":false,"textures":{"particle":"#torch"},"elements":[{"from":[7,0,7],"to":[9,10,9],"shade":false,"faces":{"down":{"uv":[7,13,9,15],"texture":"#torch"},"up":{"uv":[7,6,9,8],"texture":"#torch"}}},{"from":[7,0,0],"to":[9,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#torch"},"east":{"uv":[0,0,16,16],"texture":"#torch"}}},{"from":[0,0,7],"to":[16,16,9],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#torch"},"south":{"uv":[0,0,16,16],"texture":"#torch"}}}]},"template_torch_wall":{"ambientocclusion":false,"textures":{"particle":"#torch"},"elements":[{"from":[-1,3.5,7],"to":[1,13.5,9],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"down":{"uv":[7,13,9,15],"texture":"#torch"},"up":{"uv":[7,6,9,8],"texture":"#torch"}}},{"from":[-1,3.5,0],"to":[1,19.5,16],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#torch"},"east":{"uv":[0,0,16,16],"texture":"#torch"}}},{"from":[-8,3.5,7],"to":[8,19.5,9],"rotation":{"origin":[0,3.5,8],"axis":"z","angle":-22.5},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#torch"},"south":{"uv":[0,0,16,16],"texture":"#torch"}}}]},"template_trapdoor_bottom":{"parent":"block\/thin_block","textures":{"particle":"#texture"},"elements":[{"from":[0,0,0],"to":[16,3,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,0,16,16],"texture":"#texture"},"north":{"uv":[0,16,16,13],"texture":"#texture","cullface":"north"},"south":{"uv":[0,16,16,13],"texture":"#texture","cullface":"south"},"west":{"uv":[0,16,16,13],"texture":"#texture","cullface":"west"},"east":{"uv":[0,16,16,13],"texture":"#texture","cullface":"east"}}}]},"template_trapdoor_open":{"textures":{"particle":"#texture"},"elements":[{"from":[0,0,13],"to":[16,16,16],"faces":{"down":{"uv":[0,13,16,16],"texture":"#texture","cullface":"down"},"up":{"uv":[0,16,16,13],"texture":"#texture","cullface":"up"},"north":{"uv":[0,0,16,16],"texture":"#texture"},"south":{"uv":[0,0,16,16],"texture":"#texture","cullface":"south"},"west":{"uv":[16,0,13,16],"texture":"#texture","cullface":"west"},"east":{"uv":[13,0,16,16],"texture":"#texture","cullface":"east"}}}]},"template_trapdoor_top":{"textures":{"particle":"#texture"},"elements":[{"from":[0,13,0],"to":[16,16,16],"faces":{"down":{"uv":[0,0,16,16],"texture":"#texture"},"up":{"uv":[0,0,16,16],"texture":"#texture","cullface":"up"},"north":{"uv":[0,16,16,13],"texture":"#texture","cullface":"north"},"south":{"uv":[0,16,16,13],"texture":"#texture","cullface":"south"},"west":{"uv":[0,16,16,13],"texture":"#texture","cullface":"west"},"east":{"uv":[0,16,16,13],"texture":"#texture","cullface":"east"}}}]},"template_turtle_egg":{"parent":"block\/block","textures":{"particle":"#all"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}}]},"template_two_candles":{"parent":"block\/block","elements":[{"from":[5,0,7],"to":[7,5,9],"faces":{"north":{"uv":[0,8,2,13],"texture":"#all"},"east":{"uv":[0,8,2,13],"texture":"#all"},"south":{"uv":[0,8,2,13],"texture":"#all"},"west":{"uv":[0,8,2,13],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[5.5,5,8],"to":[6.5,6,8],"rotation":{"angle":45,"axis":"y","origin":[6,5,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[5.5,5,8],"to":[6.5,6,8],"rotation":{"angle":-45,"axis":"y","origin":[6,5,8]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[1,5,0,6],"texture":"#all"}}},{"from":[9,0,6],"to":[11,6,8],"faces":{"north":{"uv":[0,8,2,14],"texture":"#all"},"east":{"uv":[0,8,2,14],"texture":"#all"},"south":{"uv":[0,8,2,14],"texture":"#all"},"west":{"uv":[0,8,2,14],"texture":"#all"},"up":{"uv":[0,6,2,8],"texture":"#all"},"down":{"uv":[0,14,2,16],"texture":"#all","cullface":"down"}}},{"from":[9.5,6,7],"to":[10.5,7,7],"rotation":{"angle":45,"axis":"y","origin":[10,6,7]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}},{"from":[9.5,6,7],"to":[10.5,7,7],"rotation":{"angle":-45,"axis":"y","origin":[10,6,7]},"faces":{"north":{"uv":[0,5,1,6],"texture":"#all"},"south":{"uv":[0,5,1,6],"texture":"#all"}}}]},"template_two_turtle_eggs":{"parent":"block\/block","textures":{"particle":"#all"},"elements":[{"from":[5,0,4],"to":[9,7,8],"faces":{"down":{"uv":[0,0,4,4],"texture":"#all","cullface":"down"},"up":{"uv":[0,0,4,4],"texture":"#all"},"north":{"uv":[1,4,5,11],"texture":"#all"},"south":{"uv":[1,4,5,11],"texture":"#all"},"west":{"uv":[1,4,5,11],"texture":"#all"},"east":{"uv":[1,4,5,11],"texture":"#all"}}},{"from":[1,0,7],"to":[5,5,11],"faces":{"down":{"uv":[6,7,10,11],"texture":"#all","cullface":"down"},"up":{"uv":[6,7,10,11],"texture":"#all"},"north":{"uv":[10,10,14,15],"texture":"#all"},"south":{"uv":[10,10,14,15],"texture":"#all"},"west":{"uv":[10,10,14,15],"texture":"#all"},"east":{"uv":[10,10,14,15],"texture":"#all"}}}]},"template_wall_post":{"textures":{"particle":"#wall"},"elements":[{"from":[4,0,4],"to":[12,16,12],"faces":{"down":{"texture":"#wall","cullface":"down"},"up":{"texture":"#wall","cullface":"up"},"north":{"texture":"#wall"},"south":{"texture":"#wall"},"west":{"texture":"#wall"},"east":{"texture":"#wall"}},"__comment":"Center post"}]},"template_wall_side":{"textures":{"particle":"#wall"},"elements":[{"from":[5,0,0],"to":[11,14,8],"faces":{"down":{"texture":"#wall","cullface":"down"},"up":{"texture":"#wall"},"north":{"texture":"#wall","cullface":"north"},"west":{"texture":"#wall"},"east":{"texture":"#wall"}},"__comment":"wall"}]},"template_wall_side_tall":{"textures":{"particle":"#wall"},"elements":[{"from":[5,0,0],"to":[11,16,8],"faces":{"down":{"texture":"#wall","cullface":"down"},"up":{"texture":"#wall","cullface":"up"},"north":{"texture":"#wall","cullface":"north"},"west":{"texture":"#wall"},"east":{"texture":"#wall"}}}]},"terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/terracotta"}},"thin_block":{"parent":"block\/block","display":{"thirdperson_righthand":{"rotation":[75,45,0],"translation":[0,2.5,2],"scale":[0.375,0.375,0.375]},"firstperson_righthand":{"rotation":[0,45,0],"translation":[0,4.2,0],"scale":[0.4,0.4,0.4]},"firstperson_lefthand":{"rotation":[0,225,0],"translation":[0,4.2,0],"scale":[0.4,0.4,0.4]}}},"three_dead_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[6,0,9],"to":[10,6,13],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,9],"to":[10,5.95,13],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,2],"to":[6,4,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[2,3.95,2],"to":[6,3.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,4],"to":[12,6,8],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[8,5.95,4],"to":[12,5.95,8],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"three_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[6,0,9],"to":[10,6,13],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[6,5.95,9],"to":[10,5.95,13],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[2,0,2],"to":[6,4,6],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[2,3.95,2],"to":[6,3.95,6],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,4],"to":[12,6,8],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[8,5.95,4],"to":[12,5.95,8],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[7.5,5.2,11],"to":[8.5,8.7,11],"rotation":{"origin":[8,8,11],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[8,5.2,10.5],"to":[8,8.7,11.5],"rotation":{"origin":[8,8,11],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[3.5,3.2,4],"to":[4.5,6.7,4],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[4,3.2,3.5],"to":[4,6.7,4.5],"rotation":{"origin":[4,8,4],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[9.5,5.2,6],"to":[10.5,8.7,6],"rotation":{"origin":[10,8,6],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10,5.2,5.5],"to":[10,8.7,6.5],"rotation":{"origin":[10,8,6],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"three_slightly_cracked_turtle_eggs":{"parent":"block\/template_three_turtle_eggs","textures":{"all":"block\/turtle_egg_slightly_cracked"}},"three_turtle_eggs":{"parent":"block\/template_three_turtle_eggs","textures":{"all":"block\/turtle_egg"}},"three_very_cracked_turtle_eggs":{"parent":"block\/template_three_turtle_eggs","textures":{"all":"block\/turtle_egg_very_cracked"}},"tinted_cross":{"ambientocclusion":false,"textures":{"particle":"#cross"},"elements":[{"from":[0.8,0,8],"to":[15.2,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0}}},{"from":[8,0,0.8],"to":[8,16,15.2],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#cross","tintindex":0}}}]},"tinted_flower_pot_cross":{"ambientocclusion":false,"textures":{"particle":"block\/flower_pot","flowerpot":"block\/flower_pot","dirt":"block\/dirt"},"elements":[{"from":[5,0,5],"to":[6,6,11],"faces":{"down":{"uv":[5,5,6,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[5,5,6,11],"texture":"#flowerpot"},"north":{"uv":[10,10,11,16],"texture":"#flowerpot"},"south":{"uv":[5,10,6,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[10,0,5],"to":[11,6,11],"faces":{"down":{"uv":[10,5,11,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[10,5,11,11],"texture":"#flowerpot"},"north":{"uv":[5,10,6,16],"texture":"#flowerpot"},"south":{"uv":[10,10,11,16],"texture":"#flowerpot"},"west":{"uv":[5,10,11,16],"texture":"#flowerpot"},"east":{"uv":[5,10,11,16],"texture":"#flowerpot"}}},{"from":[6,0,5],"to":[10,6,6],"faces":{"down":{"uv":[6,10,10,11],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,5,10,6],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,10],"to":[10,6,11],"faces":{"down":{"uv":[6,5,10,6],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,10,10,11],"texture":"#flowerpot"},"north":{"uv":[6,10,10,16],"texture":"#flowerpot"},"south":{"uv":[6,10,10,16],"texture":"#flowerpot"}}},{"from":[6,0,6],"to":[10,4,10],"faces":{"down":{"uv":[6,12,10,16],"texture":"#flowerpot","cullface":"down"},"up":{"uv":[6,6,10,10],"texture":"#dirt"}}},{"from":[2.6,4,8],"to":[13.4,16,8],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"north":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0}}},{"from":[8,4,2.6],"to":[8,16,13.4],"rotation":{"origin":[8,8,8],"axis":"y","angle":45,"rescale":true},"faces":{"west":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#plant","tintindex":0}}}]},"tinted_glass":{"parent":"block\/cube_all","textures":{"all":"block\/tinted_glass"}},"tnt":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/tnt_top","bottom":"block\/tnt_bottom","side":"block\/tnt_side"}},"torch":{"parent":"block\/template_torch","textures":{"torch":"block\/torch"}},"tripwire_attached_n":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}}]},"tripwire_attached_ne":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_attached_ns":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}}]},"tripwire_attached_nse":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_attached_nsew":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture","rotation":90},"up":{"uv":[0,2,16,4],"texture":"#texture","rotation":90}}},{"from":[0,1.5,7.75],"to":[4,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[4,1.5,7.75],"to":[8,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,4,16,2],"texture":"#texture"},"up":{"uv":[0,2,16,4],"texture":"#texture"}}}]},"tripwire_hook":{"textures":{"particle":"block\/oak_planks","hook":"block\/tripwire_hook","wood":"block\/oak_planks"},"elements":[{"from":[6.2,3.8,7.9],"to":[9.8,4.6,11.5],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,3.8,10.3],"to":[8.6,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,3.8,9.1],"to":[8.6,4.6,9.1],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,3.8,9.1],"to":[7.4,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,3.8,9.1],"to":[8.6,4.6,10.3],"rotation":{"origin":[8,6,5.2],"axis":"x","angle":-45},"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":45},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_attached":{"textures":{"particle":"block\/oak_planks","hook":"block\/tripwire_hook","wood":"block\/oak_planks","tripwire":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,6.7],"rotation":{"origin":[8,0,0],"axis":"x","angle":-22.5,"rescale":true},"faces":{"down":{"uv":[0,8,16,6],"texture":"#tripwire","rotation":90},"up":{"uv":[0,6,16,8],"texture":"#tripwire","rotation":90}}},{"from":[6.2,4.2,6.7],"to":[9.8,5,10.3],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,4.2,9.1],"to":[8.6,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[8.6,5,7.9],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[7.4,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,4.2,7.9],"to":[8.6,5,9.1],"rotation":{"origin":[8,4.2,6.7],"axis":"x","angle":-22.5,"rescale":false},"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_attached_on":{"textures":{"particle":"block\/oak_planks","hook":"block\/tripwire_hook","wood":"block\/oak_planks","tripwire":"block\/tripwire"},"elements":[{"from":[7.75,0.5,0],"to":[8.25,0.5,6.7],"rotation":{"origin":[8,0,0],"axis":"x","angle":-22.5,"rescale":true},"faces":{"down":{"uv":[0,8,16,6],"texture":"#tripwire","rotation":90},"up":{"uv":[0,6,16,8],"texture":"#tripwire","rotation":90}}},{"from":[6.2,3.4,6.7],"to":[9.8,4.2,10.3],"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,3.4,9.1],"to":[8.6,4.2,9.1],"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,3.4,7.9],"to":[8.6,4.2,7.9],"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,3.4,7.9],"to":[7.4,4.2,9.1],"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,3.4,7.9],"to":[8.6,4.2,9.1],"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":-22.5},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_hook_on":{"textures":{"particle":"block\/oak_planks","hook":"block\/tripwire_hook","wood":"block\/oak_planks"},"elements":[{"from":[6.2,4.2,6.7],"to":[9.8,5,10.3],"faces":{"down":{"uv":[5,3,11,9],"texture":"#hook"},"up":{"uv":[5,3,11,9],"texture":"#hook"},"north":{"uv":[5,3,11,4],"texture":"#hook"},"south":{"uv":[5,8,11,9],"texture":"#hook"},"west":{"uv":[5,8,11,9],"texture":"#hook"},"east":{"uv":[5,3,11,4],"texture":"#hook"}}},{"from":[7.4,4.2,9.1],"to":[8.6,5,9.1],"faces":{"north":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[8.6,5,7.9],"faces":{"south":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,4.2,7.9],"to":[7.4,5,9.1],"faces":{"east":{"uv":[7,8,9,9],"texture":"#hook"}}},{"from":[8.6,4.2,7.9],"to":[8.6,5,9.1],"faces":{"west":{"uv":[7,3,9,4],"texture":"#hook"}}},{"from":[7.4,5.2,10],"to":[8.8,6.8,14],"rotation":{"origin":[8,6,14],"axis":"x","angle":-22.5},"faces":{"down":{"uv":[7,9,9,14],"texture":"#wood"},"up":{"uv":[7,2,9,7],"texture":"#wood"},"north":{"uv":[7,9,9,11],"texture":"#wood"},"south":{"uv":[7,9,9,11],"texture":"#wood"},"west":{"uv":[2,9,7,11],"texture":"#wood"},"east":{"uv":[9,9,14,11],"texture":"#wood"}}},{"from":[6,1,14],"to":[10,9,16],"faces":{"down":{"uv":[6,14,10,16],"texture":"#wood"},"up":{"uv":[6,0,10,2],"texture":"#wood"},"north":{"uv":[6,7,10,15],"texture":"#wood"},"south":{"uv":[6,7,10,15],"texture":"#wood","cullface":"south"},"west":{"uv":[0,7,2,15],"texture":"#wood"},"east":{"uv":[14,7,16,15],"texture":"#wood"}}}]},"tripwire_n":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}}]},"tripwire_ne":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tripwire_ns":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}}]},"tripwire_nse":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tripwire_nsew":{"ambientocclusion":false,"textures":{"particle":"block\/tripwire","texture":"block\/tripwire"},"elements":[{"from":[7.75,1.5,0],"to":[8.25,1.5,4],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,4],"to":[8.25,1.5,8],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,8],"to":[8.25,1.5,12],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[7.75,1.5,12],"to":[8.25,1.5,16],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture","rotation":90},"up":{"uv":[0,0,16,2],"texture":"#texture","rotation":90}}},{"from":[0,1.5,7.75],"to":[4,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[4,1.5,7.75],"to":[8,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[8,1.5,7.75],"to":[12,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}},{"from":[12,1.5,7.75],"to":[16,1.5,8.25],"shade":false,"faces":{"down":{"uv":[0,2,16,0],"texture":"#texture"},"up":{"uv":[0,0,16,2],"texture":"#texture"}}}]},"tube_coral":{"parent":"block\/cross","textures":{"cross":"block\/tube_coral"}},"tube_coral_block":{"parent":"block\/cube_all","textures":{"all":"block\/tube_coral_block"}},"tube_coral_fan":{"parent":"block\/coral_fan","textures":{"fan":"block\/tube_coral_fan"}},"tube_coral_wall_fan":{"parent":"block\/coral_wall_fan","textures":{"fan":"block\/tube_coral_fan"}},"tuff":{"parent":"block\/cube_all","textures":{"all":"block\/tuff"}},"turtle_egg":{"parent":"block\/template_turtle_egg","textures":{"all":"block\/turtle_egg"}},"twisting_vines":{"parent":"block\/cross","textures":{"cross":"block\/twisting_vines"}},"twisting_vines_plant":{"parent":"block\/cross","textures":{"cross":"block\/twisting_vines_plant"}},"two_dead_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[3,0,3],"to":[7,6,7],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[3,5.95,3],"to":[7,5.95,7],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,8],"to":[12,4,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[8,3.95,8],"to":[12,3.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}}]},"two_sea_pickles":{"parent":"block\/block","textures":{"particle":"block\/sea_pickle","all":"block\/sea_pickle"},"elements":[{"from":[3,0,3],"to":[7,6,7],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,11],"texture":"#all"},"south":{"uv":[0,5,4,11],"texture":"#all"},"west":{"uv":[8,5,12,11],"texture":"#all"},"east":{"uv":[12,5,16,11],"texture":"#all"}}},{"from":[3,5.95,3],"to":[7,5.95,7],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[8,0,8],"to":[12,4,12],"faces":{"down":{"uv":[8,1,12,5],"texture":"#all","cullface":"down"},"up":{"uv":[4,1,8,5],"texture":"#all"},"north":{"uv":[4,5,8,9],"texture":"#all"},"south":{"uv":[0,5,4,9],"texture":"#all"},"west":{"uv":[8,5,12,9],"texture":"#all"},"east":{"uv":[12,5,16,9],"texture":"#all"}}},{"from":[8,3.95,8],"to":[12,3.95,12],"faces":{"up":{"uv":[8,1,12,5],"texture":"#all"}}},{"from":[4.5,5.2,5],"to":[5.5,8.7,5],"rotation":{"origin":[5,5.6,5],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[5,5.2,4.5],"to":[5,8.7,5.5],"rotation":{"origin":[5,5.6,5],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[9.5,3.2,10],"to":[10.5,6.7,10],"rotation":{"origin":[10,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"north":{"uv":[1,0,3,5],"texture":"#all"},"south":{"uv":[13,0,15,5],"texture":"#all"}}},{"from":[10,3.2,9.5],"to":[10,6.7,10.5],"rotation":{"origin":[10,8,10],"axis":"y","angle":45,"rescale":true},"shade":false,"faces":{"west":{"uv":[1,0,3,5],"texture":"#all"},"east":{"uv":[13,0,15,5],"texture":"#all"}}}]},"two_slightly_cracked_turtle_eggs":{"parent":"block\/template_two_turtle_eggs","textures":{"all":"block\/turtle_egg_slightly_cracked"}},"two_turtle_eggs":{"parent":"block\/template_two_turtle_eggs","textures":{"all":"block\/turtle_egg"}},"two_very_cracked_turtle_eggs":{"parent":"block\/template_two_turtle_eggs","textures":{"all":"block\/turtle_egg_very_cracked"}},"very_cracked_turtle_egg":{"parent":"block\/template_turtle_egg","textures":{"all":"block\/turtle_egg_very_cracked"}},"vine_1":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_1u":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2u":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2u_opposite":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_2_opposite":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_3":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_3u":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_4":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_4u":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0.8,0,0],"to":[0.8,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[15.2,0,0],"to":[15.2,16,16],"shade":false,"faces":{"west":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"east":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,15.2],"to":[16,16,15.2],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}},{"from":[0,0,0.8],"to":[16,16,0.8],"shade":false,"faces":{"north":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"south":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"vine_u":{"ambientocclusion":false,"textures":{"particle":"block\/vine","vine":"block\/vine"},"elements":[{"from":[0,15.2,0],"to":[16,15.2,16],"shade":false,"faces":{"down":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0},"up":{"uv":[0,0,16,16],"texture":"#vine","tintindex":0}}}]},"wall_inventory":{"parent":"block\/block","display":{"gui":{"rotation":[30,135,0],"translation":[0,0,0],"scale":[0.625,0.625,0.625]},"fixed":{"rotation":[0,90,0],"translation":[0,0,0],"scale":[0.5,0.5,0.5]}},"ambientocclusion":false,"textures":{"particle":"#wall"},"elements":[{"from":[4,0,4],"to":[12,16,12],"faces":{"down":{"uv":[4,4,12,12],"texture":"#wall","cullface":"down"},"up":{"uv":[4,4,12,12],"texture":"#wall"},"north":{"uv":[4,0,12,16],"texture":"#wall"},"south":{"uv":[4,0,12,16],"texture":"#wall"},"west":{"uv":[4,0,12,16],"texture":"#wall"},"east":{"uv":[4,0,12,16],"texture":"#wall"}},"__comment":"Center post"},{"from":[5,0,0],"to":[11,13,16],"faces":{"down":{"uv":[5,0,11,16],"texture":"#wall","cullface":"down"},"up":{"uv":[5,0,11,16],"texture":"#wall"},"north":{"uv":[5,3,11,16],"texture":"#wall","cullface":"north"},"south":{"uv":[5,3,11,16],"texture":"#wall","cullface":"south"},"west":{"uv":[0,3,16,16],"texture":"#wall"},"east":{"uv":[0,3,16,16],"texture":"#wall"}},"__comment":"Full wall"}]},"wall_torch":{"parent":"block\/template_torch_wall","textures":{"torch":"block\/torch"}},"warped_button":{"parent":"block\/button","textures":{"texture":"block\/warped_planks"}},"warped_button_inventory":{"parent":"block\/button_inventory","textures":{"texture":"block\/warped_planks"}},"warped_button_pressed":{"parent":"block\/button_pressed","textures":{"texture":"block\/warped_planks"}},"warped_door_bottom":{"parent":"block\/door_bottom","textures":{"top":"block\/warped_door_top","bottom":"block\/warped_door_bottom"}},"warped_door_bottom_hinge":{"parent":"block\/door_bottom_rh","textures":{"top":"block\/warped_door_top","bottom":"block\/warped_door_bottom"}},"warped_door_top":{"parent":"block\/door_top","textures":{"top":"block\/warped_door_top","bottom":"block\/warped_door_bottom"}},"warped_door_top_hinge":{"parent":"block\/door_top_rh","textures":{"top":"block\/warped_door_top","bottom":"block\/warped_door_bottom"}},"warped_fence_gate":{"parent":"block\/template_fence_gate","textures":{"texture":"block\/warped_planks"}},"warped_fence_gate_open":{"parent":"block\/template_fence_gate_open","textures":{"texture":"block\/warped_planks"}},"warped_fence_gate_wall":{"parent":"block\/template_fence_gate_wall","textures":{"texture":"block\/warped_planks"}},"warped_fence_gate_wall_open":{"parent":"block\/template_fence_gate_wall_open","textures":{"texture":"block\/warped_planks"}},"warped_fence_inventory":{"parent":"block\/fence_inventory","textures":{"texture":"block\/warped_planks"}},"warped_fence_post":{"parent":"block\/fence_post","textures":{"texture":"block\/warped_planks"}},"warped_fence_side":{"parent":"block\/fence_side","textures":{"texture":"block\/warped_planks"}},"warped_fungus":{"parent":"block\/cross","textures":{"cross":"block\/warped_fungus"}},"warped_hyphae":{"parent":"block\/cube_column","textures":{"end":"block\/warped_stem","side":"block\/warped_stem"}},"warped_nylium":{"parent":"block\/cube_bottom_top","textures":{"top":"block\/warped_nylium","bottom":"block\/netherrack","side":"block\/warped_nylium_side"}},"warped_planks":{"parent":"block\/cube_all","textures":{"all":"block\/warped_planks"}},"warped_pressure_plate":{"parent":"block\/pressure_plate_up","textures":{"texture":"block\/warped_planks"}},"warped_pressure_plate_down":{"parent":"block\/pressure_plate_down","textures":{"texture":"block\/warped_planks"}},"warped_roots":{"parent":"block\/cross","textures":{"cross":"block\/warped_roots"}},"warped_sign":{"textures":{"particle":"block\/warped_planks"}},"warped_slab":{"parent":"block\/slab","textures":{"bottom":"block\/warped_planks","top":"block\/warped_planks","side":"block\/warped_planks"}},"warped_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/warped_planks","top":"block\/warped_planks","side":"block\/warped_planks"}},"warped_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/warped_planks","top":"block\/warped_planks","side":"block\/warped_planks"}},"warped_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/warped_planks","top":"block\/warped_planks","side":"block\/warped_planks"}},"warped_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/warped_planks","top":"block\/warped_planks","side":"block\/warped_planks"}},"warped_stem":{"parent":"block\/cube_column","textures":{"end":"block\/warped_stem_top","side":"block\/warped_stem"}},"warped_trapdoor_bottom":{"parent":"block\/template_orientable_trapdoor_bottom","textures":{"texture":"block\/warped_trapdoor"}},"warped_trapdoor_open":{"parent":"block\/template_orientable_trapdoor_open","textures":{"texture":"block\/warped_trapdoor"}},"warped_trapdoor_top":{"parent":"block\/template_orientable_trapdoor_top","textures":{"texture":"block\/warped_trapdoor"}},"warped_wart_block":{"parent":"block\/cube_all","textures":{"all":"block\/warped_wart_block"}},"water":{"textures":{"particle":"block\/water_still"}},"water_cauldron":{"parent":"block\/template_cauldron_full","textures":{"content":"block\/water_still","inside":"block\/cauldron_inner","particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side"}},"water_cauldron_level1":{"ambientocclusion":false,"textures":{"particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side","inside":"block\/cauldron_inner","water":"block\/water_still"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,9,14],"faces":{"up":{"texture":"#water","tintindex":0,"cullface":"up"}}}]},"water_cauldron_level2":{"ambientocclusion":false,"textures":{"particle":"block\/cauldron_side","top":"block\/cauldron_top","bottom":"block\/cauldron_bottom","side":"block\/cauldron_side","inside":"block\/cauldron_inner","water":"block\/water_still"},"elements":[{"from":[0,3,0],"to":[2,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,2],"to":[14,4,14],"faces":{"up":{"texture":"#inside","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[14,3,0],"to":[16,16,16],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,0],"to":[14,16,2],"faces":{"north":{"texture":"#side","cullface":"north"},"south":{"texture":"#side","cullface":"up"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[2,3,14],"to":[14,16,16],"faces":{"north":{"texture":"#side","cullface":"up"},"south":{"texture":"#side","cullface":"south"},"up":{"texture":"#top","cullface":"up"},"down":{"texture":"#inside"}}},{"from":[0,0,0],"to":[4,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,2],"to":[2,3,4],"faces":{"east":{"texture":"#side"},"south":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,0],"to":[16,3,2],"faces":{"north":{"texture":"#side","cullface":"north"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,2],"to":[16,3,4],"faces":{"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,14],"to":[4,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[0,0,12],"to":[2,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side"},"west":{"texture":"#side","cullface":"west"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[12,0,14],"to":[16,3,16],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"south":{"texture":"#side","cullface":"south"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[14,0,12],"to":[16,3,14],"faces":{"north":{"texture":"#side"},"east":{"texture":"#side","cullface":"east"},"west":{"texture":"#side"},"down":{"texture":"#bottom","cullface":"down"}}},{"from":[2,4,2],"to":[14,12,14],"faces":{"up":{"texture":"#water","tintindex":0,"cullface":"up"}}}]},"weathered_copper_block":{"parent":"block\/cube_all","textures":{"all":"block\/weathered_copper_block"}},"weathered_cut_copper":{"parent":"block\/cube_all","textures":{"all":"block\/weathered_cut_copper"}},"weathered_cut_copper_slab":{"parent":"block\/slab","textures":{"bottom":"block\/weathered_cut_copper","top":"block\/weathered_cut_copper","side":"block\/weathered_cut_copper"}},"weathered_cut_copper_slab_top":{"parent":"block\/slab_top","textures":{"bottom":"block\/weathered_cut_copper","top":"block\/weathered_cut_copper","side":"block\/weathered_cut_copper"}},"weathered_cut_copper_stairs":{"parent":"block\/stairs","textures":{"bottom":"block\/weathered_cut_copper","top":"block\/weathered_cut_copper","side":"block\/weathered_cut_copper"}},"weathered_cut_copper_stairs_inner":{"parent":"block\/inner_stairs","textures":{"bottom":"block\/weathered_cut_copper","top":"block\/weathered_cut_copper","side":"block\/weathered_cut_copper"}},"weathered_cut_copper_stairs_outer":{"parent":"block\/outer_stairs","textures":{"bottom":"block\/weathered_cut_copper","top":"block\/weathered_cut_copper","side":"block\/weathered_cut_copper"}},"weeping_vines":{"parent":"block\/cross","textures":{"cross":"block\/weeping_vines"}},"weeping_vines_plant":{"parent":"block\/cross","textures":{"cross":"block\/weeping_vines_plant"}},"wet_sponge":{"parent":"block\/cube_all","textures":{"all":"block\/wet_sponge"}},"wheat_stage0":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage0"}},"wheat_stage1":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage1"}},"wheat_stage2":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage2"}},"wheat_stage3":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage3"}},"wheat_stage4":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage4"}},"wheat_stage5":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage5"}},"wheat_stage6":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage6"}},"wheat_stage7":{"parent":"block\/crop","textures":{"crop":"block\/wheat_stage7"}},"white_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/white_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"white_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/white_candle","particle":"block\/white_candle"}},"white_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/white_candle","particle":"block\/white_candle"}},"white_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/white_candle","particle":"block\/white_candle"}},"white_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/white_candle","particle":"block\/white_candle"}},"white_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/white_wool"}},"white_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/white_concrete"}},"white_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/white_concrete_powder"}},"white_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/white_glazed_terracotta"}},"white_shulker_box":{"textures":{"particle":"block\/white_shulker_box"}},"white_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/white_stained_glass"}},"white_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/white_stained_glass"}},"white_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/white_stained_glass"}},"white_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/white_stained_glass","edge":"block\/white_stained_glass_pane_top"}},"white_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/white_stained_glass","edge":"block\/white_stained_glass_pane_top"}},"white_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/white_stained_glass","edge":"block\/white_stained_glass_pane_top"}},"white_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/white_terracotta"}},"white_tulip":{"parent":"block\/cross","textures":{"cross":"block\/white_tulip"}},"white_wool":{"parent":"block\/cube_all","textures":{"all":"block\/white_wool"}},"wither_rose":{"parent":"block\/cross","textures":{"cross":"block\/wither_rose"}},"yellow_candle_cake":{"parent":"block\/template_cake_with_candle","textures":{"candle":"block\/yellow_candle","bottom":"block\/cake_bottom","side":"block\/cake_side","top":"block\/cake_top","particle":"block\/cake_side"}},"yellow_candle_four_candles":{"parent":"block\/template_four_candles","textures":{"all":"block\/yellow_candle","particle":"block\/yellow_candle"}},"yellow_candle_one_candle":{"parent":"block\/template_candle","textures":{"all":"block\/yellow_candle","particle":"block\/yellow_candle"}},"yellow_candle_three_candles":{"parent":"block\/template_three_candles","textures":{"all":"block\/yellow_candle","particle":"block\/yellow_candle"}},"yellow_candle_two_candles":{"parent":"block\/template_two_candles","textures":{"all":"block\/yellow_candle","particle":"block\/yellow_candle"}},"yellow_carpet":{"parent":"block\/carpet","textures":{"wool":"block\/yellow_wool"}},"yellow_concrete":{"parent":"block\/cube_all","textures":{"all":"block\/yellow_concrete"}},"yellow_concrete_powder":{"parent":"block\/cube_all","textures":{"all":"block\/yellow_concrete_powder"}},"yellow_glazed_terracotta":{"parent":"block\/template_glazed_terracotta","textures":{"pattern":"block\/yellow_glazed_terracotta"}},"yellow_shulker_box":{"textures":{"particle":"block\/yellow_shulker_box"}},"yellow_stained_glass":{"parent":"block\/cube_all","textures":{"all":"block\/yellow_stained_glass"}},"yellow_stained_glass_pane_noside":{"parent":"block\/template_glass_pane_noside","textures":{"pane":"block\/yellow_stained_glass"}},"yellow_stained_glass_pane_noside_alt":{"parent":"block\/template_glass_pane_noside_alt","textures":{"pane":"block\/yellow_stained_glass"}},"yellow_stained_glass_pane_post":{"parent":"block\/template_glass_pane_post","textures":{"pane":"block\/yellow_stained_glass","edge":"block\/yellow_stained_glass_pane_top"}},"yellow_stained_glass_pane_side":{"parent":"block\/template_glass_pane_side","textures":{"pane":"block\/yellow_stained_glass","edge":"block\/yellow_stained_glass_pane_top"}},"yellow_stained_glass_pane_side_alt":{"parent":"block\/template_glass_pane_side_alt","textures":{"pane":"block\/yellow_stained_glass","edge":"block\/yellow_stained_glass_pane_top"}},"yellow_terracotta":{"parent":"block\/cube_all","textures":{"all":"block\/yellow_terracotta"}},"yellow_wool":{"parent":"block\/cube_all","textures":{"all":"block\/yellow_wool"}}},"tinted_textures":{"block\/grass_block_top":[0,1,0],"block\/grass":[0,1,0],"block\/water_still":[0,0,1]}} \ No newline at end of file diff --git a/src/main/resources/assets/mapping/tints.json b/src/main/resources/assets/mapping/tints.json new file mode 100644 index 000000000..eff51f74a --- /dev/null +++ b/src/main/resources/assets/mapping/tints.json @@ -0,0 +1,17 @@ +{ + "block/grass_block_top": [ + 0, + 1, + 0 + ], + "block/grass": [ + 0, + 1, + 0 + ], + "block/water_still": [ + 0, + 0, + 1 + ] +} diff --git a/util/blockModelCombinder.py b/util/blockModelCombinder.py index 2d8235d29..1b70651aa 100644 --- a/util/blockModelCombinder.py +++ b/util/blockModelCombinder.py @@ -1,47 +1,85 @@ -""" -* Minosoft -* Copyright (C) 2020 Lukas Eisenhauer -* -* 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. -""" -# Minosoft +# 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. +# +# 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. -import json -import os +import \ + io +import \ + requests +import \ + sys +import \ + ujson +import \ + zipfile + +if len( + sys.argv) != 2: + print( + "useage: %s ".format( + sys.argv[ + 0])) + sys.exit() blockStates = {} blockModels = {} modName = "minecraft" -blockStatesDir = modName + "/blockstates/" -blockModelsDir = modName + "/models/block/" +print( + "Downloading minecraft jar...") -print("loading blockstates...") +request = requests.get( + sys.argv[ + 1], + allow_redirects=True) + +print( + "Unpacking minecraft jar...") +zip = zipfile.ZipFile( + io.BytesIO( + request.content), + "r") + +files = zip.namelist() + +print( + "Loading blockstates...") -def readRotations(apply, current): +def readRotations( + apply, + current): if "x" in current: - apply["x"] = current["x"] + apply[ + "x"] = \ + current[ + "x"] if "y" in current: - apply["y"] = current["y"] + apply[ + "y"] = \ + current[ + "y"] if "z" in current: - apply["z"] = current["z"] + apply[ + "z"] = \ + current[ + "z"] def readPart(part): @@ -71,19 +109,38 @@ def readPart(part): return result -for blockStateFile in os.listdir(blockStatesDir): - with open(blockStatesDir + blockStateFile, "r") as file: - data = json.load(file) +for blockStateFile in [ + f + for + f + in + files + if + f.startswith( + 'assets/minecraft/blockstates/')]: + with zip.open( + blockStateFile) as file: + data = ujson.load( + file) block = {} if "variants" in data: - variants = data["variants"] + variants = \ + data[ + "variants"] states = [] for variant in variants: state = {} properties = {} if variant != "": - for part in variant.split(","): - properties[part.split("=")[0]] = part.split("=")[1] + for part in variant.split( + ","): + properties[ + part.split( + "=")[ + 0]] = \ + part.split( + "=")[ + 1] state["properties"] = properties current = variants[variant] if type(current) == type([]): @@ -95,36 +152,61 @@ for blockStateFile in os.listdir(blockStatesDir): "states": states } elif "multipart" in data: - parts = data["multipart"] + parts = \ + data[ + "multipart"] conditional = [] for part in parts: - conditional.extend(readPart(part)) + conditional.extend( + readPart( + part)) block = { "conditional": conditional } - blockStates[blockStateFile.split(".")[0]] = block + blockStates[ + blockStateFile.split( + ".")[ + 0]] = block -print("loading models...") -for blockModelFile in os.listdir(blockModelsDir): - with open(blockModelsDir + blockModelFile, "r") as file: - data = json.load(file) +print( + "Loading models...") +for blockModelFile in [ + f + for + f + in + files + if + f.startswith( + 'assets/minecraft/models/block/')]: + with zip.open( + blockModelFile) as file: + data = ujson.load( + file) + blockModels[ + blockModelFile.split( + ".")[ + 0]] = data - blockModels[blockModelFile.split(".")[0]] = data - -print("combining files...") +print( + "Combining files...") finalJson = { "mod": modName, "blockStates": blockStates, "blockModels": blockModels, - "tinted_textures": { - "block/grass_block_top": [0, 1, 0], - "block/grass": [0, 1, 0], - "block/water_still": [0, 0, 1] - } } -print("saving...") -with open("blockModels.json", "w+") as file: - json.dump(finalJson, file) +print( + "Saving...") +with open( + "../../../AppData/Roaming/Minosoft/assets/assets/blockModels.json", + "w+") as file: + finalJson = ujson.dumps( + finalJson) + file.write( + finalJson.replace( + "minecraft:", + "")) -print("finished succesfully") +print( + "Finished succesfully")