From 8f18af2252cdb67b3f357628930c5be12e11cbcf Mon Sep 17 00:00:00 2001 From: Brokkonaut Date: Tue, 24 Jul 2018 19:16:04 +0200 Subject: [PATCH] Convert old blockchange logs --- pom.xml | 4 +- .../de/diddiz/LogBlock/CommandsHandler.java | 4 +- .../java/de/diddiz/LogBlock/LogBlock.java | 14 +- src/main/java/de/diddiz/LogBlock/Updater.java | 136 + src/main/resources/blockdata.txt | 2357 +++++++++++++++++ 5 files changed, 2507 insertions(+), 8 deletions(-) create mode 100644 src/main/resources/blockdata.txt diff --git a/pom.xml b/pom.xml index 377a84b..8c68d11 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ de.diddiz logblock - 1.12-SNAPSHOT + 1.13-SNAPSHOT jar LogBlock @@ -133,7 +133,7 @@ true - ${project.basedir}/src/main/resources + src/main/resources diff --git a/src/main/java/de/diddiz/LogBlock/CommandsHandler.java b/src/main/java/de/diddiz/LogBlock/CommandsHandler.java index 4fca25d..6ae53cf 100755 --- a/src/main/java/de/diddiz/LogBlock/CommandsHandler.java +++ b/src/main/java/de/diddiz/LogBlock/CommandsHandler.java @@ -674,7 +674,7 @@ public class CommandsHandler implements CommandExecutor { if (stack != null) { chestaccess = new ChestAccess(stack, rs.getBoolean("itemremove")); } - editor.queueEdit(rs.getInt("x"), rs.getInt("y"), rs.getInt("z"), rs.getInt("replaced"), rs.getInt("replacedData"), rs.getInt("type"), rs.getByte("typeData"), rs.getString("signtext"), chestaccess); + editor.queueEdit(rs.getInt("x"), rs.getInt("y"), rs.getInt("z"), rs.getInt("replaced"), rs.getInt("replacedData"), rs.getInt("type"), rs.getInt("typeData"), rs.getString("signtext"), chestaccess); } final int changes = editor.getSize(); if (changes > 10000) { @@ -749,7 +749,7 @@ public class CommandsHandler implements CommandExecutor { if (stack != null) { chestaccess = new ChestAccess(stack, !rs.getBoolean("itemremove")); } - editor.queueEdit(rs.getInt("x"), rs.getInt("y"), rs.getInt("z"), rs.getInt("type"), rs.getInt("typeData"), rs.getInt("replaced"), rs.getByte("replacedData"), rs.getString("signtext"), chestaccess); + editor.queueEdit(rs.getInt("x"), rs.getInt("y"), rs.getInt("z"), rs.getInt("type"), rs.getInt("typeData"), rs.getInt("replaced"), rs.getInt("replacedData"), rs.getString("signtext"), chestaccess); } final int changes = editor.getSize(); if (!params.silent) { diff --git a/src/main/java/de/diddiz/LogBlock/LogBlock.java b/src/main/java/de/diddiz/LogBlock/LogBlock.java index 2567c19..07e8835 100644 --- a/src/main/java/de/diddiz/LogBlock/LogBlock.java +++ b/src/main/java/de/diddiz/LogBlock/LogBlock.java @@ -14,6 +14,7 @@ import org.bukkit.permissions.Permission; import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; +import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.sql.Connection; @@ -56,6 +57,7 @@ public class LogBlock extends JavaPlugin { @Override public void onLoad() { logblock = this; + consumer = new Consumer(this); try { updater = new Updater(this); Config.load(this); @@ -74,11 +76,12 @@ public class LogBlock extends JavaPlugin { st.executeQuery("SET NAMES utf8mb4;"); } conn.close(); + updater.checkTables(); + MaterialConverter.initializeMaterials(getConnection()); + MaterialConverter.getOrAddMaterialId(Material.AIR.getKey()); // AIR must be the first entry if (updater.update()) { load(this); } - updater.checkTables(); - MaterialConverter.initializeMaterials(getConnection()); } catch (final NullPointerException ex) { getLogger().log(Level.SEVERE, "Error while loading: ", ex); } catch (final Exception ex) { @@ -86,12 +89,10 @@ public class LogBlock extends JavaPlugin { errorAtLoading = true; return; } - consumer = new Consumer(this); } @Override public void onEnable() { - MaterialConverter.getOrAddMaterialId(Material.AIR.getKey()); // AIR must be the first entry BukkitUtils.isDoublePlant(Material.AIR); // Force static code to run final PluginManager pm = getPluginManager(); if (errorAtLoading) { @@ -333,4 +334,9 @@ public class LogBlock extends JavaPlugin { conn.close(); } } + + @Override + public File getFile() { + return super.getFile(); + } } diff --git a/src/main/java/de/diddiz/LogBlock/Updater.java b/src/main/java/de/diddiz/LogBlock/Updater.java index b0950ff..fe8fa3c 100644 --- a/src/main/java/de/diddiz/LogBlock/Updater.java +++ b/src/main/java/de/diddiz/LogBlock/Updater.java @@ -4,13 +4,18 @@ import de.diddiz.LogBlock.config.Config; import de.diddiz.LogBlock.config.WorldConfig; import de.diddiz.util.UUIDFetcher; import org.bukkit.Bukkit; +import org.bukkit.block.data.BlockData; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.configuration.file.YamlConfiguration; +import java.io.BufferedInputStream; +import java.io.BufferedReader; import java.io.File; import java.io.IOException; +import java.io.InputStreamReader; import java.sql.*; import java.util.*; +import java.util.jar.JarFile; import java.util.logging.Level; import static de.diddiz.LogBlock.config.Config.getLoggedWorlds; @@ -405,6 +410,100 @@ class Updater { } config.set("version", "1.12.0"); } + if (configVersion.compareTo(new ComparableVersion("1.13.0")) < 0) { + getLogger().info("Updating tables to 1.13.0 ..."); + try { + MaterialUpdater materialUpdater = null; + checkTables(); // we need to create the tables first + getLogger().info("Convertig BlockId to BlockData. This can take a while ..."); + final Connection conn = logblock.getConnection(); + conn.setAutoCommit(false); + final Statement st = conn.createStatement(); + for (final WorldConfig wcfg : getLoggedWorlds()) { + boolean hadRow = true; + int rowsToConvert = 0; + int done = 0; + try { + ResultSet rs = st.executeQuery("SELECT count(*) as rowcount FROM `" + wcfg.table + "`"); + if (rs.next()) { + rowsToConvert = rs.getInt(1); + getLogger().info("Converting " + rowsToConvert + " entries in " + wcfg.table); + } + } catch (SQLException e) { + getLogger().info("Could not convert " + wcfg.table + ": " + e.getMessage()); + continue; + } + + PreparedStatement deleteStatement = conn.prepareStatement("DELETE FROM `" + wcfg.table + "` WHERE id = ?"); + PreparedStatement insertStatement = conn.prepareStatement("INSERT INTO `" + wcfg.table + "-blocks` (id, date, playerid, replaced, replacedData, type, typeData, x, y, z) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", Statement.RETURN_GENERATED_KEYS); + + while (hadRow) { + hadRow = false; + ResultSet entries = st.executeQuery("SELECT id, date, playerid, replaced, type, data, x, y, z FROM `" + wcfg.table + "` ORDER BY id ASC LIMIT 10000"); + while (entries.next()) { + hadRow = true; + int id = entries.getInt("id"); + Timestamp date = entries.getTimestamp("date"); + int playerid = entries.getInt("playerid"); + int replaced = entries.getInt("replaced"); + int type = entries.getInt("type"); + int data = entries.getInt("data"); + int x = entries.getInt("x"); + int y = entries.getInt("y"); + int z = entries.getInt("z"); + if (data == 16) { + data = 0; + } + + if (materialUpdater == null) { + materialUpdater = new MaterialUpdater(logblock); + } + try { + String replacedBlockData = materialUpdater.getBlockData(replaced, data).getAsString(); + String setBlockData = materialUpdater.getBlockData(type, data).getAsString(); + + int newReplacedId = MaterialConverter.getOrAddMaterialId(replacedBlockData); + int newReplacedData = MaterialConverter.getOrAddBlockStateId(replacedBlockData); + + int newSetId = MaterialConverter.getOrAddMaterialId(setBlockData); + int newSetData = MaterialConverter.getOrAddBlockStateId(setBlockData); + + insertStatement.setInt(1, id); + insertStatement.setTimestamp(2, date); + insertStatement.setInt(3, playerid); + insertStatement.setInt(4, newReplacedId); + insertStatement.setInt(5, newReplacedData); + insertStatement.setInt(6, newSetId); + insertStatement.setInt(7, newSetData); + insertStatement.setInt(8, x); + insertStatement.setInt(9, y); + insertStatement.setInt(10, z); + insertStatement.addBatch(); + } catch (Exception e) { + getLogger().info("Exception in entry " + id + " (" + replaced + ":" + data + "->" + type + ":" + data + "): " + e.getMessage()); + } + deleteStatement.setInt(1, id); + deleteStatement.addBatch(); + + done++; + } + if (hadRow) { + insertStatement.executeBatch(); + deleteStatement.executeBatch(); + } + conn.commit(); + logblock.getConsumer().run(); // force a consumer run + getLogger().info(done + "/" + rowsToConvert); + } + } + st.close(); + conn.close(); + } catch (final SQLException | IOException ex) { + Bukkit.getLogger().log(Level.SEVERE, "[Updater] Error: ", ex); + return false; + } + config.set("version", "1.13.0"); + } logblock.saveConfig(); return true; @@ -497,4 +596,41 @@ class Updater { } } } + + public static class MaterialUpdater { + BlockData[][] blockDataMapping; + public MaterialUpdater(LogBlock plugin) throws IOException { + blockDataMapping = new BlockData[256][16]; + JarFile file = new JarFile(plugin.getFile()); + BufferedReader reader = new BufferedReader(new InputStreamReader(new BufferedInputStream(file.getInputStream(file.getJarEntry("blockdata.txt"))), "UTF-8")); + while (true) { + String line = reader.readLine(); + if (line == null) { + break; + } + int splitter1 = line.indexOf(":"); + int splitter2 = line.indexOf(","); + if (splitter1 >= 0 && splitter2 >= 0) { + int blockid = Integer.parseInt(line.substring(0, splitter1)); + int blockdata = Integer.parseInt(line.substring(splitter1 + 1, splitter2)); + BlockData newBlockData = Bukkit.createBlockData(line.substring(splitter2 + 1)); + + if (blockdata == 0) { + for (int i = 0; i < 16; i++) { + if (blockDataMapping[blockid][i] == null) { + blockDataMapping[blockid][i] = newBlockData; + } + } + } else { + blockDataMapping[blockid][blockdata] = newBlockData; + } + } + } + file.close(); + } + + public BlockData getBlockData(int id, int data) { + return id >= 0 && id < 256 && data >= 0 && data < 16 ? blockDataMapping[id][data] : null; + } + } } diff --git a/src/main/resources/blockdata.txt b/src/main/resources/blockdata.txt new file mode 100644 index 0000000..8f94313 --- /dev/null +++ b/src/main/resources/blockdata.txt @@ -0,0 +1,2357 @@ +0:0,minecraft:air +1:0,minecraft:stone +1:1,minecraft:granite +1:2,minecraft:polished_granite +1:3,minecraft:diorite +1:4,minecraft:polished_diorite +1:5,minecraft:andesite +1:6,minecraft:polished_andesite +2:0,minecraft:grass_block[snowy=false] +3:0,minecraft:dirt +3:1,minecraft:coarse_dirt +3:2,minecraft:podzol[snowy=false] +4:0,minecraft:cobblestone +5:0,minecraft:oak_planks +5:1,minecraft:spruce_planks +5:2,minecraft:birch_planks +5:3,minecraft:jungle_planks +5:4,minecraft:acacia_planks +5:5,minecraft:dark_oak_planks +6:0,minecraft:oak_sapling[stage=0] +6:1,minecraft:spruce_sapling[stage=0] +6:2,minecraft:birch_sapling[stage=0] +6:3,minecraft:jungle_sapling[stage=0] +6:4,minecraft:acacia_sapling[stage=0] +6:5,minecraft:dark_oak_sapling[stage=0] +6:8,minecraft:oak_sapling[stage=1] +6:9,minecraft:spruce_sapling[stage=1] +6:10,minecraft:birch_sapling[stage=1] +6:11,minecraft:jungle_sapling[stage=1] +6:12,minecraft:acacia_sapling[stage=1] +6:13,minecraft:dark_oak_sapling[stage=1] +6:14,minecraft:oak_sapling[stage=1] +6:15,minecraft:oak_sapling[stage=1] +7:0,minecraft:bedrock +8:0,minecraft:water[level=0] +8:1,minecraft:water[level=1] +8:2,minecraft:water[level=2] +8:3,minecraft:water[level=3] +8:4,minecraft:water[level=4] +8:5,minecraft:water[level=5] +8:6,minecraft:water[level=6] +8:7,minecraft:water[level=7] +8:8,minecraft:water[level=8] +8:9,minecraft:water[level=9] +8:10,minecraft:water[level=10] +8:11,minecraft:water[level=11] +8:12,minecraft:water[level=12] +8:13,minecraft:water[level=13] +8:14,minecraft:water[level=14] +8:15,minecraft:water[level=15] +9:0,minecraft:water[level=0] +9:1,minecraft:water[level=1] +9:2,minecraft:water[level=2] +9:3,minecraft:water[level=3] +9:4,minecraft:water[level=4] +9:5,minecraft:water[level=5] +9:6,minecraft:water[level=6] +9:7,minecraft:water[level=7] +9:8,minecraft:water[level=8] +9:9,minecraft:water[level=9] +9:10,minecraft:water[level=10] +9:11,minecraft:water[level=11] +9:12,minecraft:water[level=12] +9:13,minecraft:water[level=13] +9:14,minecraft:water[level=14] +9:15,minecraft:water[level=15] +10:0,minecraft:lava[level=0] +10:1,minecraft:lava[level=1] +10:2,minecraft:lava[level=2] +10:3,minecraft:lava[level=3] +10:4,minecraft:lava[level=4] +10:5,minecraft:lava[level=5] +10:6,minecraft:lava[level=6] +10:7,minecraft:lava[level=7] +10:8,minecraft:lava[level=8] +10:9,minecraft:lava[level=9] +10:10,minecraft:lava[level=10] +10:11,minecraft:lava[level=11] +10:12,minecraft:lava[level=12] +10:13,minecraft:lava[level=13] +10:14,minecraft:lava[level=14] +10:15,minecraft:lava[level=15] +11:0,minecraft:lava[level=0] +11:1,minecraft:lava[level=1] +11:2,minecraft:lava[level=2] +11:3,minecraft:lava[level=3] +11:4,minecraft:lava[level=4] +11:5,minecraft:lava[level=5] +11:6,minecraft:lava[level=6] +11:7,minecraft:lava[level=7] +11:8,minecraft:lava[level=8] +11:9,minecraft:lava[level=9] +11:10,minecraft:lava[level=10] +11:11,minecraft:lava[level=11] +11:12,minecraft:lava[level=12] +11:13,minecraft:lava[level=13] +11:14,minecraft:lava[level=14] +11:15,minecraft:lava[level=15] +12:0,minecraft:sand +12:1,minecraft:red_sand +13:0,minecraft:gravel +14:0,minecraft:gold_ore +15:0,minecraft:iron_ore +16:0,minecraft:coal_ore +17:0,minecraft:oak_log[axis=y] +17:1,minecraft:spruce_log[axis=y] +17:2,minecraft:birch_log[axis=y] +17:3,minecraft:jungle_log[axis=y] +17:4,minecraft:oak_log[axis=x] +17:5,minecraft:spruce_log[axis=x] +17:6,minecraft:birch_log[axis=x] +17:7,minecraft:jungle_log[axis=x] +17:8,minecraft:oak_log[axis=z] +17:9,minecraft:spruce_log[axis=z] +17:10,minecraft:birch_log[axis=z] +17:11,minecraft:jungle_log[axis=z] +17:12,minecraft:oak_wood[axis=y] +17:13,minecraft:spruce_wood[axis=y] +17:14,minecraft:birch_wood[axis=y] +17:15,minecraft:jungle_wood[axis=y] +18:0,minecraft:oak_leaves[distance=7,persistent=false] +18:1,minecraft:spruce_leaves[distance=7,persistent=false] +18:2,minecraft:birch_leaves[distance=7,persistent=false] +18:3,minecraft:jungle_leaves[distance=7,persistent=false] +18:4,minecraft:oak_leaves[distance=7,persistent=true] +18:5,minecraft:spruce_leaves[distance=7,persistent=true] +18:6,minecraft:birch_leaves[distance=7,persistent=true] +18:7,minecraft:jungle_leaves[distance=7,persistent=true] +18:9,minecraft:spruce_leaves[distance=7,persistent=false] +18:10,minecraft:birch_leaves[distance=7,persistent=false] +18:11,minecraft:jungle_leaves[distance=7,persistent=false] +18:12,minecraft:oak_leaves[distance=7,persistent=true] +18:13,minecraft:spruce_leaves[distance=7,persistent=true] +18:14,minecraft:birch_leaves[distance=7,persistent=true] +18:15,minecraft:jungle_leaves[distance=7,persistent=true] +19:0,minecraft:sponge +19:1,minecraft:wet_sponge +19:3,minecraft:wet_sponge +19:5,minecraft:wet_sponge +19:7,minecraft:wet_sponge +19:9,minecraft:wet_sponge +19:11,minecraft:wet_sponge +19:13,minecraft:wet_sponge +19:15,minecraft:wet_sponge +20:0,minecraft:glass +21:0,minecraft:lapis_ore +22:0,minecraft:lapis_block +23:0,minecraft:dispenser[facing=down,triggered=false] +23:1,minecraft:dispenser[facing=up,triggered=false] +23:2,minecraft:dispenser[facing=north,triggered=false] +23:3,minecraft:dispenser[facing=south,triggered=false] +23:4,minecraft:dispenser[facing=west,triggered=false] +23:5,minecraft:dispenser[facing=east,triggered=false] +23:7,minecraft:dispenser[facing=up,triggered=false] +23:8,minecraft:dispenser[facing=down,triggered=true] +23:9,minecraft:dispenser[facing=up,triggered=true] +23:10,minecraft:dispenser[facing=north,triggered=true] +23:11,minecraft:dispenser[facing=south,triggered=true] +23:12,minecraft:dispenser[facing=west,triggered=true] +23:13,minecraft:dispenser[facing=east,triggered=true] +23:14,minecraft:dispenser[facing=down,triggered=true] +23:15,minecraft:dispenser[facing=up,triggered=true] +24:0,minecraft:sandstone +24:1,minecraft:chiseled_sandstone +24:2,minecraft:cut_sandstone +25:0,minecraft:note_block[instrument=harp,note=0,powered=false] +26:0,minecraft:red_bed[facing=south,occupied=false,part=foot] +26:1,minecraft:red_bed[facing=west,occupied=false,part=foot] +26:2,minecraft:red_bed[facing=north,occupied=false,part=foot] +26:3,minecraft:red_bed[facing=east,occupied=false,part=foot] +26:5,minecraft:red_bed[facing=west,occupied=false,part=foot] +26:6,minecraft:red_bed[facing=north,occupied=false,part=foot] +26:7,minecraft:red_bed[facing=east,occupied=false,part=foot] +26:8,minecraft:red_bed[facing=south,occupied=false,part=head] +26:9,minecraft:red_bed[facing=west,occupied=false,part=head] +26:10,minecraft:red_bed[facing=north,occupied=false,part=head] +26:11,minecraft:red_bed[facing=east,occupied=false,part=head] +26:12,minecraft:red_bed[facing=south,occupied=true,part=head] +26:13,minecraft:red_bed[facing=west,occupied=true,part=head] +26:14,minecraft:red_bed[facing=north,occupied=true,part=head] +26:15,minecraft:red_bed[facing=east,occupied=true,part=head] +27:0,minecraft:powered_rail[powered=false,shape=north_south] +27:6,minecraft:air +27:7,minecraft:air +27:14,minecraft:air +27:15,minecraft:air +28:0,minecraft:detector_rail[powered=false,shape=north_south] +28:6,minecraft:air +28:7,minecraft:air +28:9,minecraft:detector_rail[powered=false,shape=east_west] +28:10,minecraft:detector_rail[powered=false,shape=ascending_east] +28:11,minecraft:detector_rail[powered=false,shape=ascending_west] +28:12,minecraft:detector_rail[powered=false,shape=ascending_north] +28:13,minecraft:detector_rail[powered=false,shape=ascending_south] +28:14,minecraft:air +28:15,minecraft:air +29:0,minecraft:sticky_piston[extended=false,facing=down] +29:1,minecraft:sticky_piston[extended=false,facing=up] +29:2,minecraft:sticky_piston[extended=false,facing=north] +29:3,minecraft:sticky_piston[extended=false,facing=south] +29:4,minecraft:sticky_piston[extended=false,facing=west] +29:5,minecraft:sticky_piston[extended=false,facing=east] +29:6,minecraft:air +29:7,minecraft:air +29:8,minecraft:moving_piston[facing=down,type=sticky] +29:9,minecraft:moving_piston[facing=up,type=sticky] +29:10,minecraft:moving_piston[facing=north,type=sticky] +29:11,minecraft:moving_piston[facing=south,type=sticky] +29:12,minecraft:moving_piston[facing=west,type=sticky] +29:13,minecraft:moving_piston[facing=east,type=sticky] +29:14,minecraft:air +29:15,minecraft:air +30:0,minecraft:cobweb +31:0,minecraft:dead_bush +31:1,minecraft:grass +31:2,minecraft:fern +32:0,minecraft:dead_bush +33:0,minecraft:piston[extended=false,facing=down] +33:1,minecraft:piston[extended=false,facing=up] +33:2,minecraft:piston[extended=false,facing=north] +33:3,minecraft:piston[extended=false,facing=south] +33:4,minecraft:piston[extended=false,facing=west] +33:5,minecraft:piston[extended=false,facing=east] +33:6,minecraft:air +33:7,minecraft:air +33:8,minecraft:moving_piston[facing=down,type=normal] +33:9,minecraft:moving_piston[facing=up,type=normal] +33:10,minecraft:moving_piston[facing=north,type=normal] +33:11,minecraft:moving_piston[facing=south,type=normal] +33:12,minecraft:moving_piston[facing=west,type=normal] +33:13,minecraft:moving_piston[facing=east,type=normal] +33:14,minecraft:air +33:15,minecraft:air +34:0,minecraft:piston_head[facing=down,short=false,type=normal] +34:1,minecraft:piston_head[facing=up,short=false,type=normal] +34:2,minecraft:piston_head[facing=north,short=false,type=normal] +34:3,minecraft:piston_head[facing=south,short=false,type=normal] +34:4,minecraft:piston_head[facing=west,short=false,type=normal] +34:5,minecraft:piston_head[facing=east,short=false,type=normal] +34:6,minecraft:air +34:7,minecraft:air +34:8,minecraft:piston_head[facing=down,short=false,type=sticky] +34:9,minecraft:piston_head[facing=up,short=false,type=sticky] +34:10,minecraft:piston_head[facing=north,short=false,type=sticky] +34:11,minecraft:piston_head[facing=south,short=false,type=sticky] +34:12,minecraft:piston_head[facing=west,short=false,type=sticky] +34:13,minecraft:piston_head[facing=east,short=false,type=sticky] +34:14,minecraft:air +34:15,minecraft:air +35:0,minecraft:white_wool +35:1,minecraft:orange_wool +35:2,minecraft:magenta_wool +35:3,minecraft:light_blue_wool +35:4,minecraft:yellow_wool +35:5,minecraft:lime_wool +35:6,minecraft:pink_wool +35:7,minecraft:gray_wool +35:8,minecraft:light_gray_wool +35:9,minecraft:cyan_wool +35:10,minecraft:purple_wool +35:11,minecraft:blue_wool +35:12,minecraft:brown_wool +35:13,minecraft:green_wool +35:14,minecraft:red_wool +35:15,minecraft:black_wool +36:0,minecraft:moving_piston[facing=down,type=normal] +36:1,minecraft:moving_piston[facing=up,type=normal] +36:2,minecraft:moving_piston[facing=north,type=normal] +36:3,minecraft:moving_piston[facing=south,type=normal] +36:4,minecraft:moving_piston[facing=west,type=normal] +36:5,minecraft:moving_piston[facing=east,type=normal] +36:6,minecraft:air +36:7,minecraft:air +36:8,minecraft:moving_piston[facing=down,type=sticky] +36:9,minecraft:moving_piston[facing=up,type=sticky] +36:10,minecraft:moving_piston[facing=north,type=sticky] +36:11,minecraft:moving_piston[facing=south,type=sticky] +36:12,minecraft:moving_piston[facing=west,type=sticky] +36:13,minecraft:moving_piston[facing=east,type=sticky] +36:14,minecraft:air +36:15,minecraft:air +37:0,minecraft:dandelion +38:0,minecraft:poppy +38:1,minecraft:blue_orchid +38:2,minecraft:allium +38:3,minecraft:azure_bluet +38:4,minecraft:red_tulip +38:5,minecraft:orange_tulip +38:6,minecraft:white_tulip +38:7,minecraft:pink_tulip +38:8,minecraft:oxeye_daisy +39:0,minecraft:brown_mushroom +40:0,minecraft:red_mushroom +41:0,minecraft:gold_block +42:0,minecraft:iron_block +43:0,minecraft:stone_slab[type=double,waterlogged=false] +43:1,minecraft:sandstone_slab[type=double,waterlogged=false] +43:2,minecraft:petrified_oak_slab[type=double,waterlogged=false] +43:3,minecraft:cobblestone_slab[type=double,waterlogged=false] +43:4,minecraft:brick_slab[type=double,waterlogged=false] +43:5,minecraft:stone_brick_slab[type=double,waterlogged=false] +43:6,minecraft:nether_brick_slab[type=double,waterlogged=false] +43:7,minecraft:quartz_slab[type=double,waterlogged=false] +43:8,minecraft:smooth_stone +43:9,minecraft:smooth_sandstone +43:10,minecraft:petrified_oak_slab[type=double,waterlogged=false] +43:11,minecraft:cobblestone_slab[type=double,waterlogged=false] +43:12,minecraft:brick_slab[type=double,waterlogged=false] +43:13,minecraft:stone_brick_slab[type=double,waterlogged=false] +43:14,minecraft:nether_brick_slab[type=double,waterlogged=false] +43:15,minecraft:smooth_quartz +44:0,minecraft:stone_slab[type=bottom,waterlogged=false] +44:1,minecraft:sandstone_slab[type=bottom,waterlogged=false] +44:2,minecraft:petrified_oak_slab[type=bottom,waterlogged=false] +44:3,minecraft:cobblestone_slab[type=bottom,waterlogged=false] +44:4,minecraft:brick_slab[type=bottom,waterlogged=false] +44:5,minecraft:stone_brick_slab[type=bottom,waterlogged=false] +44:6,minecraft:nether_brick_slab[type=bottom,waterlogged=false] +44:7,minecraft:quartz_slab[type=bottom,waterlogged=false] +44:8,minecraft:stone_slab[type=top,waterlogged=false] +44:9,minecraft:sandstone_slab[type=top,waterlogged=false] +44:10,minecraft:petrified_oak_slab[type=top,waterlogged=false] +44:11,minecraft:cobblestone_slab[type=top,waterlogged=false] +44:12,minecraft:brick_slab[type=top,waterlogged=false] +44:13,minecraft:stone_brick_slab[type=top,waterlogged=false] +44:14,minecraft:nether_brick_slab[type=top,waterlogged=false] +44:15,minecraft:quartz_slab[type=top,waterlogged=false] +45:0,minecraft:bricks +46:0,minecraft:tnt +47:0,minecraft:bookshelf +48:0,minecraft:mossy_cobblestone +49:0,minecraft:obsidian +50:0,minecraft:torch +50:1,minecraft:air +50:2,minecraft:air +50:3,minecraft:air +50:4,minecraft:air +51:0,minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false] +51:1,minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false] +51:2,minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false] +51:3,minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false] +51:4,minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false] +51:5,minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false] +51:6,minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false] +51:7,minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false] +51:8,minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false] +51:9,minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false] +51:10,minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false] +51:11,minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false] +51:12,minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false] +51:13,minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false] +51:14,minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false] +51:15,minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false] +52:0,minecraft:spawner +53:0,minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +53:1,minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +53:2,minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +53:3,minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +53:4,minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] +53:5,minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] +53:6,minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] +53:7,minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] +53:9,minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +53:10,minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +53:11,minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +53:12,minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] +53:13,minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] +53:14,minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] +53:15,minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] +54:0,minecraft:chest[facing=north,type=single,waterlogged=false] +54:3,minecraft:chest[facing=south,type=single,waterlogged=false] +54:4,minecraft:chest[facing=west,type=single,waterlogged=false] +54:5,minecraft:chest[facing=east,type=single,waterlogged=false] +54:9,minecraft:chest[facing=south,type=single,waterlogged=false] +54:10,minecraft:chest[facing=west,type=single,waterlogged=false] +54:11,minecraft:chest[facing=east,type=single,waterlogged=false] +54:15,minecraft:chest[facing=south,type=single,waterlogged=false] +55:0,minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none] +55:2,minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none] +55:3,minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none] +55:4,minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none] +55:5,minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none] +55:6,minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none] +55:7,minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none] +55:8,minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none] +55:9,minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none] +55:10,minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none] +55:11,minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none] +55:12,minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none] +55:13,minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none] +55:14,minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none] +55:15,minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none] +56:0,minecraft:diamond_ore +57:0,minecraft:diamond_block +58:0,minecraft:crafting_table +59:0,minecraft:wheat[age=0] +59:1,minecraft:wheat[age=1] +59:2,minecraft:wheat[age=2] +59:3,minecraft:wheat[age=3] +59:4,minecraft:wheat[age=4] +59:5,minecraft:wheat[age=5] +59:6,minecraft:wheat[age=6] +59:7,minecraft:wheat[age=7] +59:8,minecraft:air +59:9,minecraft:air +59:10,minecraft:air +59:11,minecraft:air +59:12,minecraft:air +59:13,minecraft:air +59:14,minecraft:air +59:15,minecraft:air +60:0,minecraft:farmland[moisture=0] +60:1,minecraft:farmland[moisture=1] +60:2,minecraft:farmland[moisture=2] +60:3,minecraft:farmland[moisture=3] +60:4,minecraft:farmland[moisture=4] +60:5,minecraft:farmland[moisture=5] +60:6,minecraft:farmland[moisture=6] +60:7,minecraft:farmland[moisture=7] +60:9,minecraft:farmland[moisture=1] +60:10,minecraft:farmland[moisture=2] +60:11,minecraft:farmland[moisture=3] +60:12,minecraft:farmland[moisture=4] +60:13,minecraft:farmland[moisture=5] +60:14,minecraft:farmland[moisture=6] +60:15,minecraft:farmland[moisture=7] +61:0,minecraft:furnace[facing=north,lit=false] +61:3,minecraft:furnace[facing=south,lit=false] +61:4,minecraft:furnace[facing=west,lit=false] +61:5,minecraft:furnace[facing=east,lit=false] +61:9,minecraft:furnace[facing=south,lit=false] +61:10,minecraft:furnace[facing=west,lit=false] +61:11,minecraft:furnace[facing=east,lit=false] +61:15,minecraft:furnace[facing=south,lit=false] +62:0,minecraft:furnace[facing=north,lit=false] +62:3,minecraft:furnace[facing=south,lit=false] +62:4,minecraft:furnace[facing=west,lit=false] +62:5,minecraft:furnace[facing=east,lit=false] +62:9,minecraft:furnace[facing=south,lit=false] +62:10,minecraft:furnace[facing=west,lit=false] +62:11,minecraft:furnace[facing=east,lit=false] +62:15,minecraft:furnace[facing=south,lit=false] +63:0,minecraft:sign[rotation=0,waterlogged=false] +63:1,minecraft:sign[rotation=1,waterlogged=false] +63:2,minecraft:sign[rotation=2,waterlogged=false] +63:3,minecraft:sign[rotation=3,waterlogged=false] +63:4,minecraft:sign[rotation=4,waterlogged=false] +63:5,minecraft:sign[rotation=5,waterlogged=false] +63:6,minecraft:sign[rotation=6,waterlogged=false] +63:7,minecraft:sign[rotation=7,waterlogged=false] +63:8,minecraft:sign[rotation=8,waterlogged=false] +63:9,minecraft:sign[rotation=9,waterlogged=false] +63:10,minecraft:sign[rotation=10,waterlogged=false] +63:11,minecraft:sign[rotation=11,waterlogged=false] +63:12,minecraft:sign[rotation=12,waterlogged=false] +63:13,minecraft:sign[rotation=13,waterlogged=false] +63:14,minecraft:sign[rotation=14,waterlogged=false] +63:15,minecraft:sign[rotation=15,waterlogged=false] +64:0,minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] +64:1,minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] +64:2,minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] +64:3,minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] +64:4,minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] +64:5,minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] +64:6,minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] +64:7,minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] +64:8,minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] +64:9,minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] +64:10,minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] +64:11,minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] +64:12,minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] +64:13,minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] +64:14,minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] +64:15,minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] +65:0,minecraft:ladder[facing=north,waterlogged=false] +65:3,minecraft:ladder[facing=south,waterlogged=false] +65:4,minecraft:ladder[facing=west,waterlogged=false] +65:5,minecraft:ladder[facing=east,waterlogged=false] +65:9,minecraft:ladder[facing=south,waterlogged=false] +65:10,minecraft:ladder[facing=west,waterlogged=false] +65:11,minecraft:ladder[facing=east,waterlogged=false] +65:15,minecraft:ladder[facing=south,waterlogged=false] +66:0,minecraft:rail[shape=north_south] +67:0,minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +67:1,minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +67:2,minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +67:3,minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +67:4,minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +67:5,minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +67:6,minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +67:7,minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +67:9,minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +67:10,minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +67:11,minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +67:12,minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +67:13,minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +67:14,minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +67:15,minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +68:0,minecraft:wall_sign[facing=north,waterlogged=false] +68:3,minecraft:wall_sign[facing=south,waterlogged=false] +68:4,minecraft:wall_sign[facing=west,waterlogged=false] +68:5,minecraft:wall_sign[facing=east,waterlogged=false] +68:9,minecraft:wall_sign[facing=south,waterlogged=false] +68:10,minecraft:wall_sign[facing=west,waterlogged=false] +68:11,minecraft:wall_sign[facing=east,waterlogged=false] +68:15,minecraft:wall_sign[facing=south,waterlogged=false] +69:0,minecraft:lever[face=ceiling,facing=west,powered=false] +69:1,minecraft:lever[face=wall,facing=east,powered=false] +69:2,minecraft:lever[face=wall,facing=west,powered=false] +69:3,minecraft:lever[face=wall,facing=south,powered=false] +69:4,minecraft:lever[face=wall,facing=north,powered=false] +69:5,minecraft:lever[face=floor,facing=north,powered=false] +69:6,minecraft:lever[face=floor,facing=west,powered=false] +69:7,minecraft:lever[face=ceiling,facing=north,powered=false] +69:8,minecraft:lever[face=ceiling,facing=west,powered=true] +69:9,minecraft:lever[face=wall,facing=east,powered=true] +69:10,minecraft:lever[face=wall,facing=west,powered=true] +69:11,minecraft:lever[face=wall,facing=south,powered=true] +69:12,minecraft:lever[face=wall,facing=north,powered=true] +69:13,minecraft:lever[face=floor,facing=north,powered=true] +69:14,minecraft:lever[face=floor,facing=west,powered=true] +69:15,minecraft:lever[face=ceiling,facing=north,powered=true] +70:0,minecraft:stone_pressure_plate[powered=false] +70:1,minecraft:stone_pressure_plate[powered=true] +71:0,minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false] +71:1,minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false] +71:2,minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false] +71:3,minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false] +71:4,minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false] +71:5,minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false] +71:6,minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false] +71:7,minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false] +71:8,minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] +71:9,minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] +71:10,minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] +71:11,minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] +71:12,minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false] +71:13,minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false] +71:14,minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true] +71:15,minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true] +72:0,minecraft:oak_pressure_plate[powered=false] +72:1,minecraft:oak_pressure_plate[powered=true] +73:0,minecraft:redstone_ore[lit=false] +74:0,minecraft:redstone_ore[lit=true] +75:0,minecraft:redstone_torch[lit=false] +75:1,minecraft:redstone_wall_torch[facing=east,lit=false] +75:2,minecraft:redstone_wall_torch[facing=west,lit=false] +75:3,minecraft:redstone_wall_torch[facing=south,lit=false] +75:4,minecraft:redstone_wall_torch[facing=north,lit=false] +76:0,minecraft:redstone_torch[lit=true] +76:1,minecraft:redstone_wall_torch[facing=east,lit=true] +76:2,minecraft:redstone_wall_torch[facing=west,lit=true] +76:3,minecraft:redstone_wall_torch[facing=south,lit=true] +76:4,minecraft:redstone_wall_torch[facing=north,lit=true] +77:0,minecraft:stone_button[face=ceiling,facing=north,powered=false] +77:1,minecraft:stone_button[face=wall,facing=east,powered=false] +77:2,minecraft:stone_button[face=wall,facing=west,powered=false] +77:3,minecraft:stone_button[face=wall,facing=south,powered=false] +77:4,minecraft:stone_button[face=wall,facing=north,powered=false] +77:5,minecraft:stone_button[face=floor,facing=north,powered=false] +77:6,minecraft:stone_button[face=floor,facing=north,powered=false] +77:7,minecraft:stone_button[face=floor,facing=north,powered=false] +77:8,minecraft:stone_button[face=ceiling,facing=north,powered=true] +77:9,minecraft:stone_button[face=wall,facing=east,powered=true] +77:10,minecraft:stone_button[face=wall,facing=west,powered=true] +77:11,minecraft:stone_button[face=wall,facing=south,powered=true] +77:12,minecraft:stone_button[face=wall,facing=north,powered=true] +77:13,minecraft:stone_button[face=floor,facing=north,powered=true] +77:14,minecraft:stone_button[face=floor,facing=north,powered=true] +77:15,minecraft:stone_button[face=floor,facing=north,powered=true] +78:0,minecraft:snow[layers=1] +78:1,minecraft:snow[layers=2] +78:2,minecraft:snow[layers=3] +78:3,minecraft:snow[layers=4] +78:4,minecraft:snow[layers=5] +78:5,minecraft:snow[layers=6] +78:6,minecraft:snow[layers=7] +78:7,minecraft:snow[layers=8] +78:9,minecraft:snow[layers=2] +78:10,minecraft:snow[layers=3] +78:11,minecraft:snow[layers=4] +78:12,minecraft:snow[layers=5] +78:13,minecraft:snow[layers=6] +78:14,minecraft:snow[layers=7] +78:15,minecraft:snow[layers=8] +79:0,minecraft:ice +80:0,minecraft:snow_block +81:0,minecraft:cactus[age=0] +81:1,minecraft:cactus[age=1] +81:2,minecraft:cactus[age=2] +81:3,minecraft:cactus[age=3] +81:4,minecraft:cactus[age=4] +81:5,minecraft:cactus[age=5] +81:6,minecraft:cactus[age=6] +81:7,minecraft:cactus[age=7] +81:8,minecraft:cactus[age=8] +81:9,minecraft:cactus[age=9] +81:10,minecraft:cactus[age=10] +81:11,minecraft:cactus[age=11] +81:12,minecraft:cactus[age=12] +81:13,minecraft:cactus[age=13] +81:14,minecraft:cactus[age=14] +81:15,minecraft:cactus[age=15] +82:0,minecraft:clay +83:0,minecraft:sugar_cane[age=0] +83:1,minecraft:sugar_cane[age=1] +83:2,minecraft:sugar_cane[age=2] +83:3,minecraft:sugar_cane[age=3] +83:4,minecraft:sugar_cane[age=4] +83:5,minecraft:sugar_cane[age=5] +83:6,minecraft:sugar_cane[age=6] +83:7,minecraft:sugar_cane[age=7] +83:8,minecraft:sugar_cane[age=8] +83:9,minecraft:sugar_cane[age=9] +83:10,minecraft:sugar_cane[age=10] +83:11,minecraft:sugar_cane[age=11] +83:12,minecraft:sugar_cane[age=12] +83:13,minecraft:sugar_cane[age=13] +83:14,minecraft:sugar_cane[age=14] +83:15,minecraft:sugar_cane[age=15] +84:0,minecraft:jukebox[has_record=false] +84:1,minecraft:jukebox[has_record=true] +84:2,minecraft:jukebox[has_record=true] +84:3,minecraft:jukebox[has_record=true] +84:4,minecraft:jukebox[has_record=true] +84:5,minecraft:jukebox[has_record=true] +84:6,minecraft:jukebox[has_record=true] +84:7,minecraft:jukebox[has_record=true] +84:8,minecraft:jukebox[has_record=true] +84:9,minecraft:jukebox[has_record=true] +84:10,minecraft:jukebox[has_record=true] +84:11,minecraft:jukebox[has_record=true] +84:12,minecraft:jukebox[has_record=true] +84:13,minecraft:jukebox[has_record=true] +84:14,minecraft:jukebox[has_record=true] +84:15,minecraft:jukebox[has_record=true] +85:0,minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] +86:0,minecraft:carved_pumpkin[facing=south] +86:1,minecraft:carved_pumpkin[facing=west] +86:2,minecraft:carved_pumpkin[facing=north] +86:3,minecraft:carved_pumpkin[facing=east] +86:5,minecraft:carved_pumpkin[facing=west] +86:6,minecraft:carved_pumpkin[facing=north] +86:7,minecraft:carved_pumpkin[facing=east] +86:9,minecraft:carved_pumpkin[facing=west] +86:10,minecraft:carved_pumpkin[facing=north] +86:11,minecraft:carved_pumpkin[facing=east] +86:13,minecraft:carved_pumpkin[facing=west] +86:14,minecraft:carved_pumpkin[facing=north] +86:15,minecraft:carved_pumpkin[facing=east] +87:0,minecraft:netherrack +88:0,minecraft:soul_sand +89:0,minecraft:glowstone +90:0,minecraft:nether_portal[axis=x] +90:2,minecraft:nether_portal[axis=z] +90:6,minecraft:nether_portal[axis=z] +90:10,minecraft:nether_portal[axis=z] +90:14,minecraft:nether_portal[axis=z] +91:0,minecraft:jack_o_lantern[facing=south] +91:1,minecraft:jack_o_lantern[facing=west] +91:2,minecraft:jack_o_lantern[facing=north] +91:3,minecraft:jack_o_lantern[facing=east] +91:5,minecraft:jack_o_lantern[facing=west] +91:6,minecraft:jack_o_lantern[facing=north] +91:7,minecraft:jack_o_lantern[facing=east] +91:9,minecraft:jack_o_lantern[facing=west] +91:10,minecraft:jack_o_lantern[facing=north] +91:11,minecraft:jack_o_lantern[facing=east] +91:13,minecraft:jack_o_lantern[facing=west] +91:14,minecraft:jack_o_lantern[facing=north] +91:15,minecraft:jack_o_lantern[facing=east] +92:0,minecraft:cake[bites=0] +92:1,minecraft:cake[bites=1] +92:2,minecraft:cake[bites=2] +92:3,minecraft:cake[bites=3] +92:4,minecraft:cake[bites=4] +92:5,minecraft:cake[bites=5] +92:6,minecraft:cake[bites=6] +92:7,minecraft:air +92:8,minecraft:air +92:9,minecraft:air +92:10,minecraft:air +92:11,minecraft:air +92:12,minecraft:air +92:13,minecraft:air +92:14,minecraft:air +92:15,minecraft:air +93:0,minecraft:repeater[delay=1,facing=south,locked=false,powered=false] +93:1,minecraft:repeater[delay=1,facing=west,locked=false,powered=false] +93:2,minecraft:repeater[delay=1,facing=north,locked=false,powered=false] +93:3,minecraft:repeater[delay=1,facing=east,locked=false,powered=false] +93:4,minecraft:repeater[delay=2,facing=south,locked=false,powered=false] +93:5,minecraft:repeater[delay=2,facing=west,locked=false,powered=false] +93:6,minecraft:repeater[delay=2,facing=north,locked=false,powered=false] +93:7,minecraft:repeater[delay=2,facing=east,locked=false,powered=false] +93:8,minecraft:repeater[delay=3,facing=south,locked=false,powered=false] +93:9,minecraft:repeater[delay=3,facing=west,locked=false,powered=false] +93:10,minecraft:repeater[delay=3,facing=north,locked=false,powered=false] +93:11,minecraft:repeater[delay=3,facing=east,locked=false,powered=false] +93:12,minecraft:repeater[delay=4,facing=south,locked=false,powered=false] +93:13,minecraft:repeater[delay=4,facing=west,locked=false,powered=false] +93:14,minecraft:repeater[delay=4,facing=north,locked=false,powered=false] +93:15,minecraft:repeater[delay=4,facing=east,locked=false,powered=false] +94:0,minecraft:repeater[delay=1,facing=south,locked=false,powered=true] +94:1,minecraft:repeater[delay=1,facing=west,locked=false,powered=true] +94:2,minecraft:repeater[delay=1,facing=north,locked=false,powered=true] +94:3,minecraft:repeater[delay=1,facing=east,locked=false,powered=true] +94:4,minecraft:repeater[delay=2,facing=south,locked=false,powered=true] +94:5,minecraft:repeater[delay=2,facing=west,locked=false,powered=true] +94:6,minecraft:repeater[delay=2,facing=north,locked=false,powered=true] +94:7,minecraft:repeater[delay=2,facing=east,locked=false,powered=true] +94:8,minecraft:repeater[delay=3,facing=south,locked=false,powered=true] +94:9,minecraft:repeater[delay=3,facing=west,locked=false,powered=true] +94:10,minecraft:repeater[delay=3,facing=north,locked=false,powered=true] +94:11,minecraft:repeater[delay=3,facing=east,locked=false,powered=true] +94:12,minecraft:repeater[delay=4,facing=south,locked=false,powered=true] +94:13,minecraft:repeater[delay=4,facing=west,locked=false,powered=true] +94:14,minecraft:repeater[delay=4,facing=north,locked=false,powered=true] +94:15,minecraft:repeater[delay=4,facing=east,locked=false,powered=true] +95:0,minecraft:white_stained_glass +95:1,minecraft:orange_stained_glass +95:2,minecraft:magenta_stained_glass +95:3,minecraft:light_blue_stained_glass +95:4,minecraft:yellow_stained_glass +95:5,minecraft:lime_stained_glass +95:6,minecraft:pink_stained_glass +95:7,minecraft:gray_stained_glass +95:8,minecraft:light_gray_stained_glass +95:9,minecraft:cyan_stained_glass +95:10,minecraft:purple_stained_glass +95:11,minecraft:blue_stained_glass +95:12,minecraft:brown_stained_glass +95:13,minecraft:green_stained_glass +95:14,minecraft:red_stained_glass +95:15,minecraft:black_stained_glass +96:0,minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] +96:1,minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] +96:2,minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] +96:3,minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] +96:4,minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] +96:5,minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] +96:6,minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] +96:7,minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] +96:8,minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] +96:9,minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] +96:10,minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] +96:11,minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] +96:12,minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] +96:13,minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] +96:14,minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] +96:15,minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] +97:0,minecraft:infested_stone +97:1,minecraft:infested_cobblestone +97:2,minecraft:infested_stone_bricks +97:3,minecraft:infested_mossy_stone_bricks +97:4,minecraft:infested_cracked_stone_bricks +97:5,minecraft:infested_chiseled_stone_bricks +98:0,minecraft:stone_bricks +98:1,minecraft:mossy_stone_bricks +98:2,minecraft:cracked_stone_bricks +98:3,minecraft:chiseled_stone_bricks +99:0,minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] +99:1,minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] +99:2,minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] +99:3,minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] +99:4,minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] +99:5,minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] +99:6,minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] +99:7,minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] +99:8,minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] +99:9,minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] +99:10,minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true] +99:14,minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true] +99:15,minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true] +100:0,minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false] +100:1,minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true] +100:2,minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false] +100:3,minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false] +100:4,minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true] +100:5,minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false] +100:6,minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false] +100:7,minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true] +100:8,minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false] +100:9,minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false] +100:10,minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true] +100:14,minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true] +100:15,minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true] +101:0,minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false] +102:0,minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +103:0,minecraft:melon +104:0,minecraft:pumpkin_stem[age=0] +104:1,minecraft:pumpkin_stem[age=1] +104:2,minecraft:pumpkin_stem[age=2] +104:3,minecraft:pumpkin_stem[age=3] +104:4,minecraft:pumpkin_stem[age=4] +104:5,minecraft:pumpkin_stem[age=5] +104:6,minecraft:pumpkin_stem[age=6] +104:7,minecraft:pumpkin_stem[age=7] +104:8,minecraft:air +104:9,minecraft:air +104:10,minecraft:air +104:11,minecraft:air +104:12,minecraft:air +104:13,minecraft:air +104:14,minecraft:air +104:15,minecraft:air +105:0,minecraft:melon_stem[age=0] +105:1,minecraft:melon_stem[age=1] +105:2,minecraft:melon_stem[age=2] +105:3,minecraft:melon_stem[age=3] +105:4,minecraft:melon_stem[age=4] +105:5,minecraft:melon_stem[age=5] +105:6,minecraft:melon_stem[age=6] +105:7,minecraft:melon_stem[age=7] +105:8,minecraft:air +105:9,minecraft:air +105:10,minecraft:air +105:11,minecraft:air +105:12,minecraft:air +105:13,minecraft:air +105:14,minecraft:air +105:15,minecraft:air +106:0,minecraft:vine[east=false,north=false,south=false,up=true,west=false] +106:1,minecraft:vine[east=false,north=false,south=true,up=true,west=false] +106:2,minecraft:vine[east=false,north=false,south=false,up=true,west=true] +106:3,minecraft:vine[east=false,north=false,south=true,up=true,west=true] +106:4,minecraft:vine[east=false,north=true,south=false,up=true,west=false] +106:5,minecraft:vine[east=false,north=true,south=true,up=true,west=false] +106:6,minecraft:vine[east=false,north=true,south=false,up=true,west=true] +106:7,minecraft:vine[east=false,north=true,south=true,up=true,west=true] +106:8,minecraft:vine[east=true,north=false,south=false,up=true,west=false] +106:9,minecraft:vine[east=true,north=false,south=true,up=true,west=false] +106:10,minecraft:vine[east=true,north=false,south=false,up=true,west=true] +106:11,minecraft:vine[east=true,north=false,south=true,up=true,west=true] +106:12,minecraft:vine[east=true,north=true,south=false,up=true,west=false] +106:13,minecraft:vine[east=true,north=true,south=true,up=true,west=false] +106:14,minecraft:vine[east=true,north=true,south=false,up=true,west=true] +106:15,minecraft:vine[east=true,north=true,south=true,up=true,west=true] +107:0,minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] +107:1,minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] +107:2,minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] +107:3,minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] +107:4,minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] +107:5,minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] +107:6,minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] +107:7,minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] +107:8,minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] +107:9,minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] +107:10,minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] +107:11,minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] +107:12,minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] +107:13,minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] +107:14,minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] +107:15,minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] +108:0,minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +108:1,minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +108:2,minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +108:3,minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +108:4,minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +108:5,minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +108:6,minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +108:7,minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +108:9,minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +108:10,minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +108:11,minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +108:12,minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +108:13,minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +108:14,minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +108:15,minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +109:0,minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +109:1,minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +109:2,minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +109:3,minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +109:4,minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +109:5,minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +109:6,minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +109:7,minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +109:9,minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +109:10,minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +109:11,minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +109:12,minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +109:13,minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +109:14,minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +109:15,minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +110:0,minecraft:mycelium[snowy=false] +111:0,minecraft:lily_pad +112:0,minecraft:nether_bricks +113:0,minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false] +114:0,minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +114:1,minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +114:2,minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +114:3,minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +114:4,minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +114:5,minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +114:6,minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +114:7,minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +114:9,minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +114:10,minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +114:11,minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +114:12,minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false] +114:13,minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false] +114:14,minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false] +114:15,minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false] +115:0,minecraft:nether_wart[age=0] +115:1,minecraft:nether_wart[age=1] +115:2,minecraft:nether_wart[age=2] +115:3,minecraft:nether_wart[age=3] +115:4,minecraft:air +115:5,minecraft:air +115:6,minecraft:air +115:7,minecraft:air +115:8,minecraft:air +115:9,minecraft:air +115:10,minecraft:air +115:11,minecraft:air +115:12,minecraft:air +115:13,minecraft:air +115:14,minecraft:air +115:15,minecraft:air +116:0,minecraft:enchanting_table +117:0,minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false] +118:0,minecraft:cauldron[level=0] +118:1,minecraft:cauldron[level=1] +118:2,minecraft:cauldron[level=2] +118:3,minecraft:cauldron[level=3] +118:4,minecraft:air +118:5,minecraft:air +118:6,minecraft:air +118:7,minecraft:air +118:8,minecraft:air +118:9,minecraft:air +118:10,minecraft:air +118:11,minecraft:air +118:12,minecraft:air +118:13,minecraft:air +118:14,minecraft:air +118:15,minecraft:air +119:0,minecraft:end_portal +120:0,minecraft:end_portal_frame[eye=false,facing=south] +120:1,minecraft:end_portal_frame[eye=false,facing=west] +120:2,minecraft:end_portal_frame[eye=false,facing=north] +120:3,minecraft:end_portal_frame[eye=false,facing=east] +120:4,minecraft:end_portal_frame[eye=true,facing=south] +120:5,minecraft:end_portal_frame[eye=true,facing=west] +120:6,minecraft:end_portal_frame[eye=true,facing=north] +120:7,minecraft:end_portal_frame[eye=true,facing=east] +120:9,minecraft:end_portal_frame[eye=false,facing=west] +120:10,minecraft:end_portal_frame[eye=false,facing=north] +120:11,minecraft:end_portal_frame[eye=false,facing=east] +120:12,minecraft:end_portal_frame[eye=true,facing=south] +120:13,minecraft:end_portal_frame[eye=true,facing=west] +120:14,minecraft:end_portal_frame[eye=true,facing=north] +120:15,minecraft:end_portal_frame[eye=true,facing=east] +121:0,minecraft:end_stone +122:0,minecraft:dragon_egg +123:0,minecraft:redstone_lamp[lit=false] +124:0,minecraft:redstone_lamp[lit=false] +125:0,minecraft:oak_slab[type=double,waterlogged=false] +125:1,minecraft:spruce_slab[type=double,waterlogged=false] +125:2,minecraft:birch_slab[type=double,waterlogged=false] +125:3,minecraft:jungle_slab[type=double,waterlogged=false] +125:4,minecraft:acacia_slab[type=double,waterlogged=false] +125:5,minecraft:dark_oak_slab[type=double,waterlogged=false] +125:9,minecraft:spruce_slab[type=double,waterlogged=false] +125:10,minecraft:birch_slab[type=double,waterlogged=false] +125:11,minecraft:jungle_slab[type=double,waterlogged=false] +125:12,minecraft:acacia_slab[type=double,waterlogged=false] +125:13,minecraft:dark_oak_slab[type=double,waterlogged=false] +126:0,minecraft:oak_slab[type=bottom,waterlogged=false] +126:1,minecraft:spruce_slab[type=bottom,waterlogged=false] +126:2,minecraft:birch_slab[type=bottom,waterlogged=false] +126:3,minecraft:jungle_slab[type=bottom,waterlogged=false] +126:4,minecraft:acacia_slab[type=bottom,waterlogged=false] +126:5,minecraft:dark_oak_slab[type=bottom,waterlogged=false] +126:8,minecraft:oak_slab[type=top,waterlogged=false] +126:9,minecraft:spruce_slab[type=top,waterlogged=false] +126:10,minecraft:birch_slab[type=top,waterlogged=false] +126:11,minecraft:jungle_slab[type=top,waterlogged=false] +126:12,minecraft:acacia_slab[type=top,waterlogged=false] +126:13,minecraft:dark_oak_slab[type=top,waterlogged=false] +126:14,minecraft:oak_slab[type=top,waterlogged=false] +126:15,minecraft:oak_slab[type=top,waterlogged=false] +127:0,minecraft:cocoa[age=0,facing=south] +127:1,minecraft:cocoa[age=0,facing=west] +127:2,minecraft:cocoa[age=0,facing=north] +127:3,minecraft:cocoa[age=0,facing=east] +127:4,minecraft:cocoa[age=1,facing=south] +127:5,minecraft:cocoa[age=1,facing=west] +127:6,minecraft:cocoa[age=1,facing=north] +127:7,minecraft:cocoa[age=1,facing=east] +127:8,minecraft:cocoa[age=2,facing=south] +127:9,minecraft:cocoa[age=2,facing=west] +127:10,minecraft:cocoa[age=2,facing=north] +127:11,minecraft:cocoa[age=2,facing=east] +127:12,minecraft:air +127:13,minecraft:air +127:14,minecraft:air +127:15,minecraft:air +128:0,minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +128:1,minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +128:2,minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +128:3,minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +128:4,minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +128:5,minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +128:6,minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +128:7,minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +128:9,minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +128:10,minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +128:11,minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +128:12,minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +128:13,minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +128:14,minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +128:15,minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +129:0,minecraft:emerald_ore +130:0,minecraft:ender_chest[facing=north,waterlogged=false] +130:3,minecraft:ender_chest[facing=south,waterlogged=false] +130:4,minecraft:ender_chest[facing=west,waterlogged=false] +130:5,minecraft:ender_chest[facing=east,waterlogged=false] +130:9,minecraft:ender_chest[facing=south,waterlogged=false] +130:10,minecraft:ender_chest[facing=west,waterlogged=false] +130:11,minecraft:ender_chest[facing=east,waterlogged=false] +130:15,minecraft:ender_chest[facing=south,waterlogged=false] +131:0,minecraft:tripwire_hook[attached=false,facing=south,powered=false] +131:1,minecraft:tripwire_hook[attached=false,facing=west,powered=false] +131:2,minecraft:tripwire_hook[attached=false,facing=north,powered=false] +131:3,minecraft:tripwire_hook[attached=false,facing=east,powered=false] +131:4,minecraft:tripwire_hook[attached=true,facing=south,powered=false] +131:5,minecraft:tripwire_hook[attached=true,facing=west,powered=false] +131:6,minecraft:tripwire_hook[attached=true,facing=north,powered=false] +131:7,minecraft:tripwire_hook[attached=true,facing=east,powered=false] +131:8,minecraft:tripwire_hook[attached=false,facing=south,powered=true] +131:9,minecraft:tripwire_hook[attached=false,facing=west,powered=true] +131:10,minecraft:tripwire_hook[attached=false,facing=north,powered=true] +131:11,minecraft:tripwire_hook[attached=false,facing=east,powered=true] +131:12,minecraft:tripwire_hook[attached=true,facing=south,powered=true] +131:13,minecraft:tripwire_hook[attached=true,facing=west,powered=true] +131:14,minecraft:tripwire_hook[attached=true,facing=north,powered=true] +131:15,minecraft:tripwire_hook[attached=true,facing=east,powered=true] +132:0,minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false] +132:1,minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false] +132:3,minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false] +132:4,minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false] +132:5,minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false] +132:6,minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false] +132:7,minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false] +132:8,minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false] +132:9,minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false] +132:10,minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false] +132:11,minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false] +132:12,minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false] +132:13,minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false] +132:14,minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false] +132:15,minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false] +133:0,minecraft:emerald_block +134:0,minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +134:1,minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +134:2,minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +134:3,minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +134:4,minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false] +134:5,minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false] +134:6,minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] +134:7,minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] +134:9,minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +134:10,minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +134:11,minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +134:12,minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false] +134:13,minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false] +134:14,minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false] +134:15,minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false] +135:0,minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +135:1,minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +135:2,minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +135:3,minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +135:4,minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false] +135:5,minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false] +135:6,minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false] +135:7,minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false] +135:9,minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +135:10,minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +135:11,minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +135:12,minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false] +135:13,minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false] +135:14,minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false] +135:15,minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false] +136:0,minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +136:1,minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +136:2,minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +136:3,minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +136:4,minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] +136:5,minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] +136:6,minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] +136:7,minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] +136:9,minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +136:10,minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +136:11,minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +136:12,minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false] +136:13,minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false] +136:14,minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false] +136:15,minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false] +137:0,minecraft:command_block[conditional=false,facing=down] +137:1,minecraft:command_block[conditional=false,facing=up] +137:2,minecraft:command_block[conditional=false,facing=north] +137:3,minecraft:command_block[conditional=false,facing=south] +137:4,minecraft:command_block[conditional=false,facing=west] +137:5,minecraft:command_block[conditional=false,facing=east] +137:7,minecraft:command_block[conditional=false,facing=up] +137:8,minecraft:command_block[conditional=true,facing=down] +137:9,minecraft:command_block[conditional=true,facing=up] +137:10,minecraft:command_block[conditional=true,facing=north] +137:11,minecraft:command_block[conditional=true,facing=south] +137:12,minecraft:command_block[conditional=true,facing=west] +137:13,minecraft:command_block[conditional=true,facing=east] +137:14,minecraft:command_block[conditional=true,facing=down] +137:15,minecraft:command_block[conditional=true,facing=up] +138:0,minecraft:beacon +139:0,minecraft:cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false] +139:1,minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=false,waterlogged=false,west=false] +140:0,minecraft:flower_pot +141:0,minecraft:carrots[age=0] +141:1,minecraft:carrots[age=1] +141:2,minecraft:carrots[age=2] +141:3,minecraft:carrots[age=3] +141:4,minecraft:carrots[age=4] +141:5,minecraft:carrots[age=5] +141:6,minecraft:carrots[age=6] +141:7,minecraft:carrots[age=7] +141:8,minecraft:air +141:9,minecraft:air +141:10,minecraft:air +141:11,minecraft:air +141:12,minecraft:air +141:13,minecraft:air +141:14,minecraft:air +141:15,minecraft:air +142:0,minecraft:potatoes[age=0] +142:1,minecraft:potatoes[age=1] +142:2,minecraft:potatoes[age=2] +142:3,minecraft:potatoes[age=3] +142:4,minecraft:potatoes[age=4] +142:5,minecraft:potatoes[age=5] +142:6,minecraft:potatoes[age=6] +142:7,minecraft:potatoes[age=7] +142:8,minecraft:air +142:9,minecraft:air +142:10,minecraft:air +142:11,minecraft:air +142:12,minecraft:air +142:13,minecraft:air +142:14,minecraft:air +142:15,minecraft:air +143:0,minecraft:oak_button[face=ceiling,facing=north,powered=false] +143:1,minecraft:oak_button[face=wall,facing=east,powered=false] +143:2,minecraft:oak_button[face=wall,facing=west,powered=false] +143:3,minecraft:oak_button[face=wall,facing=south,powered=false] +143:4,minecraft:oak_button[face=wall,facing=north,powered=false] +143:5,minecraft:oak_button[face=floor,facing=north,powered=false] +143:6,minecraft:oak_button[face=floor,facing=north,powered=false] +143:7,minecraft:oak_button[face=floor,facing=north,powered=false] +143:8,minecraft:oak_button[face=ceiling,facing=north,powered=true] +143:9,minecraft:oak_button[face=wall,facing=east,powered=true] +143:10,minecraft:oak_button[face=wall,facing=west,powered=true] +143:11,minecraft:oak_button[face=wall,facing=south,powered=true] +143:12,minecraft:oak_button[face=wall,facing=north,powered=true] +143:13,minecraft:oak_button[face=floor,facing=north,powered=true] +143:14,minecraft:oak_button[face=floor,facing=north,powered=true] +143:15,minecraft:oak_button[face=floor,facing=north,powered=true] +144:0,minecraft:skeleton_skull[rotation=0] +144:2,minecraft:skeleton_wall_skull[facing=north] +144:3,minecraft:skeleton_wall_skull[facing=south] +144:4,minecraft:skeleton_wall_skull[facing=west] +144:5,minecraft:skeleton_wall_skull[facing=east] +144:10,minecraft:skeleton_wall_skull[facing=north] +144:11,minecraft:skeleton_wall_skull[facing=south] +144:12,minecraft:skeleton_wall_skull[facing=west] +144:13,minecraft:skeleton_wall_skull[facing=east] +145:0,minecraft:anvil[facing=south] +145:1,minecraft:anvil[facing=west] +145:2,minecraft:anvil[facing=north] +145:3,minecraft:anvil[facing=east] +145:4,minecraft:chipped_anvil[facing=south] +145:5,minecraft:chipped_anvil[facing=west] +145:6,minecraft:chipped_anvil[facing=north] +145:7,minecraft:chipped_anvil[facing=east] +145:8,minecraft:damaged_anvil[facing=south] +145:9,minecraft:damaged_anvil[facing=west] +145:10,minecraft:damaged_anvil[facing=north] +145:11,minecraft:damaged_anvil[facing=east] +145:12,minecraft:air +145:13,minecraft:air +145:14,minecraft:air +145:15,minecraft:air +146:0,minecraft:trapped_chest[facing=north,type=single,waterlogged=false] +146:3,minecraft:trapped_chest[facing=south,type=single,waterlogged=false] +146:4,minecraft:trapped_chest[facing=west,type=single,waterlogged=false] +146:5,minecraft:trapped_chest[facing=east,type=single,waterlogged=false] +146:9,minecraft:trapped_chest[facing=south,type=single,waterlogged=false] +146:10,minecraft:trapped_chest[facing=west,type=single,waterlogged=false] +146:11,minecraft:trapped_chest[facing=east,type=single,waterlogged=false] +146:15,minecraft:trapped_chest[facing=south,type=single,waterlogged=false] +147:0,minecraft:light_weighted_pressure_plate[power=0] +147:1,minecraft:light_weighted_pressure_plate[power=1] +147:2,minecraft:light_weighted_pressure_plate[power=2] +147:3,minecraft:light_weighted_pressure_plate[power=3] +147:4,minecraft:light_weighted_pressure_plate[power=4] +147:5,minecraft:light_weighted_pressure_plate[power=5] +147:6,minecraft:light_weighted_pressure_plate[power=6] +147:7,minecraft:light_weighted_pressure_plate[power=7] +147:8,minecraft:light_weighted_pressure_plate[power=8] +147:9,minecraft:light_weighted_pressure_plate[power=9] +147:10,minecraft:light_weighted_pressure_plate[power=10] +147:11,minecraft:light_weighted_pressure_plate[power=11] +147:12,minecraft:light_weighted_pressure_plate[power=12] +147:13,minecraft:light_weighted_pressure_plate[power=13] +147:14,minecraft:light_weighted_pressure_plate[power=14] +147:15,minecraft:light_weighted_pressure_plate[power=15] +148:0,minecraft:heavy_weighted_pressure_plate[power=0] +148:1,minecraft:heavy_weighted_pressure_plate[power=1] +148:2,minecraft:heavy_weighted_pressure_plate[power=2] +148:3,minecraft:heavy_weighted_pressure_plate[power=3] +148:4,minecraft:heavy_weighted_pressure_plate[power=4] +148:5,minecraft:heavy_weighted_pressure_plate[power=5] +148:6,minecraft:heavy_weighted_pressure_plate[power=6] +148:7,minecraft:heavy_weighted_pressure_plate[power=7] +148:8,minecraft:heavy_weighted_pressure_plate[power=8] +148:9,minecraft:heavy_weighted_pressure_plate[power=9] +148:10,minecraft:heavy_weighted_pressure_plate[power=10] +148:11,minecraft:heavy_weighted_pressure_plate[power=11] +148:12,minecraft:heavy_weighted_pressure_plate[power=12] +148:13,minecraft:heavy_weighted_pressure_plate[power=13] +148:14,minecraft:heavy_weighted_pressure_plate[power=14] +148:15,minecraft:heavy_weighted_pressure_plate[power=15] +149:0,minecraft:comparator[facing=south,mode=compare,powered=false] +149:1,minecraft:comparator[facing=west,mode=compare,powered=false] +149:2,minecraft:comparator[facing=north,mode=compare,powered=false] +149:3,minecraft:comparator[facing=east,mode=compare,powered=false] +149:4,minecraft:comparator[facing=south,mode=subtract,powered=false] +149:5,minecraft:comparator[facing=west,mode=subtract,powered=false] +149:6,minecraft:comparator[facing=north,mode=subtract,powered=false] +149:7,minecraft:comparator[facing=east,mode=subtract,powered=false] +149:8,minecraft:comparator[facing=south,mode=compare,powered=true] +149:9,minecraft:comparator[facing=west,mode=compare,powered=true] +149:10,minecraft:comparator[facing=north,mode=compare,powered=true] +149:11,minecraft:comparator[facing=east,mode=compare,powered=true] +149:12,minecraft:comparator[facing=south,mode=subtract,powered=true] +149:13,minecraft:comparator[facing=west,mode=subtract,powered=true] +149:14,minecraft:comparator[facing=north,mode=subtract,powered=true] +149:15,minecraft:comparator[facing=east,mode=subtract,powered=true] +150:0,minecraft:comparator[facing=south,mode=compare,powered=false] +150:1,minecraft:comparator[facing=west,mode=compare,powered=false] +150:2,minecraft:comparator[facing=north,mode=compare,powered=false] +150:3,minecraft:comparator[facing=east,mode=compare,powered=false] +150:4,minecraft:comparator[facing=south,mode=subtract,powered=false] +150:5,minecraft:comparator[facing=west,mode=subtract,powered=false] +150:6,minecraft:comparator[facing=north,mode=subtract,powered=false] +150:7,minecraft:comparator[facing=east,mode=subtract,powered=false] +150:8,minecraft:comparator[facing=south,mode=compare,powered=true] +150:9,minecraft:comparator[facing=west,mode=compare,powered=true] +150:10,minecraft:comparator[facing=north,mode=compare,powered=true] +150:11,minecraft:comparator[facing=east,mode=compare,powered=true] +150:12,minecraft:comparator[facing=south,mode=subtract,powered=true] +150:13,minecraft:comparator[facing=west,mode=subtract,powered=true] +150:14,minecraft:comparator[facing=north,mode=subtract,powered=true] +150:15,minecraft:comparator[facing=east,mode=subtract,powered=true] +151:0,minecraft:daylight_detector[inverted=false,power=0] +151:1,minecraft:daylight_detector[inverted=false,power=1] +151:2,minecraft:daylight_detector[inverted=false,power=2] +151:3,minecraft:daylight_detector[inverted=false,power=3] +151:4,minecraft:daylight_detector[inverted=false,power=4] +151:5,minecraft:daylight_detector[inverted=false,power=5] +151:6,minecraft:daylight_detector[inverted=false,power=6] +151:7,minecraft:daylight_detector[inverted=false,power=7] +151:8,minecraft:daylight_detector[inverted=false,power=8] +151:9,minecraft:daylight_detector[inverted=false,power=9] +151:10,minecraft:daylight_detector[inverted=false,power=10] +151:11,minecraft:daylight_detector[inverted=false,power=11] +151:12,minecraft:daylight_detector[inverted=false,power=12] +151:13,minecraft:daylight_detector[inverted=false,power=13] +151:14,minecraft:daylight_detector[inverted=false,power=14] +151:15,minecraft:daylight_detector[inverted=false,power=15] +152:0,minecraft:redstone_block +153:0,minecraft:nether_quartz_ore +154:0,minecraft:hopper[enabled=true,facing=down] +154:1,minecraft:air +154:2,minecraft:hopper[enabled=true,facing=north] +154:3,minecraft:hopper[enabled=true,facing=south] +154:4,minecraft:hopper[enabled=true,facing=west] +154:5,minecraft:hopper[enabled=true,facing=east] +154:7,minecraft:air +154:9,minecraft:air +154:10,minecraft:hopper[enabled=true,facing=north] +154:11,minecraft:hopper[enabled=true,facing=south] +154:12,minecraft:hopper[enabled=true,facing=west] +154:13,minecraft:hopper[enabled=true,facing=east] +154:15,minecraft:air +155:0,minecraft:quartz_block +155:1,minecraft:chiseled_quartz_block +155:2,minecraft:quartz_pillar[axis=y] +155:3,minecraft:quartz_pillar[axis=x] +155:4,minecraft:quartz_pillar[axis=z] +156:0,minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +156:1,minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +156:2,minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +156:3,minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +156:4,minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] +156:5,minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] +156:6,minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] +156:7,minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] +156:9,minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +156:10,minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +156:11,minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +156:12,minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false] +156:13,minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false] +156:14,minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false] +156:15,minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false] +157:0,minecraft:activator_rail[powered=false,shape=north_south] +157:6,minecraft:air +157:7,minecraft:air +157:14,minecraft:air +157:15,minecraft:air +158:0,minecraft:dropper[facing=down,triggered=false] +158:1,minecraft:dropper[facing=up,triggered=false] +158:2,minecraft:dropper[facing=north,triggered=false] +158:3,minecraft:dropper[facing=south,triggered=false] +158:4,minecraft:dropper[facing=west,triggered=false] +158:5,minecraft:dropper[facing=east,triggered=false] +158:7,minecraft:dropper[facing=up,triggered=false] +158:8,minecraft:dropper[facing=down,triggered=true] +158:9,minecraft:dropper[facing=up,triggered=true] +158:10,minecraft:dropper[facing=north,triggered=true] +158:11,minecraft:dropper[facing=south,triggered=true] +158:12,minecraft:dropper[facing=west,triggered=true] +158:13,minecraft:dropper[facing=east,triggered=true] +158:14,minecraft:dropper[facing=down,triggered=true] +158:15,minecraft:dropper[facing=up,triggered=true] +159:0,minecraft:white_terracotta +159:1,minecraft:orange_terracotta +159:2,minecraft:magenta_terracotta +159:3,minecraft:light_blue_terracotta +159:4,minecraft:yellow_terracotta +159:5,minecraft:lime_terracotta +159:6,minecraft:pink_terracotta +159:7,minecraft:gray_terracotta +159:8,minecraft:light_gray_terracotta +159:9,minecraft:cyan_terracotta +159:10,minecraft:purple_terracotta +159:11,minecraft:blue_terracotta +159:12,minecraft:brown_terracotta +159:13,minecraft:green_terracotta +159:14,minecraft:red_terracotta +159:15,minecraft:black_terracotta +160:0,minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:1,minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:2,minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:3,minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:4,minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:5,minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:6,minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:7,minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:8,minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:9,minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:10,minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:11,minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:12,minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:13,minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:14,minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +160:15,minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false] +161:0,minecraft:acacia_leaves[distance=7,persistent=false] +161:1,minecraft:dark_oak_leaves[distance=7,persistent=false] +161:2,minecraft:air +161:3,minecraft:air +161:4,minecraft:acacia_leaves[distance=7,persistent=true] +161:5,minecraft:dark_oak_leaves[distance=7,persistent=true] +161:6,minecraft:air +161:7,minecraft:air +161:9,minecraft:dark_oak_leaves[distance=7,persistent=false] +161:10,minecraft:air +161:11,minecraft:air +161:12,minecraft:acacia_leaves[distance=7,persistent=true] +161:13,minecraft:dark_oak_leaves[distance=7,persistent=true] +161:14,minecraft:air +161:15,minecraft:air +162:0,minecraft:acacia_log[axis=y] +162:1,minecraft:dark_oak_log[axis=y] +162:2,minecraft:air +162:3,minecraft:air +162:4,minecraft:acacia_log[axis=x] +162:5,minecraft:dark_oak_log[axis=x] +162:6,minecraft:air +162:7,minecraft:air +162:8,minecraft:acacia_log[axis=z] +162:9,minecraft:dark_oak_log[axis=z] +162:10,minecraft:air +162:11,minecraft:air +162:12,minecraft:acacia_wood[axis=y] +162:13,minecraft:dark_oak_wood[axis=y] +162:14,minecraft:air +162:15,minecraft:air +163:0,minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +163:1,minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +163:2,minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +163:3,minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +163:4,minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false] +163:5,minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false] +163:6,minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false] +163:7,minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false] +163:9,minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +163:10,minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +163:11,minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +163:12,minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false] +163:13,minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false] +163:14,minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false] +163:15,minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false] +164:0,minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +164:1,minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +164:2,minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +164:3,minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +164:4,minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] +164:5,minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] +164:6,minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] +164:7,minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] +164:9,minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +164:10,minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +164:11,minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +164:12,minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false] +164:13,minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false] +164:14,minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false] +164:15,minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false] +165:0,minecraft:slime_block +166:0,minecraft:barrier +167:0,minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false] +167:1,minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false] +167:2,minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false] +167:3,minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false] +167:4,minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false] +167:5,minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false] +167:6,minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false] +167:7,minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false] +167:8,minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false] +167:9,minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false] +167:10,minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false] +167:11,minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false] +167:12,minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false] +167:13,minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false] +167:14,minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false] +167:15,minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false] +168:0,minecraft:prismarine +168:1,minecraft:prismarine_bricks +168:2,minecraft:dark_prismarine +169:0,minecraft:sea_lantern +170:0,minecraft:hay_block[axis=y] +170:4,minecraft:hay_block[axis=x] +170:5,minecraft:hay_block[axis=x] +170:6,minecraft:hay_block[axis=x] +170:7,minecraft:hay_block[axis=x] +170:8,minecraft:hay_block[axis=z] +170:9,minecraft:hay_block[axis=z] +170:10,minecraft:hay_block[axis=z] +170:11,minecraft:hay_block[axis=z] +171:0,minecraft:white_carpet +171:1,minecraft:orange_carpet +171:2,minecraft:magenta_carpet +171:3,minecraft:light_blue_carpet +171:4,minecraft:yellow_carpet +171:5,minecraft:lime_carpet +171:6,minecraft:pink_carpet +171:7,minecraft:gray_carpet +171:8,minecraft:light_gray_carpet +171:9,minecraft:cyan_carpet +171:10,minecraft:purple_carpet +171:11,minecraft:blue_carpet +171:12,minecraft:brown_carpet +171:13,minecraft:green_carpet +171:14,minecraft:red_carpet +171:15,minecraft:black_carpet +172:0,minecraft:terracotta +173:0,minecraft:coal_block +174:0,minecraft:packed_ice +175:0,minecraft:sunflower[half=lower] +175:1,minecraft:lilac[half=lower] +175:2,minecraft:tall_grass[half=lower] +175:3,minecraft:large_fern[half=lower] +175:4,minecraft:rose_bush[half=lower] +175:5,minecraft:peony[half=lower] +175:8,minecraft:peony[half=upper] +175:9,minecraft:peony[half=upper] +175:10,minecraft:peony[half=upper] +175:11,minecraft:peony[half=upper] +175:12,minecraft:peony[half=upper] +175:13,minecraft:peony[half=upper] +175:14,minecraft:peony[half=upper] +175:15,minecraft:peony[half=upper] +176:0,minecraft:black_banner[rotation=0] +176:1,minecraft:black_banner[rotation=1] +176:2,minecraft:black_banner[rotation=2] +176:3,minecraft:black_banner[rotation=3] +176:4,minecraft:black_banner[rotation=4] +176:5,minecraft:black_banner[rotation=5] +176:6,minecraft:black_banner[rotation=6] +176:7,minecraft:black_banner[rotation=7] +176:8,minecraft:black_banner[rotation=8] +176:9,minecraft:black_banner[rotation=9] +176:10,minecraft:black_banner[rotation=10] +176:11,minecraft:black_banner[rotation=11] +176:12,minecraft:black_banner[rotation=12] +176:13,minecraft:black_banner[rotation=13] +176:14,minecraft:black_banner[rotation=14] +176:15,minecraft:black_banner[rotation=15] +177:0,minecraft:black_wall_banner[facing=north] +177:3,minecraft:black_wall_banner[facing=south] +177:4,minecraft:black_wall_banner[facing=west] +177:5,minecraft:black_wall_banner[facing=east] +177:9,minecraft:black_wall_banner[facing=south] +177:10,minecraft:black_wall_banner[facing=west] +177:11,minecraft:black_wall_banner[facing=east] +177:15,minecraft:black_wall_banner[facing=south] +178:0,minecraft:daylight_detector[inverted=true,power=0] +178:1,minecraft:daylight_detector[inverted=true,power=1] +178:2,minecraft:daylight_detector[inverted=true,power=2] +178:3,minecraft:daylight_detector[inverted=true,power=3] +178:4,minecraft:daylight_detector[inverted=true,power=4] +178:5,minecraft:daylight_detector[inverted=true,power=5] +178:6,minecraft:daylight_detector[inverted=true,power=6] +178:7,minecraft:daylight_detector[inverted=true,power=7] +178:8,minecraft:daylight_detector[inverted=true,power=8] +178:9,minecraft:daylight_detector[inverted=true,power=9] +178:10,minecraft:daylight_detector[inverted=true,power=10] +178:11,minecraft:daylight_detector[inverted=true,power=11] +178:12,minecraft:daylight_detector[inverted=true,power=12] +178:13,minecraft:daylight_detector[inverted=true,power=13] +178:14,minecraft:daylight_detector[inverted=true,power=14] +178:15,minecraft:daylight_detector[inverted=true,power=15] +179:0,minecraft:red_sandstone +179:1,minecraft:chiseled_red_sandstone +179:2,minecraft:cut_red_sandstone +180:0,minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +180:1,minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +180:2,minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +180:3,minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +180:4,minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +180:5,minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +180:6,minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +180:7,minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +180:9,minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +180:10,minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +180:11,minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +180:12,minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false] +180:13,minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false] +180:14,minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false] +180:15,minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false] +181:0,minecraft:red_sandstone_slab[type=double,waterlogged=false] +181:8,minecraft:smooth_red_sandstone +181:9,minecraft:smooth_red_sandstone +181:10,minecraft:smooth_red_sandstone +181:11,minecraft:smooth_red_sandstone +181:12,minecraft:smooth_red_sandstone +181:13,minecraft:smooth_red_sandstone +181:14,minecraft:smooth_red_sandstone +181:15,minecraft:smooth_red_sandstone +182:0,minecraft:red_sandstone_slab[type=bottom,waterlogged=false] +182:8,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:9,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:10,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:11,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:12,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:13,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:14,minecraft:red_sandstone_slab[type=top,waterlogged=false] +182:15,minecraft:red_sandstone_slab[type=top,waterlogged=false] +183:0,minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false] +183:1,minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false] +183:2,minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false] +183:3,minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false] +183:4,minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false] +183:5,minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false] +183:6,minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false] +183:7,minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false] +183:8,minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true] +183:9,minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true] +183:10,minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true] +183:11,minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true] +183:12,minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true] +183:13,minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true] +183:14,minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true] +183:15,minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true] +184:0,minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false] +184:1,minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false] +184:2,minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false] +184:3,minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false] +184:4,minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false] +184:5,minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false] +184:6,minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false] +184:7,minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false] +184:8,minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true] +184:9,minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true] +184:10,minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true] +184:11,minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true] +184:12,minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true] +184:13,minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true] +184:14,minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true] +184:15,minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true] +185:0,minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false] +185:1,minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false] +185:2,minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false] +185:3,minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false] +185:4,minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false] +185:5,minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false] +185:6,minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false] +185:7,minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false] +185:8,minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true] +185:9,minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true] +185:10,minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true] +185:11,minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true] +185:12,minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true] +185:13,minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true] +185:14,minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true] +185:15,minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true] +186:0,minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false] +186:1,minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false] +186:2,minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false] +186:3,minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false] +186:4,minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false] +186:5,minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false] +186:6,minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false] +186:7,minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false] +186:8,minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true] +186:9,minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true] +186:10,minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true] +186:11,minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true] +186:12,minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true] +186:13,minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true] +186:14,minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true] +186:15,minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true] +187:0,minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false] +187:1,minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false] +187:2,minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false] +187:3,minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false] +187:4,minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false] +187:5,minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false] +187:6,minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false] +187:7,minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false] +187:8,minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true] +187:9,minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true] +187:10,minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true] +187:11,minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true] +187:12,minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true] +187:13,minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true] +187:14,minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true] +187:15,minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true] +188:0,minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false] +189:0,minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false] +190:0,minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false] +191:0,minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false] +192:0,minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false] +193:0,minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false] +193:1,minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false] +193:2,minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false] +193:3,minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false] +193:4,minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false] +193:5,minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false] +193:6,minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false] +193:7,minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false] +193:8,minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] +193:9,minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] +193:10,minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] +193:11,minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] +193:12,minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false] +193:13,minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false] +193:14,minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true] +193:15,minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true] +194:0,minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false] +194:1,minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false] +194:2,minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false] +194:3,minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false] +194:4,minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false] +194:5,minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false] +194:6,minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false] +194:7,minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false] +194:8,minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] +194:9,minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] +194:10,minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] +194:11,minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] +194:12,minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false] +194:13,minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false] +194:14,minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true] +194:15,minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true] +195:0,minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false] +195:1,minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false] +195:2,minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false] +195:3,minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false] +195:4,minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false] +195:5,minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false] +195:6,minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false] +195:7,minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false] +195:8,minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] +195:9,minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] +195:10,minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] +195:11,minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] +195:12,minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false] +195:13,minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false] +195:14,minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true] +195:15,minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true] +196:0,minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false] +196:1,minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false] +196:2,minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false] +196:3,minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false] +196:4,minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false] +196:5,minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false] +196:6,minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false] +196:7,minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false] +196:8,minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] +196:9,minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] +196:10,minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] +196:11,minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] +196:12,minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false] +196:13,minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false] +196:14,minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true] +196:15,minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true] +197:0,minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false] +197:1,minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false] +197:2,minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false] +197:3,minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false] +197:4,minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false] +197:5,minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false] +197:6,minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false] +197:7,minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false] +197:8,minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] +197:9,minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] +197:10,minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] +197:11,minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] +197:12,minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false] +197:13,minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false] +197:14,minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true] +197:15,minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true] +198:0,minecraft:end_rod[facing=down] +198:1,minecraft:end_rod[facing=up] +198:2,minecraft:end_rod[facing=north] +198:3,minecraft:end_rod[facing=south] +198:4,minecraft:end_rod[facing=west] +198:5,minecraft:end_rod[facing=east] +198:7,minecraft:end_rod[facing=up] +198:8,minecraft:end_rod[facing=north] +198:9,minecraft:end_rod[facing=south] +198:10,minecraft:end_rod[facing=west] +198:11,minecraft:end_rod[facing=east] +198:13,minecraft:end_rod[facing=up] +198:14,minecraft:end_rod[facing=north] +198:15,minecraft:end_rod[facing=south] +199:0,minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false] +200:0,minecraft:chorus_flower[age=0] +200:1,minecraft:chorus_flower[age=1] +200:2,minecraft:chorus_flower[age=2] +200:3,minecraft:chorus_flower[age=3] +200:4,minecraft:chorus_flower[age=4] +200:5,minecraft:chorus_flower[age=5] +200:6,minecraft:air +200:7,minecraft:air +200:8,minecraft:air +200:9,minecraft:air +200:10,minecraft:air +200:11,minecraft:air +200:12,minecraft:air +200:13,minecraft:air +200:14,minecraft:air +200:15,minecraft:air +201:0,minecraft:purpur_block +202:0,minecraft:purpur_pillar[axis=y] +202:4,minecraft:purpur_pillar[axis=x] +202:5,minecraft:purpur_pillar[axis=x] +202:6,minecraft:purpur_pillar[axis=x] +202:7,minecraft:purpur_pillar[axis=x] +202:8,minecraft:purpur_pillar[axis=z] +202:9,minecraft:purpur_pillar[axis=z] +202:10,minecraft:purpur_pillar[axis=z] +202:11,minecraft:purpur_pillar[axis=z] +203:0,minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false] +203:1,minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +203:2,minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +203:3,minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +203:4,minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false] +203:5,minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false] +203:6,minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false] +203:7,minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false] +203:9,minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false] +203:10,minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false] +203:11,minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false] +203:12,minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false] +203:13,minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false] +203:14,minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false] +203:15,minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false] +204:0,minecraft:purpur_slab[type=double,waterlogged=false] +205:0,minecraft:purpur_slab[type=bottom,waterlogged=false] +205:8,minecraft:purpur_slab[type=top,waterlogged=false] +205:9,minecraft:purpur_slab[type=top,waterlogged=false] +205:10,minecraft:purpur_slab[type=top,waterlogged=false] +205:11,minecraft:purpur_slab[type=top,waterlogged=false] +205:12,minecraft:purpur_slab[type=top,waterlogged=false] +205:13,minecraft:purpur_slab[type=top,waterlogged=false] +205:14,minecraft:purpur_slab[type=top,waterlogged=false] +205:15,minecraft:purpur_slab[type=top,waterlogged=false] +206:0,minecraft:end_stone_bricks +207:0,minecraft:beetroots[age=0] +207:1,minecraft:beetroots[age=1] +207:2,minecraft:beetroots[age=2] +207:3,minecraft:beetroots[age=3] +207:4,minecraft:air +207:5,minecraft:air +207:6,minecraft:air +207:7,minecraft:air +207:8,minecraft:air +207:9,minecraft:air +207:10,minecraft:air +207:11,minecraft:air +207:12,minecraft:air +207:13,minecraft:air +207:14,minecraft:air +207:15,minecraft:air +208:0,minecraft:grass_path +209:0,minecraft:end_gateway +210:0,minecraft:repeating_command_block[conditional=false,facing=down] +210:1,minecraft:repeating_command_block[conditional=false,facing=up] +210:2,minecraft:repeating_command_block[conditional=false,facing=north] +210:3,minecraft:repeating_command_block[conditional=false,facing=south] +210:4,minecraft:repeating_command_block[conditional=false,facing=west] +210:5,minecraft:repeating_command_block[conditional=false,facing=east] +210:7,minecraft:repeating_command_block[conditional=false,facing=up] +210:8,minecraft:repeating_command_block[conditional=true,facing=down] +210:9,minecraft:repeating_command_block[conditional=true,facing=up] +210:10,minecraft:repeating_command_block[conditional=true,facing=north] +210:11,minecraft:repeating_command_block[conditional=true,facing=south] +210:12,minecraft:repeating_command_block[conditional=true,facing=west] +210:13,minecraft:repeating_command_block[conditional=true,facing=east] +210:14,minecraft:repeating_command_block[conditional=true,facing=down] +210:15,minecraft:repeating_command_block[conditional=true,facing=up] +211:0,minecraft:chain_command_block[conditional=false,facing=down] +211:1,minecraft:chain_command_block[conditional=false,facing=up] +211:2,minecraft:chain_command_block[conditional=false,facing=north] +211:3,minecraft:chain_command_block[conditional=false,facing=south] +211:4,minecraft:chain_command_block[conditional=false,facing=west] +211:5,minecraft:chain_command_block[conditional=false,facing=east] +211:7,minecraft:chain_command_block[conditional=false,facing=up] +211:8,minecraft:chain_command_block[conditional=true,facing=down] +211:9,minecraft:chain_command_block[conditional=true,facing=up] +211:10,minecraft:chain_command_block[conditional=true,facing=north] +211:11,minecraft:chain_command_block[conditional=true,facing=south] +211:12,minecraft:chain_command_block[conditional=true,facing=west] +211:13,minecraft:chain_command_block[conditional=true,facing=east] +211:14,minecraft:chain_command_block[conditional=true,facing=down] +211:15,minecraft:chain_command_block[conditional=true,facing=up] +212:0,minecraft:frosted_ice[age=0] +212:1,minecraft:frosted_ice[age=1] +212:2,minecraft:frosted_ice[age=2] +212:3,minecraft:frosted_ice[age=3] +212:4,minecraft:frosted_ice[age=3] +212:5,minecraft:frosted_ice[age=3] +212:6,minecraft:frosted_ice[age=3] +212:7,minecraft:frosted_ice[age=3] +212:8,minecraft:frosted_ice[age=3] +212:9,minecraft:frosted_ice[age=3] +212:10,minecraft:frosted_ice[age=3] +212:11,minecraft:frosted_ice[age=3] +212:12,minecraft:frosted_ice[age=3] +212:13,minecraft:frosted_ice[age=3] +212:14,minecraft:frosted_ice[age=3] +212:15,minecraft:frosted_ice[age=3] +213:0,minecraft:magma_block +214:0,minecraft:nether_wart_block +215:0,minecraft:red_nether_bricks +216:0,minecraft:bone_block[axis=y] +216:4,minecraft:bone_block[axis=x] +216:5,minecraft:bone_block[axis=x] +216:6,minecraft:bone_block[axis=x] +216:7,minecraft:bone_block[axis=x] +216:8,minecraft:bone_block[axis=z] +216:9,minecraft:bone_block[axis=z] +216:10,minecraft:bone_block[axis=z] +216:11,minecraft:bone_block[axis=z] +217:0,minecraft:structure_void +218:0,minecraft:observer[facing=down,powered=false] +218:1,minecraft:observer[facing=up,powered=false] +218:2,minecraft:observer[facing=north,powered=false] +218:3,minecraft:observer[facing=south,powered=false] +218:4,minecraft:observer[facing=west,powered=false] +218:5,minecraft:observer[facing=east,powered=false] +218:7,minecraft:observer[facing=up,powered=false] +218:9,minecraft:observer[facing=up,powered=false] +218:10,minecraft:observer[facing=north,powered=false] +218:11,minecraft:observer[facing=south,powered=false] +218:12,minecraft:observer[facing=west,powered=false] +218:13,minecraft:observer[facing=east,powered=false] +218:15,minecraft:observer[facing=up,powered=false] +219:0,minecraft:white_shulker_box[facing=down] +219:1,minecraft:white_shulker_box[facing=up] +219:2,minecraft:white_shulker_box[facing=north] +219:3,minecraft:white_shulker_box[facing=south] +219:4,minecraft:white_shulker_box[facing=west] +219:5,minecraft:white_shulker_box[facing=east] +219:7,minecraft:white_shulker_box[facing=up] +219:8,minecraft:white_shulker_box[facing=north] +219:9,minecraft:white_shulker_box[facing=south] +219:10,minecraft:white_shulker_box[facing=west] +219:11,minecraft:white_shulker_box[facing=east] +219:13,minecraft:white_shulker_box[facing=up] +219:14,minecraft:white_shulker_box[facing=north] +219:15,minecraft:white_shulker_box[facing=south] +220:0,minecraft:orange_shulker_box[facing=down] +220:1,minecraft:orange_shulker_box[facing=up] +220:2,minecraft:orange_shulker_box[facing=north] +220:3,minecraft:orange_shulker_box[facing=south] +220:4,minecraft:orange_shulker_box[facing=west] +220:5,minecraft:orange_shulker_box[facing=east] +220:7,minecraft:orange_shulker_box[facing=up] +220:8,minecraft:orange_shulker_box[facing=north] +220:9,minecraft:orange_shulker_box[facing=south] +220:10,minecraft:orange_shulker_box[facing=west] +220:11,minecraft:orange_shulker_box[facing=east] +220:13,minecraft:orange_shulker_box[facing=up] +220:14,minecraft:orange_shulker_box[facing=north] +220:15,minecraft:orange_shulker_box[facing=south] +221:0,minecraft:magenta_shulker_box[facing=down] +221:1,minecraft:magenta_shulker_box[facing=up] +221:2,minecraft:magenta_shulker_box[facing=north] +221:3,minecraft:magenta_shulker_box[facing=south] +221:4,minecraft:magenta_shulker_box[facing=west] +221:5,minecraft:magenta_shulker_box[facing=east] +221:7,minecraft:magenta_shulker_box[facing=up] +221:8,minecraft:magenta_shulker_box[facing=north] +221:9,minecraft:magenta_shulker_box[facing=south] +221:10,minecraft:magenta_shulker_box[facing=west] +221:11,minecraft:magenta_shulker_box[facing=east] +221:13,minecraft:magenta_shulker_box[facing=up] +221:14,minecraft:magenta_shulker_box[facing=north] +221:15,minecraft:magenta_shulker_box[facing=south] +222:0,minecraft:light_blue_shulker_box[facing=down] +222:1,minecraft:light_blue_shulker_box[facing=up] +222:2,minecraft:light_blue_shulker_box[facing=north] +222:3,minecraft:light_blue_shulker_box[facing=south] +222:4,minecraft:light_blue_shulker_box[facing=west] +222:5,minecraft:light_blue_shulker_box[facing=east] +222:7,minecraft:light_blue_shulker_box[facing=up] +222:8,minecraft:light_blue_shulker_box[facing=north] +222:9,minecraft:light_blue_shulker_box[facing=south] +222:10,minecraft:light_blue_shulker_box[facing=west] +222:11,minecraft:light_blue_shulker_box[facing=east] +222:13,minecraft:light_blue_shulker_box[facing=up] +222:14,minecraft:light_blue_shulker_box[facing=north] +222:15,minecraft:light_blue_shulker_box[facing=south] +223:0,minecraft:yellow_shulker_box[facing=down] +223:1,minecraft:yellow_shulker_box[facing=up] +223:2,minecraft:yellow_shulker_box[facing=north] +223:3,minecraft:yellow_shulker_box[facing=south] +223:4,minecraft:yellow_shulker_box[facing=west] +223:5,minecraft:yellow_shulker_box[facing=east] +223:7,minecraft:yellow_shulker_box[facing=up] +223:8,minecraft:yellow_shulker_box[facing=north] +223:9,minecraft:yellow_shulker_box[facing=south] +223:10,minecraft:yellow_shulker_box[facing=west] +223:11,minecraft:yellow_shulker_box[facing=east] +223:13,minecraft:yellow_shulker_box[facing=up] +223:14,minecraft:yellow_shulker_box[facing=north] +223:15,minecraft:yellow_shulker_box[facing=south] +224:0,minecraft:lime_shulker_box[facing=down] +224:1,minecraft:lime_shulker_box[facing=up] +224:2,minecraft:lime_shulker_box[facing=north] +224:3,minecraft:lime_shulker_box[facing=south] +224:4,minecraft:lime_shulker_box[facing=west] +224:5,minecraft:lime_shulker_box[facing=east] +224:7,minecraft:lime_shulker_box[facing=up] +224:8,minecraft:lime_shulker_box[facing=north] +224:9,minecraft:lime_shulker_box[facing=south] +224:10,minecraft:lime_shulker_box[facing=west] +224:11,minecraft:lime_shulker_box[facing=east] +224:13,minecraft:lime_shulker_box[facing=up] +224:14,minecraft:lime_shulker_box[facing=north] +224:15,minecraft:lime_shulker_box[facing=south] +225:0,minecraft:pink_shulker_box[facing=down] +225:1,minecraft:pink_shulker_box[facing=up] +225:2,minecraft:pink_shulker_box[facing=north] +225:3,minecraft:pink_shulker_box[facing=south] +225:4,minecraft:pink_shulker_box[facing=west] +225:5,minecraft:pink_shulker_box[facing=east] +225:7,minecraft:pink_shulker_box[facing=up] +225:8,minecraft:pink_shulker_box[facing=north] +225:9,minecraft:pink_shulker_box[facing=south] +225:10,minecraft:pink_shulker_box[facing=west] +225:11,minecraft:pink_shulker_box[facing=east] +225:13,minecraft:pink_shulker_box[facing=up] +225:14,minecraft:pink_shulker_box[facing=north] +225:15,minecraft:pink_shulker_box[facing=south] +226:0,minecraft:gray_shulker_box[facing=down] +226:1,minecraft:gray_shulker_box[facing=up] +226:2,minecraft:gray_shulker_box[facing=north] +226:3,minecraft:gray_shulker_box[facing=south] +226:4,minecraft:gray_shulker_box[facing=west] +226:5,minecraft:gray_shulker_box[facing=east] +226:7,minecraft:gray_shulker_box[facing=up] +226:8,minecraft:gray_shulker_box[facing=north] +226:9,minecraft:gray_shulker_box[facing=south] +226:10,minecraft:gray_shulker_box[facing=west] +226:11,minecraft:gray_shulker_box[facing=east] +226:13,minecraft:gray_shulker_box[facing=up] +226:14,minecraft:gray_shulker_box[facing=north] +226:15,minecraft:gray_shulker_box[facing=south] +227:0,minecraft:light_gray_shulker_box[facing=down] +227:1,minecraft:light_gray_shulker_box[facing=up] +227:2,minecraft:light_gray_shulker_box[facing=north] +227:3,minecraft:light_gray_shulker_box[facing=south] +227:4,minecraft:light_gray_shulker_box[facing=west] +227:5,minecraft:light_gray_shulker_box[facing=east] +227:7,minecraft:light_gray_shulker_box[facing=up] +227:8,minecraft:light_gray_shulker_box[facing=north] +227:9,minecraft:light_gray_shulker_box[facing=south] +227:10,minecraft:light_gray_shulker_box[facing=west] +227:11,minecraft:light_gray_shulker_box[facing=east] +227:13,minecraft:light_gray_shulker_box[facing=up] +227:14,minecraft:light_gray_shulker_box[facing=north] +227:15,minecraft:light_gray_shulker_box[facing=south] +228:0,minecraft:cyan_shulker_box[facing=down] +228:1,minecraft:cyan_shulker_box[facing=up] +228:2,minecraft:cyan_shulker_box[facing=north] +228:3,minecraft:cyan_shulker_box[facing=south] +228:4,minecraft:cyan_shulker_box[facing=west] +228:5,minecraft:cyan_shulker_box[facing=east] +228:7,minecraft:cyan_shulker_box[facing=up] +228:8,minecraft:cyan_shulker_box[facing=north] +228:9,minecraft:cyan_shulker_box[facing=south] +228:10,minecraft:cyan_shulker_box[facing=west] +228:11,minecraft:cyan_shulker_box[facing=east] +228:13,minecraft:cyan_shulker_box[facing=up] +228:14,minecraft:cyan_shulker_box[facing=north] +228:15,minecraft:cyan_shulker_box[facing=south] +229:0,minecraft:shulker_box[facing=down] +229:1,minecraft:shulker_box[facing=up] +229:2,minecraft:shulker_box[facing=north] +229:3,minecraft:shulker_box[facing=south] +229:4,minecraft:shulker_box[facing=west] +229:5,minecraft:shulker_box[facing=east] +229:7,minecraft:shulker_box[facing=up] +229:8,minecraft:shulker_box[facing=north] +229:9,minecraft:shulker_box[facing=south] +229:10,minecraft:shulker_box[facing=west] +229:11,minecraft:shulker_box[facing=east] +229:13,minecraft:shulker_box[facing=up] +229:14,minecraft:shulker_box[facing=north] +229:15,minecraft:shulker_box[facing=south] +230:0,minecraft:blue_shulker_box[facing=down] +230:1,minecraft:blue_shulker_box[facing=up] +230:2,minecraft:blue_shulker_box[facing=north] +230:3,minecraft:blue_shulker_box[facing=south] +230:4,minecraft:blue_shulker_box[facing=west] +230:5,minecraft:blue_shulker_box[facing=east] +230:7,minecraft:blue_shulker_box[facing=up] +230:8,minecraft:blue_shulker_box[facing=north] +230:9,minecraft:blue_shulker_box[facing=south] +230:10,minecraft:blue_shulker_box[facing=west] +230:11,minecraft:blue_shulker_box[facing=east] +230:13,minecraft:blue_shulker_box[facing=up] +230:14,minecraft:blue_shulker_box[facing=north] +230:15,minecraft:blue_shulker_box[facing=south] +231:0,minecraft:brown_shulker_box[facing=down] +231:1,minecraft:brown_shulker_box[facing=up] +231:2,minecraft:brown_shulker_box[facing=north] +231:3,minecraft:brown_shulker_box[facing=south] +231:4,minecraft:brown_shulker_box[facing=west] +231:5,minecraft:brown_shulker_box[facing=east] +231:7,minecraft:brown_shulker_box[facing=up] +231:8,minecraft:brown_shulker_box[facing=north] +231:9,minecraft:brown_shulker_box[facing=south] +231:10,minecraft:brown_shulker_box[facing=west] +231:11,minecraft:brown_shulker_box[facing=east] +231:13,minecraft:brown_shulker_box[facing=up] +231:14,minecraft:brown_shulker_box[facing=north] +231:15,minecraft:brown_shulker_box[facing=south] +232:0,minecraft:green_shulker_box[facing=down] +232:1,minecraft:green_shulker_box[facing=up] +232:2,minecraft:green_shulker_box[facing=north] +232:3,minecraft:green_shulker_box[facing=south] +232:4,minecraft:green_shulker_box[facing=west] +232:5,minecraft:green_shulker_box[facing=east] +232:7,minecraft:green_shulker_box[facing=up] +232:8,minecraft:green_shulker_box[facing=north] +232:9,minecraft:green_shulker_box[facing=south] +232:10,minecraft:green_shulker_box[facing=west] +232:11,minecraft:green_shulker_box[facing=east] +232:13,minecraft:green_shulker_box[facing=up] +232:14,minecraft:green_shulker_box[facing=north] +232:15,minecraft:green_shulker_box[facing=south] +233:0,minecraft:red_shulker_box[facing=down] +233:1,minecraft:red_shulker_box[facing=up] +233:2,minecraft:red_shulker_box[facing=north] +233:3,minecraft:red_shulker_box[facing=south] +233:4,minecraft:red_shulker_box[facing=west] +233:5,minecraft:red_shulker_box[facing=east] +233:7,minecraft:red_shulker_box[facing=up] +233:8,minecraft:red_shulker_box[facing=north] +233:9,minecraft:red_shulker_box[facing=south] +233:10,minecraft:red_shulker_box[facing=west] +233:11,minecraft:red_shulker_box[facing=east] +233:13,minecraft:red_shulker_box[facing=up] +233:14,minecraft:red_shulker_box[facing=north] +233:15,minecraft:red_shulker_box[facing=south] +234:0,minecraft:black_shulker_box[facing=down] +234:1,minecraft:black_shulker_box[facing=up] +234:2,minecraft:black_shulker_box[facing=north] +234:3,minecraft:black_shulker_box[facing=south] +234:4,minecraft:black_shulker_box[facing=west] +234:5,minecraft:black_shulker_box[facing=east] +234:7,minecraft:black_shulker_box[facing=up] +234:8,minecraft:black_shulker_box[facing=north] +234:9,minecraft:black_shulker_box[facing=south] +234:10,minecraft:black_shulker_box[facing=west] +234:11,minecraft:black_shulker_box[facing=east] +234:13,minecraft:black_shulker_box[facing=up] +234:14,minecraft:black_shulker_box[facing=north] +234:15,minecraft:black_shulker_box[facing=south] +235:0,minecraft:white_glazed_terracotta[facing=south] +235:1,minecraft:white_glazed_terracotta[facing=west] +235:2,minecraft:white_glazed_terracotta[facing=north] +235:3,minecraft:white_glazed_terracotta[facing=east] +235:5,minecraft:white_glazed_terracotta[facing=west] +235:6,minecraft:white_glazed_terracotta[facing=north] +235:7,minecraft:white_glazed_terracotta[facing=east] +235:9,minecraft:white_glazed_terracotta[facing=west] +235:10,minecraft:white_glazed_terracotta[facing=north] +235:11,minecraft:white_glazed_terracotta[facing=east] +235:13,minecraft:white_glazed_terracotta[facing=west] +235:14,minecraft:white_glazed_terracotta[facing=north] +235:15,minecraft:white_glazed_terracotta[facing=east] +236:0,minecraft:orange_glazed_terracotta[facing=south] +236:1,minecraft:orange_glazed_terracotta[facing=west] +236:2,minecraft:orange_glazed_terracotta[facing=north] +236:3,minecraft:orange_glazed_terracotta[facing=east] +236:5,minecraft:orange_glazed_terracotta[facing=west] +236:6,minecraft:orange_glazed_terracotta[facing=north] +236:7,minecraft:orange_glazed_terracotta[facing=east] +236:9,minecraft:orange_glazed_terracotta[facing=west] +236:10,minecraft:orange_glazed_terracotta[facing=north] +236:11,minecraft:orange_glazed_terracotta[facing=east] +236:13,minecraft:orange_glazed_terracotta[facing=west] +236:14,minecraft:orange_glazed_terracotta[facing=north] +236:15,minecraft:orange_glazed_terracotta[facing=east] +237:0,minecraft:magenta_glazed_terracotta[facing=south] +237:1,minecraft:magenta_glazed_terracotta[facing=west] +237:2,minecraft:magenta_glazed_terracotta[facing=north] +237:3,minecraft:magenta_glazed_terracotta[facing=east] +237:5,minecraft:magenta_glazed_terracotta[facing=west] +237:6,minecraft:magenta_glazed_terracotta[facing=north] +237:7,minecraft:magenta_glazed_terracotta[facing=east] +237:9,minecraft:magenta_glazed_terracotta[facing=west] +237:10,minecraft:magenta_glazed_terracotta[facing=north] +237:11,minecraft:magenta_glazed_terracotta[facing=east] +237:13,minecraft:magenta_glazed_terracotta[facing=west] +237:14,minecraft:magenta_glazed_terracotta[facing=north] +237:15,minecraft:magenta_glazed_terracotta[facing=east] +238:0,minecraft:light_blue_glazed_terracotta[facing=south] +238:1,minecraft:light_blue_glazed_terracotta[facing=west] +238:2,minecraft:light_blue_glazed_terracotta[facing=north] +238:3,minecraft:light_blue_glazed_terracotta[facing=east] +238:5,minecraft:light_blue_glazed_terracotta[facing=west] +238:6,minecraft:light_blue_glazed_terracotta[facing=north] +238:7,minecraft:light_blue_glazed_terracotta[facing=east] +238:9,minecraft:light_blue_glazed_terracotta[facing=west] +238:10,minecraft:light_blue_glazed_terracotta[facing=north] +238:11,minecraft:light_blue_glazed_terracotta[facing=east] +238:13,minecraft:light_blue_glazed_terracotta[facing=west] +238:14,minecraft:light_blue_glazed_terracotta[facing=north] +238:15,minecraft:light_blue_glazed_terracotta[facing=east] +239:0,minecraft:yellow_glazed_terracotta[facing=south] +239:1,minecraft:yellow_glazed_terracotta[facing=west] +239:2,minecraft:yellow_glazed_terracotta[facing=north] +239:3,minecraft:yellow_glazed_terracotta[facing=east] +239:5,minecraft:yellow_glazed_terracotta[facing=west] +239:6,minecraft:yellow_glazed_terracotta[facing=north] +239:7,minecraft:yellow_glazed_terracotta[facing=east] +239:9,minecraft:yellow_glazed_terracotta[facing=west] +239:10,minecraft:yellow_glazed_terracotta[facing=north] +239:11,minecraft:yellow_glazed_terracotta[facing=east] +239:13,minecraft:yellow_glazed_terracotta[facing=west] +239:14,minecraft:yellow_glazed_terracotta[facing=north] +239:15,minecraft:yellow_glazed_terracotta[facing=east] +240:0,minecraft:lime_glazed_terracotta[facing=south] +240:1,minecraft:lime_glazed_terracotta[facing=west] +240:2,minecraft:lime_glazed_terracotta[facing=north] +240:3,minecraft:lime_glazed_terracotta[facing=east] +240:5,minecraft:lime_glazed_terracotta[facing=west] +240:6,minecraft:lime_glazed_terracotta[facing=north] +240:7,minecraft:lime_glazed_terracotta[facing=east] +240:9,minecraft:lime_glazed_terracotta[facing=west] +240:10,minecraft:lime_glazed_terracotta[facing=north] +240:11,minecraft:lime_glazed_terracotta[facing=east] +240:13,minecraft:lime_glazed_terracotta[facing=west] +240:14,minecraft:lime_glazed_terracotta[facing=north] +240:15,minecraft:lime_glazed_terracotta[facing=east] +241:0,minecraft:pink_glazed_terracotta[facing=south] +241:1,minecraft:pink_glazed_terracotta[facing=west] +241:2,minecraft:pink_glazed_terracotta[facing=north] +241:3,minecraft:pink_glazed_terracotta[facing=east] +241:5,minecraft:pink_glazed_terracotta[facing=west] +241:6,minecraft:pink_glazed_terracotta[facing=north] +241:7,minecraft:pink_glazed_terracotta[facing=east] +241:9,minecraft:pink_glazed_terracotta[facing=west] +241:10,minecraft:pink_glazed_terracotta[facing=north] +241:11,minecraft:pink_glazed_terracotta[facing=east] +241:13,minecraft:pink_glazed_terracotta[facing=west] +241:14,minecraft:pink_glazed_terracotta[facing=north] +241:15,minecraft:pink_glazed_terracotta[facing=east] +242:0,minecraft:gray_glazed_terracotta[facing=south] +242:1,minecraft:gray_glazed_terracotta[facing=west] +242:2,minecraft:gray_glazed_terracotta[facing=north] +242:3,minecraft:gray_glazed_terracotta[facing=east] +242:5,minecraft:gray_glazed_terracotta[facing=west] +242:6,minecraft:gray_glazed_terracotta[facing=north] +242:7,minecraft:gray_glazed_terracotta[facing=east] +242:9,minecraft:gray_glazed_terracotta[facing=west] +242:10,minecraft:gray_glazed_terracotta[facing=north] +242:11,minecraft:gray_glazed_terracotta[facing=east] +242:13,minecraft:gray_glazed_terracotta[facing=west] +242:14,minecraft:gray_glazed_terracotta[facing=north] +242:15,minecraft:gray_glazed_terracotta[facing=east] +243:0,minecraft:light_gray_glazed_terracotta[facing=south] +243:1,minecraft:light_gray_glazed_terracotta[facing=west] +243:2,minecraft:light_gray_glazed_terracotta[facing=north] +243:3,minecraft:light_gray_glazed_terracotta[facing=east] +243:5,minecraft:light_gray_glazed_terracotta[facing=west] +243:6,minecraft:light_gray_glazed_terracotta[facing=north] +243:7,minecraft:light_gray_glazed_terracotta[facing=east] +243:9,minecraft:light_gray_glazed_terracotta[facing=west] +243:10,minecraft:light_gray_glazed_terracotta[facing=north] +243:11,minecraft:light_gray_glazed_terracotta[facing=east] +243:13,minecraft:light_gray_glazed_terracotta[facing=west] +243:14,minecraft:light_gray_glazed_terracotta[facing=north] +243:15,minecraft:light_gray_glazed_terracotta[facing=east] +244:0,minecraft:cyan_glazed_terracotta[facing=south] +244:1,minecraft:cyan_glazed_terracotta[facing=west] +244:2,minecraft:cyan_glazed_terracotta[facing=north] +244:3,minecraft:cyan_glazed_terracotta[facing=east] +244:5,minecraft:cyan_glazed_terracotta[facing=west] +244:6,minecraft:cyan_glazed_terracotta[facing=north] +244:7,minecraft:cyan_glazed_terracotta[facing=east] +244:9,minecraft:cyan_glazed_terracotta[facing=west] +244:10,minecraft:cyan_glazed_terracotta[facing=north] +244:11,minecraft:cyan_glazed_terracotta[facing=east] +244:13,minecraft:cyan_glazed_terracotta[facing=west] +244:14,minecraft:cyan_glazed_terracotta[facing=north] +244:15,minecraft:cyan_glazed_terracotta[facing=east] +245:0,minecraft:purple_glazed_terracotta[facing=south] +245:1,minecraft:purple_glazed_terracotta[facing=west] +245:2,minecraft:purple_glazed_terracotta[facing=north] +245:3,minecraft:purple_glazed_terracotta[facing=east] +245:5,minecraft:purple_glazed_terracotta[facing=west] +245:6,minecraft:purple_glazed_terracotta[facing=north] +245:7,minecraft:purple_glazed_terracotta[facing=east] +245:9,minecraft:purple_glazed_terracotta[facing=west] +245:10,minecraft:purple_glazed_terracotta[facing=north] +245:11,minecraft:purple_glazed_terracotta[facing=east] +245:13,minecraft:purple_glazed_terracotta[facing=west] +245:14,minecraft:purple_glazed_terracotta[facing=north] +245:15,minecraft:purple_glazed_terracotta[facing=east] +246:0,minecraft:blue_glazed_terracotta[facing=south] +246:1,minecraft:blue_glazed_terracotta[facing=west] +246:2,minecraft:blue_glazed_terracotta[facing=north] +246:3,minecraft:blue_glazed_terracotta[facing=east] +246:5,minecraft:blue_glazed_terracotta[facing=west] +246:6,minecraft:blue_glazed_terracotta[facing=north] +246:7,minecraft:blue_glazed_terracotta[facing=east] +246:9,minecraft:blue_glazed_terracotta[facing=west] +246:10,minecraft:blue_glazed_terracotta[facing=north] +246:11,minecraft:blue_glazed_terracotta[facing=east] +246:13,minecraft:blue_glazed_terracotta[facing=west] +246:14,minecraft:blue_glazed_terracotta[facing=north] +246:15,minecraft:blue_glazed_terracotta[facing=east] +247:0,minecraft:brown_glazed_terracotta[facing=south] +247:1,minecraft:brown_glazed_terracotta[facing=west] +247:2,minecraft:brown_glazed_terracotta[facing=north] +247:3,minecraft:brown_glazed_terracotta[facing=east] +247:5,minecraft:brown_glazed_terracotta[facing=west] +247:6,minecraft:brown_glazed_terracotta[facing=north] +247:7,minecraft:brown_glazed_terracotta[facing=east] +247:9,minecraft:brown_glazed_terracotta[facing=west] +247:10,minecraft:brown_glazed_terracotta[facing=north] +247:11,minecraft:brown_glazed_terracotta[facing=east] +247:13,minecraft:brown_glazed_terracotta[facing=west] +247:14,minecraft:brown_glazed_terracotta[facing=north] +247:15,minecraft:brown_glazed_terracotta[facing=east] +248:0,minecraft:green_glazed_terracotta[facing=south] +248:1,minecraft:green_glazed_terracotta[facing=west] +248:2,minecraft:green_glazed_terracotta[facing=north] +248:3,minecraft:green_glazed_terracotta[facing=east] +248:5,minecraft:green_glazed_terracotta[facing=west] +248:6,minecraft:green_glazed_terracotta[facing=north] +248:7,minecraft:green_glazed_terracotta[facing=east] +248:9,minecraft:green_glazed_terracotta[facing=west] +248:10,minecraft:green_glazed_terracotta[facing=north] +248:11,minecraft:green_glazed_terracotta[facing=east] +248:13,minecraft:green_glazed_terracotta[facing=west] +248:14,minecraft:green_glazed_terracotta[facing=north] +248:15,minecraft:green_glazed_terracotta[facing=east] +249:0,minecraft:red_glazed_terracotta[facing=south] +249:1,minecraft:red_glazed_terracotta[facing=west] +249:2,minecraft:red_glazed_terracotta[facing=north] +249:3,minecraft:red_glazed_terracotta[facing=east] +249:5,minecraft:red_glazed_terracotta[facing=west] +249:6,minecraft:red_glazed_terracotta[facing=north] +249:7,minecraft:red_glazed_terracotta[facing=east] +249:9,minecraft:red_glazed_terracotta[facing=west] +249:10,minecraft:red_glazed_terracotta[facing=north] +249:11,minecraft:red_glazed_terracotta[facing=east] +249:13,minecraft:red_glazed_terracotta[facing=west] +249:14,minecraft:red_glazed_terracotta[facing=north] +249:15,minecraft:red_glazed_terracotta[facing=east] +250:0,minecraft:black_glazed_terracotta[facing=south] +250:1,minecraft:black_glazed_terracotta[facing=west] +250:2,minecraft:black_glazed_terracotta[facing=north] +250:3,minecraft:black_glazed_terracotta[facing=east] +250:5,minecraft:black_glazed_terracotta[facing=west] +250:6,minecraft:black_glazed_terracotta[facing=north] +250:7,minecraft:black_glazed_terracotta[facing=east] +250:9,minecraft:black_glazed_terracotta[facing=west] +250:10,minecraft:black_glazed_terracotta[facing=north] +250:11,minecraft:black_glazed_terracotta[facing=east] +250:13,minecraft:black_glazed_terracotta[facing=west] +250:14,minecraft:black_glazed_terracotta[facing=north] +250:15,minecraft:black_glazed_terracotta[facing=east] +251:0,minecraft:white_concrete +251:1,minecraft:orange_concrete +251:2,minecraft:magenta_concrete +251:3,minecraft:light_blue_concrete +251:4,minecraft:yellow_concrete +251:5,minecraft:lime_concrete +251:6,minecraft:pink_concrete +251:7,minecraft:gray_concrete +251:8,minecraft:light_gray_concrete +251:9,minecraft:cyan_concrete +251:10,minecraft:purple_concrete +251:11,minecraft:blue_concrete +251:12,minecraft:brown_concrete +251:13,minecraft:green_concrete +251:14,minecraft:red_concrete +251:15,minecraft:black_concrete +252:0,minecraft:white_concrete_powder +252:1,minecraft:orange_concrete_powder +252:2,minecraft:magenta_concrete_powder +252:3,minecraft:light_blue_concrete_powder +252:4,minecraft:yellow_concrete_powder +252:5,minecraft:lime_concrete_powder +252:6,minecraft:pink_concrete_powder +252:7,minecraft:gray_concrete_powder +252:8,minecraft:light_gray_concrete_powder +252:9,minecraft:cyan_concrete_powder +252:10,minecraft:purple_concrete_powder +252:11,minecraft:blue_concrete_powder +252:12,minecraft:brown_concrete_powder +252:13,minecraft:green_concrete_powder +252:14,minecraft:red_concrete_powder +252:15,minecraft:black_concrete_powder +255:0,minecraft:structure_block[mode=save] +255:1,minecraft:structure_block[mode=load] +255:2,minecraft:structure_block[mode=corner] +255:3,minecraft:structure_block[mode=data]